diff --git a/gradle.properties b/gradle.properties index ae7279e7d..905e5b3dc 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ kotlin.jvm.target.validation.mode=error # Mod properties isUnstable=false -modVersion=1.106.1 +modVersion=1.107.0 # Minecraft properties: We want to configure this here so we can read it in settings.gradle mcVersion=1.19.4 diff --git a/projects/core/src/main/resources/data/computercraft/lua/rom/help/changelog.md b/projects/core/src/main/resources/data/computercraft/lua/rom/help/changelog.md index 2579b93e1..b37910924 100644 --- a/projects/core/src/main/resources/data/computercraft/lua/rom/help/changelog.md +++ b/projects/core/src/main/resources/data/computercraft/lua/rom/help/changelog.md @@ -1,3 +1,16 @@ +# New features in CC: Tweaked 1.107.0 + +* Add `disabled_generic_methods` config option to disable generic methods. +* Add basic integration with EMI. +* Enchanted turtle tools now render with a glint. +* Update several translations (PatriikPlays, 1Turtle, Ale32bit). + +Several bug fixes: +* Fix client config file being generated on a dedicated server. +* Fix numbers ending in "f" or "d" being treated as avalid. +* Fix `string.pack`'s "z" specifier causing out-of-bounds errors. +* Fix several issues with `turtle.dig`'s custom actions (tilling, making paths). + # New features in CC: Tweaked 1.106.1 Several bug fixes: diff --git a/projects/core/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md b/projects/core/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md index f8f051a02..5d4ebbbf1 100644 --- a/projects/core/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md +++ b/projects/core/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md @@ -1,7 +1,14 @@ -New features in CC: Tweaked 1.106.1 +New features in CC: Tweaked 1.107.0 + +* Add `disabled_generic_methods` config option to disable generic methods. +* Add basic integration with EMI. +* Enchanted turtle tools now render with a glint. +* Update several translations (PatriikPlays, 1Turtle, Ale32bit). Several bug fixes: -* Block the CGNAT range (100.64.0.0/10) by default. -* Fix conflicts with other mods replacing reach distance. +* Fix client config file being generated on a dedicated server. +* Fix numbers ending in "f" or "d" being treated as avalid. +* Fix `string.pack`'s "z" specifier causing out-of-bounds errors. +* Fix several issues with `turtle.dig`'s custom actions (tilling, making paths). Type "help changelog" to see the full version history.