mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-12-26 01:50:29 +00:00
Bump CC:T to 1.109.0
This commit is contained in:
parent
76968f2f28
commit
b343c01216
@ -9,8 +9,8 @@ kotlin.stdlib.default.dependency=false
|
|||||||
kotlin.jvm.target.validation.mode=error
|
kotlin.jvm.target.validation.mode=error
|
||||||
|
|
||||||
# Mod properties
|
# Mod properties
|
||||||
isUnstable=false
|
isUnstable=true
|
||||||
modVersion=1.108.4
|
modVersion=1.109.0
|
||||||
|
|
||||||
# Minecraft properties: We want to configure this here so we can read it in settings.gradle
|
# Minecraft properties: We want to configure this here so we can read it in settings.gradle
|
||||||
mcVersion=1.20.1
|
mcVersion=1.20.1
|
||||||
|
@ -1,3 +1,17 @@
|
|||||||
|
# New features in CC: Tweaked 1.109.0
|
||||||
|
|
||||||
|
* Update to Lua 5.2
|
||||||
|
* `getfenv`/`setfenv` now only work on Lua functions.
|
||||||
|
* Add support for `goto`.
|
||||||
|
* Remove support for dumping and loading binary chunks.
|
||||||
|
* File handles, HTTP requests and websocket messages now use raw bytes rather than converting to UTF-8.
|
||||||
|
* Add `allow_repetitions` option to `textutils.serialiseJSON`.
|
||||||
|
* Track memory allocated by computers.
|
||||||
|
|
||||||
|
Several bug fixes:
|
||||||
|
* Fix error when using position captures and backreferences in string patterns (e.g. `()(%1)`).
|
||||||
|
* Fix formatting non-real numbers with `%d`.
|
||||||
|
|
||||||
# New features in CC: Tweaked 1.108.4
|
# New features in CC: Tweaked 1.108.4
|
||||||
|
|
||||||
* Rewrite `@LuaFunction` generation to use `MethodHandle`s instead of ASM.
|
* Rewrite `@LuaFunction` generation to use `MethodHandle`s instead of ASM.
|
||||||
|
@ -1,13 +1,15 @@
|
|||||||
New features in CC: Tweaked 1.108.4
|
New features in CC: Tweaked 1.109.0
|
||||||
|
|
||||||
* Rewrite `@LuaFunction` generation to use `MethodHandle`s instead of ASM.
|
* Update to Lua 5.2
|
||||||
* Refactor `ComputerThread` to provide a cleaner interface.
|
* `getfenv`/`setfenv` now only work on Lua functions.
|
||||||
* Remove `disable_lua51_features` config option.
|
* Add support for `goto`.
|
||||||
* Update several translations (Sammy).
|
* Remove support for dumping and loading binary chunks.
|
||||||
|
* File handles, HTTP requests and websocket messages now use raw bytes rather than converting to UTF-8.
|
||||||
|
* Add `allow_repetitions` option to `textutils.serialiseJSON`.
|
||||||
|
* Track memory allocated by computers.
|
||||||
|
|
||||||
Several bug fixes:
|
Several bug fixes:
|
||||||
* Fix monitor peripheral becoming "detached" after breaking and replacing a monitor.
|
* Fix error when using position captures and backreferences in string patterns (e.g. `()(%1)`).
|
||||||
* Fix signs being empty when placed.
|
* Fix formatting non-real numbers with `%d`.
|
||||||
* Fix several inconsistencies with mount error messages.
|
|
||||||
|
|
||||||
Type "help changelog" to see the full version history.
|
Type "help changelog" to see the full version history.
|
||||||
|
Loading…
Reference in New Issue
Block a user