diff --git a/gradle.properties b/gradle.properties index a66a12f60..12558ffa9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ org.gradle.jvmargs=-Xmx3G # Mod properties -mod_version=1.100.4 +mod_version=1.100.5 # Minecraft properties (update mods.toml when changing) mc_version=1.18.2 diff --git a/src/main/resources/data/computercraft/lua/rom/help/changelog.md b/src/main/resources/data/computercraft/lua/rom/help/changelog.md index 7b9b7f649..1cc968164 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/changelog.md +++ b/src/main/resources/data/computercraft/lua/rom/help/changelog.md @@ -1,3 +1,12 @@ +# New features in CC: Tweaked 1.100.5 + +* Generic peripherals now use capabilities on the given side if one isn't provided on the internal side. +* Improve performance of monitor rendering. + +Several bug fixes: +* Various documentation fixes (bclindner, Hasaabitt) +* Speaker sounds are now correctly positioned on the centre of the speaker block. + # New features in CC: Tweaked 1.100.4 Several bug fixes: diff --git a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md index 190f08559..cf8a8280a 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md +++ b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md @@ -1,6 +1,10 @@ -New features in CC: Tweaked 1.100.4 +New features in CC: Tweaked 1.100.5 + +* Generic peripherals now use capabilities on the given side if one isn't provided on the internal side. +* Improve performance of monitor rendering. Several bug fixes: -* Fix the monitor watching blocking the main thread when chunks are slow to load. +* Various documentation fixes (bclindner, Hasaabitt) +* Speaker sounds are now correctly positioned on the centre of the speaker block. Type "help changelog" to see the full version history. diff --git a/src/main/resources/data/computercraft/lua/rom/programs/shell.lua b/src/main/resources/data/computercraft/lua/rom/programs/shell.lua index f24c0c4fc..f2649f47a 100644 --- a/src/main/resources/data/computercraft/lua/rom/programs/shell.lua +++ b/src/main/resources/data/computercraft/lua/rom/programs/shell.lua @@ -3,7 +3,7 @@ -- It allows you to @{run|start programs}, @{setCompletionFunction|add -- completion for a program}, and much more. -- --- @{shell} is not a "true" API. Instead, it is a standard program, which its +-- @{shell} is not a "true" API. Instead, it is a standard program, which injects its -- API into the programs that it launches. This allows for multiple shells to -- run at the same time, but means that the API is not available in the global -- environment, and so is unavailable to other @{os.loadAPI|APIs}.