diff --git a/gradle.properties b/gradle.properties index 464050e95..ca0cde295 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,8 +9,9 @@ kotlin.stdlib.default.dependency=false kotlin.jvm.target.validation.mode=error # Mod properties +modVersion=1.120.0 + isUnstable=false -modVersion=1.119.0 # Minecraft properties: We want to configure this here so we can read it in settings.gradle mcVersion=1.20.1 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 ade433cee..b5942ca00 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,10 @@ +# New features in CC: Tweaked 1.120.0 + +* Support spawning new parallel functions in `parallel.watiForAll`. + +One bug fix: +* Make HTTP IP filtering stricter. + # New features in CC: Tweaked 1.119.0 * Add `commands.getDimension()`. 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 2250571b3..dcb4e7baf 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,15 +1,8 @@ -New features in CC: Tweaked 1.119.0 +New features in CC: Tweaked 1.120.0 -* Add `commands.getDimension()`. -* Add `cc.base64` module. -* Update Cobalt to 0.9.9, bringing in several Lua 5.5 changes: - * Floats are now printed with enough digits to round trip correctly. - * Add `table.create`. - * `utf8.offset` now returns the final position of the codepoint. +* Support spawning new parallel functions in `parallel.watiForAll`. -Several bug fixes: -* Fix handling of integer indexes in `LuaTable`. -* Correct `min` and `sec` defaults in `os.time`. (sircfenner) +One bug fix: * Make HTTP IP filtering stricter. Type "help changelog" to see the full version history. diff --git a/projects/forge/build.gradle.kts b/projects/forge/build.gradle.kts index a2a710d42..3314e475b 100644 --- a/projects/forge/build.gradle.kts +++ b/projects/forge/build.gradle.kts @@ -45,10 +45,12 @@ legacyForge { runs { configureEach { - ideName = "Forge - ${name.capitalise()}" + ideName = "${name.capitalise()} (Forge)" systemProperty("forge.logging.markers", "REGISTRIES") systemProperty("forge.logging.console.level", "debug") loadedMods.add(computercraft) + + ideFolderName = "Forge" } register("client") {