diff --git a/gradle.properties b/gradle.properties index f6fdfb6ab2..eb323751ea 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ kotlin.jvm.target.validation.mode=error # Mod properties isUnstable=false -modVersion=1.108.0 +modVersion=1.108.1 # 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 e104168b65..a7117b5eac 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,9 @@ +# New features in CC: Tweaked 1.108.1 + +Several bug fixes: +* Prevent no-opped players breaking or placing command computers. +* Allow using `@LuaFunction`-annotated methods on classes defined in child classloaders. + # New features in CC: Tweaked 1.108.0 * Remove compression from terminal/monitor packets. Vanilla applies its own compression, so this ends up being less helpful than expected. 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 ddea8f6486..482cb7a40e 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,7 @@ -New features in CC: Tweaked 1.108.0 - -* Remove compression from terminal/monitor packets. Vanilla applies its own compression, so this ends up being less helpful than expected. -* `/computercraft` command now supports permission mods. -* Split some GUI textures into sprite sheets. -* Support the `%g` character class in string pattern matching. +New features in CC: Tweaked 1.108.1 Several bug fixes: -* Fix crash when playing some modded records via a disk drive. -* Fix race condition when computers attach or detach from a monitor. -* Fix the "max websocket message" config option not being read. -* `tostring` now correctly obeys `__name`. -* Fix several inconsistencies with pattern matching character classes. +* Prevent no-opped players breaking or placing command computers. +* Allow using `@LuaFunction`-annotated methods on classes defined in child classloaders. Type "help changelog" to see the full version history.