1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-25 22:53:22 +00:00

Don't shade all of Netty in the CC:T jar

Fixes #1108. Let this be a lesson to all of us: don't update mods at
midnight after a 20h day while half-delirious.
This commit is contained in:
Jonathan Coates 2022-06-12 16:39:57 +01:00
parent a913232e62
commit a879efc3d0
No known key found for this signature in database
GPG Key ID: B9E431FF07C98D06
4 changed files with 10 additions and 16 deletions

View File

@ -162,7 +162,9 @@ accessTransformer file('src/testMod/resources/META-INF/accesstransformer.cfg')
// runtimeOnly fg.deobf("mezz.jei:jei-1.18.2:9.4.1.116")
shade 'org.squiddev:Cobalt:0.5.5'
shade 'io.netty:netty-codec-http:4.1.76.Final'
shade('io.netty:netty-codec-http:4.1.76.Final') {
exclude group: "*"
}
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.0'

View File

@ -1,7 +1,7 @@
org.gradle.jvmargs=-Xmx3G
# Mod properties
mod_version=1.100.6
mod_version=1.100.7
# Minecraft properties (update mods.toml when changing)
mc_version=1.19

View File

@ -1,3 +1,7 @@
# New features in CC: Tweaked 1.100.7
* Fix failing to launch outside of a dev environment.
# New features in CC: Tweaked 1.100.6
* Various documentation improvements (MCJack123, FayneAldan).

View File

@ -1,17 +1,5 @@
New features in CC: Tweaked 1.100.6
New features in CC: Tweaked 1.100.7
* Various documentation improvements (MCJack123, FayneAldan).
* Allow CC's blocks to be rotated when used in structure blocks (Seniorendi).
* Several performance improvements to computer execution.
* Add parse_empty_array option to textutils.unserialiseJSON (@ChickChicky).
* Add an API to allow other mods to provide extra item/block details (Lemmmy).
* All blocks with GUIs can now be "locked" (via a command or NBT editing tools) like vanilla inventories. Players can only interact with them with a specific named item.
Several bug fixes:
* Fix printouts being rendered with an offset in item frames (coolsa).
* Reduce position latency when playing audio with a noisy pocket computer.
* Fix total counts in /computercraft turn-on/shutdown commands.
* Fix "Run" command not working in the editor when run from a subdirectory (Wojbie).
* Pocket computers correctly preserve their on state.
* Fix failing to launch outside of a dev environment.
Type "help changelog" to see the full version history.