Skip to content

Commit

Permalink
Bump CC:T to 1.109.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SquidDev committed Dec 16, 2023
1 parent 488f66e commit 95d3b64
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ kotlin.jvm.target.validation.mode=error

# Mod properties
isUnstable=true
modVersion=1.109.0
modVersion=1.109.1

# Minecraft properties: We want to configure this here so we can read it in settings.gradle
mcVersion=1.20.1
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# New features in CC: Tweaked 1.109.1

Several bug fixes:
* Fix `mouse_drag` event not firing for right and middle mouse buttons.
* Fix crash when syntax errors involve `goto` or `::`.
* Fix deadlock occuring when adding/removing observers.
* Allow placing seeds into compostor barrels with `turtle.place()`.

# New features in CC: Tweaked 1.109.0

* Update to Lua 5.2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
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.
New features in CC: Tweaked 1.109.1

Several bug fixes:
* Fix error when using position captures and backreferences in string patterns (e.g. `()(%1)`).
* Fix formatting non-real numbers with `%d`.
* Fix `mouse_drag` event not firing for right and middle mouse buttons.
* Fix crash when syntax errors involve `goto` or `::`.
* Fix deadlock occuring when adding/removing observers.
* Allow placing seeds into compostor barrels with `turtle.place()`.

Type "help changelog" to see the full version history.
6 changes: 3 additions & 3 deletions projects/web/ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ The code for this is split into three separate components:
## Static content
Rendering the static portion of the website is fortunately much simpler.

- Doc generation: This is mostly handled in various Gradle files. The Forge Gradle script uses [cct-javadoc] to convert
- Doc generation: This is mostly handled in various Gradle files. The `common` project uses [cct-javadoc] to convert
Javadoc on our peripherals and APIs to LDoc/[illuaminate] compatible documentation. This is then fed into illuaminate
which spits out HTML.

- `src/htmlTransform`: We do a small amount of post-processing on the HTML in order. This project does syntax
highlighting of non-Lua code blocks, and replaces special `<mc-recipe>` tags with a rendered view of a given
- `src/htmlTransform`: We do a small amount of post-processing on the HTML, which is performed by this tool. This includes
syntax highlighting of non-Lua code blocks, and replacing special `<mc-recipe>` tags with a rendered view of a given
Minecraft recipe.

[TeaVM]: https://github.com/konsoletyper/teavm "TeaVM - Compiler of Java bytecode to JavaScript"
Expand Down

0 comments on commit 95d3b64

Please sign in to comment.