mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-05-30 05:04:10 +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:
parent
a913232e62
commit
a879efc3d0
@ -162,7 +162,9 @@ dependencies {
|
|||||||
// runtimeOnly fg.deobf("mezz.jei:jei-1.18.2:9.4.1.116")
|
// runtimeOnly fg.deobf("mezz.jei:jei-1.18.2:9.4.1.116")
|
||||||
|
|
||||||
shade 'org.squiddev:Cobalt:0.5.5'
|
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-api:5.7.0'
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.0'
|
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.0'
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
org.gradle.jvmargs=-Xmx3G
|
org.gradle.jvmargs=-Xmx3G
|
||||||
|
|
||||||
# Mod properties
|
# Mod properties
|
||||||
mod_version=1.100.6
|
mod_version=1.100.7
|
||||||
|
|
||||||
# Minecraft properties (update mods.toml when changing)
|
# Minecraft properties (update mods.toml when changing)
|
||||||
mc_version=1.19
|
mc_version=1.19
|
||||||
|
@ -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
|
# New features in CC: Tweaked 1.100.6
|
||||||
|
|
||||||
* Various documentation improvements (MCJack123, FayneAldan).
|
* Various documentation improvements (MCJack123, FayneAldan).
|
||||||
|
@ -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).
|
* Fix failing to launch outside of a dev environment.
|
||||||
* 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.
|
|
||||||
|
|
||||||
Type "help changelog" to see the full version history.
|
Type "help changelog" to see the full version history.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user