Skip to content

Releases: Hendrix-Shen/Tweak-My-Client

[CI#217]Tweak My Client 3.0.217+7593efe

26 May 02:55
7593efe
Compare
Choose a tag to compare
Pre-release

Full Changelog: dev-216...dev-217

[CI#216]Tweak My Client 3.0.216+aef7247

25 May 04:06
aef7247
Compare
Choose a tag to compare
Pre-release

Full Changelog: dev-215...dev-216

[CI#215]Tweak My Client 3.0.215+227bc7b

24 May 14:26
227bc7b
Compare
Choose a tag to compare
Pre-release

Full Changelog: dev-213...dev-215

[CI#213]Tweak My Client 3.0.213+bd0a882

23 May 00:33
bd0a882
Compare
Choose a tag to compare
Pre-release

Commits

  • 24bdd7a: Completely refactored again (Hendrix-Shen)
  • 761a49f: New feature disableRenderEffectBox (Hendrix-Shen)
  • 17c62f7: New feature featureCustomBlockHitBoxOverlayFill (Hendrix-Shen)
  • b6ca53f: New feature featureCustomBlockHitBoxOverlayFill (Hendrix-Shen)
  • c60d5a5: Format code (Hendrix-Shen)
  • 42f33f6: New features & bug fixes. (Hendrix-Shen)
  • 2e48f4a: Now MagicI18n (Hendrix-Shen)
  • bd0a882: Better customBlockHitBoxOverlay (Hendrix-Shen)

[CI#212]Tweak My Client 3.0.212+42f33f6

21 May 03:19
42f33f6
Compare
Choose a tag to compare
Pre-release

Commits

  • 24bdd7a: Completely refactored again (Hendrix-Shen)
  • 761a49f: New feature disableRenderEffectBox (Hendrix-Shen)
  • 17c62f7: New feature featureCustomBlockHitBoxOverlayFill (Hendrix-Shen)
  • b6ca53f: New feature featureCustomBlockHitBoxOverlayFill (Hendrix-Shen)
  • c60d5a5: Format code (Hendrix-Shen)
  • 42f33f6: New features & bug fixes. (Hendrix-Shen)

[CI#211]Tweak My Client 3.0.211+17c62f7

11 May 22:49
17c62f7
Compare
Choose a tag to compare
Pre-release

Commits

  • 24bdd7a: Completely refactored again (Hendrix-Shen)
  • 761a49f: New feature disableRenderEffectBox (Hendrix-Shen)
  • 17c62f7: New feature featureCustomBlockHitBoxOverlayFill (Hendrix-Shen)

[CI#210]Tweak My Client 3.0.210+761a49f

07 May 15:34
761a49f
Compare
Choose a tag to compare
Pre-release

Commits

  • 24bdd7a: Completely refactored again (Hendrix-Shen)
  • 761a49f: New feature disableRenderEffectBox (Hendrix-Shen)

[CI#209]Tweak My Client 3.0.209+24bdd7a

06 May 16:20
24bdd7a
Compare
Choose a tag to compare
Pre-release

Commits

  • 24bdd7a: Completely refactored again (Hendrix-Shen)

[CI#203]Tweak My Client 2.0.203+23b1644

04 May 08:19
23b1644
Compare
Choose a tag to compare
Pre-release

Commits

  • 23b1644: Update GitHub Actions (Hendrix-Shen)

TweakMyClient 2.0 is out

02 Apr 08:10
de4112d
Compare
Choose a tag to compare

Change Logs

After a lot of work, TweakMyClient now supports Minecraft 1.14.4/1.15.2/1.16.5/1.18.2/1.19-Snapshot using the same jar file. Also, now that MagicLib is used to dynamically manage the configuration interface, you will not see options that are incompatible with your runtime environment.

Features

  • New feature disableRenderOverlayPowderSnow (MC 1.17+).
  • AutoReconnect compat OAuth Screen.

Fixes

  • Fix disableRenderOverlayPumpkin affect powder snow (MC 1.17+).

Patches

  • Feature disableSlowdown support powder snow (MC 1.17+).
  • Better disableSlowdown implementation for Slime block.

Technical

I have written compatibility components for the last build of each major version of Minecraft to allow the module to adapt to different Minecraft versions, it is possible that you may find some versions of the components redundant, examples of how to remove them are described below. (Note: this will break the compatibility of the corresponding Minecraft version and any such modifications will not be supported)

  • Open fabric.mod.json and modify and save the file according to the following example.
  • You can then safely remove META-INF/jars/tweakmyclient-compat-mc1_15-2.0.186+3b3e3b5-beta.jar from the jar package.
  // ...
  "jars": [
    {
      "file": "META-INF/jars/tweakmyclient-compat-mc1_14-2.0.186+3b3e3b5-beta.jar"
    },
-   {
-     "file": "META-INF/jars/tweakmyclient-compat-mc1_15-2.0.186+3b3e3b5-beta.jar"
-   },
    {
      "file": "META-INF/jars/tweakmyclient-compat-mc1_16-2.0.186+3b3e3b5-beta.jar"
    },
    {
      "file": "META-INF/jars/tweakmyclient-compat-mc1_17-2.0.186+3b3e3b5-beta.jar"
    },
    {
      "file": "META-INF/jars/tweakmyclient-compat-mc1_18-2.0.186+3b3e3b5-beta.jar"
    },
    {
      "file": "META-INF/jars/tweakmyclient-compat-mc1_19-2.0.186+3b3e3b5-beta.jar"
    }
  ]
  // ...