Skip to content

Commit dc8760e

Browse files
committed
Merge branch 'master-1.9' into master-1.11
Conflicts: build.properties src/main/resources/assets/structuredcrafting/lang/en_US.lang
2 parents 885450b + 99d404a commit dc8760e

4 files changed

Lines changed: 26 additions & 2 deletions

File tree

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ mod_version=0.1.6
22
minecraft_version=1.11.2
33
forge_version=13.20.0.2201
44
mcp_mappings_version=snapshot_20161206
5-
cyclopscore_version=0.9.0-453
5+
cyclopscore_version=0.9.0-472
66
release_type=release
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
As always, don't forget to backup your world before updating!
2+
Requires CyclopsCore version 0.9.0 or higher.
3+
4+
Additions:
5+
* Added localization for configuration gui
6+
* Added config GUI restriction

src/main/java/org/cyclops/structuredcrafting/GeneralConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class GeneralConfig extends DummyConfig {
1818
* The current mod version, will be used to check if the player's config isn't out of date and
1919
* warn the player accordingly.
2020
*/
21-
@ConfigurableProperty(category = ConfigurableTypeCategory.CORE, comment = "Config version for " + Reference.MOD_NAME +".\nDO NOT EDIT MANUALLY!")
21+
@ConfigurableProperty(category = ConfigurableTypeCategory.CORE, comment = "Config version for " + Reference.MOD_NAME +".\nDO NOT EDIT MANUALLY!", showInGui = false)
2222
public static String version = Reference.MOD_VERSION;
2323

2424
/**

src/main/resources/assets/structuredcrafting/lang/en_US.lang

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,21 @@ itemGroup.structuredcrafting=Structured Crafting
33

44
# Blocks
55
tile.blocks.structuredcrafting.structured_crafter.name=Structured Crafter
6+
7+
# Configuration
8+
config.structuredcrafting=%s configuration
9+
10+
## Config categories
11+
config.structuredcrafting.block=Block settings
12+
config.structuredcrafting.block.tooltip=Block settings
13+
config.structuredcrafting.general=General settings
14+
config.structuredcrafting.general.tooltip=General settings
15+
config.structuredcrafting.core=Core settings
16+
config.structuredcrafting.core.tooltip=Core settings
17+
18+
## Core settings
19+
config.structuredcrafting.general.analytics=Send anonymous analytics
20+
config.structuredcrafting.general.crashOnInvalidRecipe=Crash on invalid Recipe
21+
config.structuredcrafting.general.debug=Develop mode
22+
config.structuredcrafting.general.version=Version
23+
config.structuredcrafting.general.versionChecker=Version check

0 commit comments

Comments
 (0)