搜索历史
清空
暂无搜索历史
论坛热搜
1
【MC整合包发布】乌托邦探险之旅3.2
热
3
[1.6.4]上古老物 冒险者传说 by WhiteSword
新
5
[转载]洛心斗罗-福利|公会据点战|武魂||抽奖|最终版
2
[1.12.2]Jenny — 有趣的模拟女友模组|珍妮模组
热
4
幻虚斗罗V1.5[炫酷魂环][高级魂技][全模型贴图覆盖][超吸金]
6
[1.7.10] [HQM] [Mercury landing]水星迫降——在未知的世界中挣扎
登陆 注册 QQ登陆
快捷导航
查看: 28|回复: 0

[模组分享] Thaumcraft 4 Tweaks (TC4Tweaks)-MOD模组

[复制链接]

5257

主题

52

回帖

6514

积分

龙❁妻

Rank: 8Rank: 8

经验
6514 EP
金粒
1165 粒
绿宝石
20 块
爱心
0 点
发表于 2025-8-10 19:35:17 | 显示全部楼层 |阅读模式
Thaumcraft 4 Tweaks (TC4Tweaks)Github |相关wiki |源站链接支持: forgeThaumcraft 4 Tweaks (TC4Tweaks) 是 Thaumcraft 4 的一个附加组件,旨在修正界面不足、性能问题和一些小错误。请注意,该模组始终首先发布到 【curseforge】( modrinthn 是手动进行的,通常会很快跟随 CF 发布,但有时候我可能会懒惰遗忘,可能会推迟一下。如果你从 modrinth 下载了一个 jar 文件,不小心在崩溃时显示jar 不是由我签名的,请在 Discord 上通知我,这样我才能替换有问题的 jar。描述信息在那里也会更加更新。

使用该模组

该模组在服务器和客户端都是可选的,并且两端可以使用不同版本的该模组。

(未完全) 功能列表

滚动浏览符文列表

此附加的原始功能之一。它允许你使用鼠标滚轮在研究台中滚动符文列表。不需要再点击了!当你将鼠标悬停在任何研究笔记上时,该模组会告诉你滚动已启用。

滚动浏览研究页面

这将允许您使用鼠标滚轮在书中滚动各个页面(具有描述性文本,配方,奥术结构图等的页面)。不需要再点击了!

放大 Thaumonomicon GUI

修改 .minecraft/config/tc4tweaks.cfg 中的 browserScale 选项。2.0 适用于在正常 GUI 比例下 1920x1080 屏幕,而 1.0 与原始尺寸相同。如果你使用另一个 GUI 比例或分辨率,则可能需要使用不同的值。



修复焦点 NPE

如果你:装备了某个 TC4 附加的焦点 MyFocus;从游戏中移除了该附加;祝贺你!如果你拾取了这个法杖,你的游戏会崩溃。这个模组修复了这个问题。

性能提升

基本上,这将在打开奥术工作台时,部分缓解更大模组包中客户端的滞后。这还应该减轻一些玩家使用奥术工作台制作 64 件物品时造成的服务器滞后。

限制 GUI 更新

从 1.1.0 版本开始,你可以将 Arcane Workbench 制作结果的更新节流到每 X 个游戏 tick 一次。默认值为 4。如果效果不够好,可以将此值设置得更长。这个值可以在运行时更改,而无需重新启动客户端,方法是访问该模组的配置 GUI(Esc | Mod 选项 | 选择 TC4 Tweaks | 配置 | 通用)。

其他性能优化

TC4 中一些随机的性能低下代码变得更加高效。其中大部分只会影响客户端性能(FPS),但是其中一些确实会影响专用服务器。其中大多数针对奥术制作的滞后。从 1.2.0-beta12 版本开始,新增了一项新的补丁,旨在修复炼金熔炉的滞后。从 1.4.20 版本开始,将减少因充能节点检查它们是否仍然能看到继电器而导致的滞后。总的来说,建议在专用服务器上安装此模组。它将会起到一定作用。

更积极的优化

从 1.2.0-beta1 版本开始,增加了一个实验性的选择性功能,可以防止奥术工作台作为普通工作台来运作。这占了大 mod 包中大部分的滞后。正如你可能看到的,这是一个带有一些副作用的优化。你可以在游戏中尝试它,来看看它的表现。

https://cdn.modrinth.com/data/J0HWRWq5/images/1f6dd56c8a637261d38ef1068ec4fbba38c1ba78.png]

技术解释

此部分仅供开发者参考,如果你看不懂,请不要惊慌。提示:这个文本不经常更新。请参考源代码来了解实际发生了什么。

1. ScanManager#generateItemHash(Item, int) 不再创建大量字符串。哈希码将直接计算出来。如果检测到 GT6 的加载插件,这就会与 GT6 的修复冲突并且不起作用。2. ResearchCategories#getResearch(String) 现在将使用 HashMap,而不是遍历每个注册的研究。该 HashMap 在服务器启动时将重新计算。如果服务器尚未完成启动,则会禁用 HashMap 查找。3. 在客户端上,将一个调用钩子注入 TileMagicWorkbench#setInventorySlotContents(IInventory)。它会节流更新为每 200ms 一次。如果有更新被丢弃,将设置一个标志。然后在 X 个 tick(配置值)的情况下,尝试每次更新。4. FXSonic 的模型改为静态,并且仅在资源包重新加载时重新加载。5. 在 ThaumcraftCraftingManager 中调用 findMatchingArcaneRecipe 和 findMatchingArcaneRecipeAspects 添加了一个简单的 LRU 缓存,具有可配置的大小(默认为 16)。当缓存已满时,旧条目将被逐出。6. 在 TC4 的映射线程开头,注入了一个 Thread.currentThread().setPriority(1)。如果缓存某种方式被命中,那么优先级将尝试恢复到正常以减轻锁冲突。7. GuiResearchRecipeVisitor 使用同步方法和 ConcurrentMap 同时进行。现在删除了同步方法。8. 在 ThaumcraftCraftingManager 中,getObjectTags 得到了改进。详情请参见代码。9. 在 GuiResearchBrowser 中的大量更改。请参考 net.glease.tc4tweak.asm.GuiResearchBrowserVisitor 以获取详细信息。10. 大多数 TESR 被补丁修正,只有在区块完全加载之后才会渲染。

截图:

https://i.sodamc.com/modrinth/X1KrQeD6RG.jpg?x-oss-process=style/forge2]https://i.sodamc.com/modrinth/aO1T1ZwoTD.jpg?x-oss-process=style/forge2]

来自Modrinth所有游戏版本1.7.10所有类型forge1.5.26Thaumcraft4Tweaks-1.5.26.jar下载1.5.26#ReleaseThaumcraft4Tweaks-1.5.26-dev.jar下载1.5.26#ReleaseThaumcraft4Tweaks-1.5.26-sources.jar下载1.5.26#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.261. fix earth shock deleting items ([@957c71be4749d70 by Glease](https://github.com/Glease/TC4Tweaks/commit/957c71be4749d709531c34e59c9feecbc93760fb))## 1.5.26-beta.21. fix typo in experimental decant fix ([@8f47b8237c520a2 by Glease](https://github.com/Glease/TC4Tweaks/commit/8f47b8237c520a2d19595e2560c1b8538865b287))## 1.5.26-beta.11. add experimental decant fix ([@30a96205b6bd203 by Glease](https://github.com/Glease/TC4Tweaks/commit/30a96205b6bd203fa6767dfa203e9d8e64c4b463))展开版本: 1.5.26支持游戏: 1.7.10类型:ForgeRelease下载次数: 25,7701.5.25Thaumcraft4Tweaks-1.5.25.jar下载1.5.25#ReleaseThaumcraft4Tweaks-1.5.25-dev.jar下载1.5.25#ReleaseThaumcraft4Tweaks-1.5.25-sources.jar下载1.5.25#Release# Change logChange log generated from git history.## 1.5.251. save maze data only if it changed ([@185e9bc4393c78c by Glease](https://github.com/Glease/TC4Tweaks/commit/185e9bc4393c78cf4367753a3d3b3c2ee7eecf2c))1. fix hodgepodge compat ([@8c3485acb661046 by Glease](https://github.com/Glease/TC4Tweaks/commit/8c3485acb6610467b08516837225c8c1d0bf62a2))展开版本: 1.5.25支持游戏: 1.7.10类型:ForgeRelease下载次数: 811.5.24Thaumcraft4Tweaks-1.5.24.jar下载1.5.24#ReleaseThaumcraft4Tweaks-1.5.24-dev.jar下载1.5.24#ReleaseThaumcraft4Tweaks-1.5.24-sources.jar下载1.5.24#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.241. fix aspect list null ([@fde79d17e1556d6 by Glease](https://github.com/Glease/TC4Tweaks/commit/fde79d17e1556d678432f948762c1a7fec7c421b))1. fix typo preventing gadomancy compat from working ([@8d933e69b302e72 by Glease](https://github.com/Glease/TC4Tweaks/commit/8d933e69b302e7292370edffcbba3878fe166739))1. fix coretweaks warning in golem ([@7b5a5bed43e9d5a by Glease](https://github.com/Glease/TC4Tweaks/commit/7b5a5bed43e9d5ae612f87b4b77e37914f27f996))展开版本: 1.5.24支持游戏: 1.7.10类型:ForgeRelease下载次数: 38,1111.5.23Thaumcraft4Tweaks-1.5.23.jar下载1.5.23#ReleaseThaumcraft4Tweaks-1.5.23-dev.jar下载1.5.23#ReleaseThaumcraft4Tweaks-1.5.23-sources.jar下载1.5.23#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.231. fix occasional vis relay beam render glitch ([@4ee23743d2c3538 by Glease](https://github.com/Glease/TC4Tweaks/commit/4ee23743d2c35386258a04919bb4b833791cc1fb))## 1.5.23-beta.11. lag fixes inspired by GTNewHorizons/Hodgepodge#359 ([@c700d15b635b6e9 by Glease](https://github.com/Glease/TC4Tweaks/commit/c700d15b635b6e92fd171d7fe8fb0ffcacd0af2d))1. code clean up ([@4e256a5b1623a7c by Glease](https://github.com/Glease/TC4Tweaks/commit/4e256a5b1623a7c699a03cbdf17b09e938add726))展开版本: 1.5.23支持游戏: 1.7.10类型:ForgeRelease下载次数: 1711.5.23-beta.1Thaumcraft4Tweaks-1.5.23-beta.1.jar下载1.5.23-beta.1#BetaThaumcraft4Tweaks-1.5.23-beta.1-dev.jar下载1.5.23-beta.1#BetaThaumcraft4Tweaks-1.5.23-beta.1-sources.jar下载1.5.23-beta.1#Beta展开版本: 1.5.23-beta.1支持游戏: 1.7.10类型:ForgeBeta下载次数: 4241.5.22Thaumcraft4Tweaks-1.5.22.jar下载1.5.22#ReleaseThaumcraft4Tweaks-1.5.22-dev.jar下载1.5.22#ReleaseThaumcraft4Tweaks-1.5.22-sources.jar下载1.5.22#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.221. increase biome update notification to everyone in render distance ([@e752bba4d09f59d by Glease](https://github.com/Glease/TC4Tweaks/commit/e752bba4d09f59d38c1f04fe7cc3ab2dc267254c))展开版本: 1.5.22支持游戏: 1.7.10类型:ForgeRelease下载次数: 6,8431.5.21Thaumcraft4Tweaks-1.5.21.jar下载1.5.21#ReleaseThaumcraft4Tweaks-1.5.21-dev.jar下载1.5.21#ReleaseThaumcraft4Tweaks-1.5.21-sources.jar下载1.5.21#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.211. fix more hash collision ([@db2c575f6903f82 by Glease](https://github.com/Glease/TC4Tweaks/commit/db2c575f6903f8224fc2b5c5f3a531f3632243e0))展开版本: 1.5.21支持游戏: 1.7.10类型:ForgeRelease下载次数: 1251.5.20Thaumcraft4Tweaks-1.5.20.jar下载1.5.20#ReleaseThaumcraft4Tweaks-1.5.20-dev.jar下载1.5.20#ReleaseThaumcraft4Tweaks-1.5.20-sources.jar下载1.5.20#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.201. adv furnace tesr improvements and fixes ([@5ad8c3373aaf05f by Glease](https://github.com/Glease/TC4Tweaks/commit/5ad8c3373aaf05f850623947d0c657fa0026cb7d))展开版本: 1.5.20支持游戏: 1.7.10类型:ForgeRelease下载次数: 7131.5.19Thaumcraft4Tweaks-1.5.19.jar下载1.5.19#ReleaseThaumcraft4Tweaks-1.5.19-dev.jar下载1.5.19#ReleaseThaumcraft4Tweaks-1.5.19-sources.jar下载1.5.19#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.191. add option to tweak champion buff value ([@9a2d34a2880aef7 by Glease](https://github.com/Glease/TC4Tweaks/commit/9a2d34a2880aef7aebadf36c31540419fbc3f466))展开版本: 1.5.19支持游戏: 1.7.10类型:ForgeRelease下载次数: 1781.5.18Thaumcraft4Tweaks-1.5.18.jar下载1.5.18#ReleaseThaumcraft4Tweaks-1.5.18-dev.jar下载1.5.18#ReleaseThaumcraft4Tweaks-1.5.18-sources.jar下载1.5.18#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.181. add option to disable search box ([@019f8202e7ad262 by Glease](https://github.com/Glease/TC4Tweaks/commit/019f8202e7ad26296ec4931ee91ecd51786c77af))展开版本: 1.5.18支持游戏: 1.7.10类型:ForgeRelease下载次数: 21,0931.5.18-beta.4Thaumcraft4Tweaks-1.5.18-beta.4.jar下载1.5.18-beta.4#BetaThaumcraft4Tweaks-1.5.18-beta.4-dev.jar下载1.5.18-beta.4#BetaThaumcraft4Tweaks-1.5.18-beta.4-sources.jar下载1.5.18-beta.4#Beta<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.18-beta.41. switch over russian translation ([@f3edaff66fab812 by Glease](https://github.com/Glease/TC4Tweaks/commit/f3edaff66fab8129acc7a13072551775d78ec328))展开版本: 1.5.18-beta.4支持游戏: 1.7.10类型:ForgeBeta下载次数: 1711.5.18-beta.3Thaumcraft4Tweaks-1.5.18-beta.3.jar下载1.5.18-beta.3#BetaThaumcraft4Tweaks-1.5.18-beta.3-dev.jar下载1.5.18-beta.3#BetaThaumcraft4Tweaks-1.5.18-beta.3-sources.jar下载1.5.18-beta.3#Beta<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.18-beta.31. add tooltip for the red question mark ([@be973c9161842b9 by Glease](https://github.com/Glease/TC4Tweaks/commit/be973c9161842b9c534e001ed4ca26660b852753))展开版本: 1.5.18-beta.3支持游戏: 1.7.10类型:ForgeBeta下载次数: 1251.5.18-beta.2Thaumcraft4Tweaks-1.5.18-beta.2.jar下载1.5.18-beta.2#BetaThaumcraft4Tweaks-1.5.18-beta.2-dev.jar下载1.5.18-beta.2#BetaThaumcraft4Tweaks-1.5.18-beta.2-sources.jar下载1.5.18-beta.2#Beta<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.18-beta.21. remove obfuscation since it is a bit confusing ([@3b1be491d437306 by Glease](https://github.com/Glease/TC4Tweaks/commit/3b1be491d4373068e548e623b8024c0b6ffe5184))展开版本: 1.5.18-beta.2支持游戏: 1.7.10类型:ForgeBeta下载次数: 2061.5.18-beta.1Thaumcraft4Tweaks-1.5.18-beta.1.jar下载1.5.18-beta.1#BetaThaumcraft4Tweaks-1.5.18-beta.1-dev.jar下载1.5.18-beta.1#BetaThaumcraft4Tweaks-1.5.18-beta.1-sources.jar下载1.5.18-beta.1#Beta# Change logChange log generated from git history.## 1.5.18-beta.11. add warp data to research dump ([@fd0ad12c00c8fd3 by Glease](https://github.com/Glease/TC4Tweaks/commit/fd0ad12c00c8fd32bc49bd2b94076026753ff602))1. add completion counter ([@04b9ffb82a31ef9 by Glease](https://github.com/Glease/TC4Tweaks/commit/04b9ffb82a31ef9dc7ac61d667b7f3964d7942f0))1. fix search module might use outdated mouse event buffer ([@79b07efeabf3534 by Glease](https://github.com/Glease/TC4Tweaks/commit/79b07efeabf3534a01eaa4ea0acefa96bba224d7))展开版本: 1.5.18-beta.1支持游戏: 1.7.10类型:ForgeBeta下载次数: 1541.5.17Thaumcraft4Tweaks-1.5.17.jar下载1.5.17#ReleaseThaumcraft4Tweaks-1.5.17-dev.jar下载1.5.17#ReleaseThaumcraft4Tweaks-1.5.17-sources.jar下载1.5.17#Release# Change logChange log generated from git history.## 1.5.171. add back functions removed by accident ([@53d04a815165c30 by Glease](https://github.com/Glease/TC4Tweaks/commit/53d04a815165c3060b8bee0454a164f12e6f6420))展开版本: 1.5.17支持游戏: 1.7.10类型:ForgeRelease下载次数: 3,7111.5.16Thaumcraft4Tweaks-1.5.16.jar下载1.5.16#ReleaseThaumcraft4Tweaks-1.5.16-dev.jar下载1.5.16#ReleaseThaumcraft4Tweaks-1.5.16-sources.jar下载1.5.16#Release# Change logChange log generated from git history.## 1.5.161. release ([@7074d369d743ecb by Glease](https://github.com/Glease/TC4Tweaks/commit/7074d369d743ecbdc8855a38e8e6168446d1b123))1. overhaul Callhook annotation to add more context ([@f5770a4ab5b5fb7 by Glease](https://github.com/Glease/TC4Tweaks/commit/f5770a4ab5b5fb7b5a21c8bf4024b17ce950d84e))展开版本: 1.5.16支持游戏: 1.7.10类型:ForgeRelease下载次数: 1551.5.15Thaumcraft4Tweaks-1.5.15.jar下载1.5.15#ReleaseThaumcraft4Tweaks-1.5.15-dev.jar下载1.5.15#ReleaseThaumcraft4Tweaks-1.5.15-sources.jar下载1.5.15#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.151. fix hungry chest incompatibility with certain logistics tools ([@f70b9190cce742a by Glease](https://github.com/Glease/TC4Tweaks/commit/f70b9190cce742a14cf04f5c2992149abdd2a33a))展开版本: 1.5.15支持游戏: 1.7.10类型:ForgeRelease下载次数: 5,4951.5.14Thaumcraft4Tweaks-1.5.14.jar下载1.5.14#ReleaseThaumcraft4Tweaks-1.5.14-dev.jar下载1.5.14#ReleaseThaumcraft4Tweaks-1.5.14-sources.jar下载1.5.14#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.141. fix inferred browserScale progressively reduce on each window open ([@aa1cc7907fa3fb2 by Glease](https://github.com/Glease/TC4Tweaks/commit/aa1cc7907fa3fb2d89b287956759fb54fdc6dcf7))1. add button to clear bottom right notifications ([@a2f90d1878dd13d by Glease](https://github.com/Glease/TC4Tweaks/commit/a2f90d1878dd13dd722bac37bfe036199022c6f6))展开版本: 1.5.14支持游戏: 1.7.10类型:ForgeRelease下载次数: 4,0091.5.13Thaumcraft4Tweaks-1.5.13.jar下载1.5.13#ReleaseThaumcraft4Tweaks-1.5.13-dev.jar下载1.5.13#ReleaseThaumcraft4Tweaks-1.5.13-sources.jar下载1.5.13#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.131. fix networked config sync ([@89f7a09e5f584fd by Glease](https://github.com/Glease/TC4Tweaks/commit/89f7a09e5f584fd4144adb634c2dda7365a6681d))展开版本: 1.5.13支持游戏: 1.7.10类型:ForgeRelease下载次数: 2031.5.12Thaumcraft4Tweaks-1.5.12.jar下载1.5.12#ReleaseThaumcraft4Tweaks-1.5.12-dev.jar下载1.5.12#ReleaseThaumcraft4Tweaks-1.5.12-sources.jar下载1.5.12#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.121. fix crash on server side ([@7e7b26e7771ffa5 by Glease](https://github.com/Glease/TC4Tweaks/commit/7e7b26e7771ffa51e28187d5da70610011568093))展开版本: 1.5.12支持游戏: 1.7.10类型:ForgeRelease下载次数: 2,2541.5.11Thaumcraft4Tweaks-1.5.11.jar下载1.5.11#ReleaseThaumcraft4Tweaks-1.5.11-dev.jar下载1.5.11#ReleaseThaumcraft4Tweaks-1.5.11-sources.jar下载1.5.11#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.111. dispensers can now shoot primal arrow ([@c181ee7e22dd71e by Glease](https://github.com/Glease/TC4Tweaks/commit/c181ee7e22dd71e4d7700f7b508f7ee50d0182b6))1. code cleanup ([@ca31e4908b4dfc4 by Glease](https://github.com/Glease/TC4Tweaks/commit/ca31e4908b4dfc47a4aa2176d33c27756dbb151f))1. implement sorting ([@75b57b139aa6695 by Glease](https://github.com/Glease/TC4Tweaks/commit/75b57b139aa66953e91ab4c64f62766d9cf0d9d1))展开版本: 1.5.11支持游戏: 1.7.10类型:ForgeRelease下载次数: 1501.5.10Thaumcraft4Tweaks-1.5.10.jar下载1.5.10#ReleaseThaumcraft4Tweaks-1.5.10-dev.jar下载1.5.10#ReleaseThaumcraft4Tweaks-1.5.10-sources.jar下载1.5.10#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.101. make config file comments more readable ([@ceb409b1d13e903 by Glease](https://github.com/Glease/TC4Tweaks/commit/ceb409b1d13e9032531501420e33f4de3d3b2836))1. add some missing localization ([@56d39dd76b70bf1 by Glease](https://github.com/Glease/TC4Tweaks/commit/56d39dd76b70bf12b221bd487c1bd08ad08fccbd))1. add research tab user sorting ([@b973cb1a8feea23 by Glease](https://github.com/Glease/TC4Tweaks/commit/b973cb1a8feea23a5724d0561ffce72608f7d6d9))1. add research category dump ([@87db8c7d66a4604 by Glease](https://github.com/Glease/TC4Tweaks/commit/87db8c7d66a460476caef9578e561f553bc9d338))展开版本: 1.5.10支持游戏: 1.7.10类型:ForgeRelease下载次数: 1721.5.9Thaumcraft4Tweaks-1.5.9.jar下载1.5.9#ReleaseThaumcraft4Tweaks-1.5.9-dev.jar下载1.5.9#ReleaseThaumcraft4Tweaks-1.5.9-sources.jar下载1.5.9#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.91. Create russian localization (#35) ([@f112e819249a8df by StrangeMan1580](https://github.com/Glease/TC4Tweaks/commit/f112e819249a8df6aebd9ecc33406c835881e4b6))展开版本: 1.5.9支持游戏: 1.7.10类型:ForgeRelease下载次数: 1171.5.8Thaumcraft4Tweaks-1.5.8.jar下载1.5.8#ReleaseThaumcraft4Tweaks-1.5.8-dev.jar下载1.5.8#ReleaseThaumcraft4Tweaks-1.5.8-sources.jar下载1.5.8#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.81. adopt golem marker fix from hodgepodge ([@6a6a36b199799ca by Glease](https://github.com/Glease/TC4Tweaks/commit/6a6a36b199799ca1ceee044bb740c8f1fc8f13fa))展开版本: 1.5.8支持游戏: 1.7.10类型:ForgeRelease下载次数: 1121.5.7Thaumcraft4Tweaks-1.5.7.jar下载1.5.7#ReleaseThaumcraft4Tweaks-1.5.7-dev.jar下载1.5.7#ReleaseThaumcraft4Tweaks-1.5.7-sources.jar下载1.5.7#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.71. actually fix adding warp to fake player ([@ee4b116389c7307 by Glease](https://github.com/Glease/TC4Tweaks/commit/ee4b116389c73071c77e0dcbc306dd64c10fb08a))1. add configuration to infusion oredict mode ([@d542d118002c150 by Glease](https://github.com/Glease/TC4Tweaks/commit/d542d118002c1507193d9b77f4460a90a598cc16))1. make the all package private class ([@fbb7e39294c8373 by Glease](https://github.com/Glease/TC4Tweaks/commit/fbb7e39294c837353ea223bce797e4c3d1b88eeb))1. allow other oredict behavior for tc4 infusion recipes ([@05752b23ec69dd6 by Glease](https://github.com/Glease/TC4Tweaks/commit/05752b23ec69dd6ec900240ebb7afc103212813c))展开版本: 1.5.7支持游戏: 1.7.10类型:ForgeRelease下载次数: 3,2811.5.6Thaumcraft4Tweaks-1.5.6.jar下载1.5.6#ReleaseThaumcraft4Tweaks-1.5.6-dev.jar下载1.5.6#ReleaseThaumcraft4Tweaks-1.5.6-sources.jar下载1.5.6#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.61. fix aspect combine crash in obf env ([@9dbab09a2c3afd2 by Glease](https://github.com/Glease/TC4Tweaks/commit/9dbab09a2c3afd2e8a983a4e1a60e153f8e860b4))展开版本: 1.5.6支持游戏: 1.7.10类型:ForgeRelease下载次数: 1201.5.5Thaumcraft4Tweaks-1.5.5.jar下载1.5.5#ReleaseThaumcraft4Tweaks-1.5.5-dev.jar下载1.5.5#ReleaseThaumcraft4Tweaks-1.5.5-sources.jar下载1.5.5#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.51. more random vis stone and enchanted book from lootbags ([@b499c2acf5a122b by Glease](https://github.com/Glease/TC4Tweaks/commit/b499c2acf5a122b4dbfb63d8f4c6d228f379efa4))展开版本: 1.5.5支持游戏: 1.7.10类型:ForgeRelease下载次数: 1161.5.4Thaumcraft4Tweaks-1.5.4.jar下载1.5.4#ReleaseThaumcraft4Tweaks-1.5.4-dev.jar下载1.5.4#ReleaseThaumcraft4Tweaks-1.5.4-sources.jar下载1.5.4#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.41. bump version ([@78a102206b6e6a7 by Glease](https://github.com/Glease/TC4Tweaks/commit/78a102206b6e6a7b6ca3406d0c7751f8dd2e4674))1. add patches to fix secondary research complete ([@a112448c35c0954 by Glease](https://github.com/Glease/TC4Tweaks/commit/a112448c35c0954ad64ef9fa747ec63a41a40e02))1. add patches to fix aspect combine ([@6aaf7068519a96c by Glease](https://github.com/Glease/TC4Tweaks/commit/6aaf7068519a96c451423fb66ea07ce9834edc96))展开版本: 1.5.4支持游戏: 1.7.10类型:ForgeRelease下载次数: 1161.5.3Thaumcraft4Tweaks-1.5.3.jar下载1.5.3#ReleaseThaumcraft4Tweaks-1.5.3-dev.jar下载1.5.3#ReleaseThaumcraft4Tweaks-1.5.3-sources.jar下载1.5.3#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.31. bump version ([@b34f029b60517eb by Glease](https://github.com/Glease/TC4Tweaks/commit/b34f029b60517ebf71fa3cfa6e87050ab37fcf85))1. Check item type in bucket return logic ([@ab2dec8185395f2 by Raven Szewczyk](https://github.com/Glease/TC4Tweaks/commit/ab2dec8185395f22d16152a64ddca07b0be76217))展开版本: 1.5.3支持游戏: 1.7.10类型:ForgeRelease下载次数: 1,2611.5.2Thaumcraft4Tweaks-1.5.2.jar下载1.5.2#ReleaseThaumcraft4Tweaks-1.5.2-dev.jar下载1.5.2#ReleaseThaumcraft4Tweaks-1.5.2-sources.jar下载1.5.2#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.21. fix small jar fix not effective in obf env ([@0d7018b2b4020a4 by Glease](https://github.com/Glease/TC4Tweaks/commit/0d7018b2b4020a47ebed1b59e5799f94ff7c0d97))展开版本: 1.5.2支持游戏: 1.7.10类型:ForgeRelease下载次数: 1361.5.1Thaumcraft4Tweaks-1.5.1.jar下载1.5.1#ReleaseThaumcraft4Tweaks-1.5.1-dev.jar下载1.5.1#ReleaseThaumcraft4Tweaks-1.5.1-sources.jar下载1.5.1#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.11. proper sync for elemental shovel ([@d97a012ceb362c6 by Glease](https://github.com/Glease/TC4Tweaks/commit/d97a012ceb362c6468c4629897073ed5b005abf8))1. add some log ([@eb2f73826cb4af3 by Glease](https://github.com/Glease/TC4Tweaks/commit/eb2f73826cb4af388ae9a3788b4cbd29a6c07b73))1. proper sync for TileHole ([@ea15d3edf7a5edc by Glease](https://github.com/Glease/TC4Tweaks/commit/ea15d3edf7a5edc154f047e24e691c72ecc5a629))展开版本: 1.5.1支持游戏: 1.7.10类型:ForgeRelease下载次数: 1141.5.0Thaumcraft4Tweaks-1.5.0.jar下载1.5.0#ReleaseThaumcraft4Tweaks-1.5.0-dev.jar下载1.5.0#ReleaseThaumcraft4Tweaks-1.5.0-sources.jar下载1.5.0#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.5.01. network protocol change and smaller jars collision box ([@0bf202f48eb5240 by Glease](https://github.com/Glease/TC4Tweaks/commit/0bf202f48eb5240a4bf457a5a70ec9209e955988))1. improve cauldron bucket return logic ([@7cefab6d0d2663d by Glease](https://github.com/Glease/TC4Tweaks/commit/7cefab6d0d2663d35d23358dfe782caa8bd42f79))展开版本: 1.5.0支持游戏: 1.7.10类型:ForgeRelease下载次数: 1101.4.26Thaumcraft4Tweaks-1.4.26.jar下载1.4.26#ReleaseThaumcraft4Tweaks-1.4.26-dev.jar下载1.4.26#ReleaseThaumcraft4Tweaks-1.4.26-sources.jar下载1.4.26#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.4.261. add missing redraw and markDirty in tube and jars ([@4c52ef26ce09641 by Glease](https://github.com/Glease/TC4Tweaks/commit/4c52ef26ce0964115f21f41f007fcc215d4cb512))展开版本: 1.4.26支持游戏: 1.7.10类型:ForgeRelease下载次数: 9951.4.25Thaumcraft4Tweaks-1.4.25.jar下载1.4.25#ReleaseThaumcraft4Tweaks-1.4.25-dev.jar下载1.4.25#ReleaseThaumcraft4Tweaks-1.4.25-sources.jar下载1.4.25#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.4.251. fix missing a colon in hash calculation ([@69009a58c91a984 by Glease](https://github.com/Glease/TC4Tweaks/commit/69009a58c91a9848fe136a6f4783e1024815ff46))展开版本: 1.4.25支持游戏: 1.7.10类型:ForgeRelease下载次数: 1411.4.24Thaumcraft4Tweaks-1.4.24.jar下载1.4.24#ReleaseThaumcraft4Tweaks-1.4.24-dev.jar下载1.4.24#ReleaseThaumcraft4Tweaks-1.4.24-sources.jar下载1.4.24#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.4.241. improve generateItemHash performance by 1000x (literally) ([@66e6dff093e8e10 by Glease](https://github.com/Glease/TC4Tweaks/commit/66e6dff093e8e108cebb74c6c87e043240e2599e))展开版本: 1.4.24支持游戏: 1.7.10类型:ForgeRelease下载次数: 1451.4.23Thaumcraft4Tweaks-1.4.23.jar下载1.4.23#ReleaseThaumcraft4Tweaks-1.4.23-dev.jar下载1.4.23#ReleaseThaumcraft4Tweaks-1.4.23-sources.jar下载1.4.23#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.4.231. update buildscript and add forge exception to license ([@0f28acb3e078a99 by Glease](https://github.com/Glease/TC4Tweaks/commit/0f28acb3e078a99c4af4961cb36d9781ffe0b8aa))1. add research dump ([@798df7595b1db76 by Glease](https://github.com/Glease/TC4Tweaks/commit/798df7595b1db76fe07e29c9c5d91da4cd0f9e8f))展开版本: 1.4.23支持游戏: 1.7.10类型:ForgeRelease下载次数: 1,8141.4.22Thaumcraft4Tweaks-1.4.22.jar下载1.4.22#ReleaseThaumcraft4Tweaks-1.4.22-dev.jar下载1.4.22#ReleaseThaumcraft4Tweaks-1.4.22-sources.jar下载1.4.22#Release<!-- Generated file. DO NOT HAND EDIT!!! --># Change logChange log generated from git history.## 1.4.221. fix research browsing in obfuscated environment ([@70e215e23bc15a2 by Glease](https://github.com/Glease/TC4Tweaks/commit/70e215e23bc15a21ac5a95785180f99a78dade97))1. update readme ([@4e16965f0b6b0d2 by Glease](https://github.com/Glease/TC4Tweaks/commit/4e16965f0b6b0d2bfef3d2f964e27089cdabc1f6))## 1.4.211. scroll through research pages with mouse wheel ([@4cc43989b9e8d53 by Glease](https://github.com/Glease/TC4Tweaks/commit/4cc43989b9e8d531697c5ef77a11621e2683317b))## 1.4.201. optimize canNodeBeSeen ([@8447c085c001ddd by Glease](https://github.com/Glease/TC4Tweaks/commit/8447c085c001ddd7e0031f130daa5d67ff481a40))## 1.4.191. prevent adding warp to fake player and crash ([@fbb2fd8d57a16d0 by Glease](https://github.com/Glease/TC4Tweaks/commit/fbb2fd8d57a16d071e957d2053a709720b58cd00))1. fix hash generation ([@3dff3d97e1721cb by Glease](https://github.com/Glease/TC4Tweaks/commit/3dff3d97e1721cb0405f96a418d09d7a6a8b616b))## 1.4.171. prevent crash when infusion recipe instability is too high (#11) ([@d1eed9c3617e59e by Alexdoru](https://github.com/Glease/TC4Tweaks/commit/d1eed9c3617e59ee77cf7c05b8da9f1ab2b0041d))1. bump version ([@9294f0e9dd9b90d by Glease](https://github.com/Glease/TC4Tweaks/commit/9294f0e9dd9b90d731fce6f914905f10b8404422))## 1.4.141. Fix MT compat broken on reload ([@0053653746424fe by Glease](https://github.com/Glease/TC4Tweaks/commit/0053653746424fe06ef91b51344b7d6f65a00dd5))## 1.4.131. Fix callhook desc ([@ba11b23ab29bfad by Glease](https://github.com/Glease/TC4Tweaks/commit/ba11b23ab29bfadb5afa5e0875eb0dae1e05512a))1. Move version info out of buildscript ([@79160e9200855fa by Glease](https://github.com/Glease/TC4Tweaks/commit/79160e9200855fa178f9212ddb191396e4c463ba))1. log if recipe hash collision detected ([@b856c994e9a7182 by Glease](https://github.com/Glease/TC4Tweaks/commit/b856c994e9a7182c498b361bacca4b00e7ebc3c7))## 1.4.121. Revert crucible recipe hash collision resolution strategy ([@7cb9300281c2a17 by Glease](https://github.com/Glease/TC4Tweaks/commit/7cb9300281c2a17507b00cc9ba6bf781525cfd5a))## 1.4.111. Patch BlockFluxGas to prevent it from being drained ([@5ca9dc8a75f91eb by Glease](https://github.com/Glease/TC4Tweaks/commit/5ca9dc8a75f91eb8a76a0a78d7f903c3ab84f455))## 1.4.101. Patch AIItemPickup to ignore dead EntityItems ([@fac5c1c26798905 by Glease](https://github.com/Glease/TC4Tweaks/commit/fac5c1c2679890508c14ac064a76d6394cf612c5))1. Add patches to cache reflection access ([@c1d232fc4243764 by Glease](https://github.com/Glease/TC4Tweaks/commit/c1d232fc424376484738c8a7faaa178abbb196fd))1. Add guard against errors in getDisplayName ([@52bdb1f570bd7f8 by Glease](https://github.com/Glease/TC4Tweaks/commit/52bdb1f570bd7f8182cd68102e67d8c4362ed097))1. Add an NEI tool to dump all known item tags ([@839ba248c970aea by Glease](https://github.com/Glease/TC4Tweaks/commit/839ba248c970aeade617713ee1612d41e8e30cd8))1. Use an alternative setup java and enable cache in GitHub actions ([@9792b4412c472e4 by Glease](https://github.com/Glease/TC4Tweaks/commit/9792b4412c472e4985908890b6ad4ea9593bcca2))## 1.4.91. Call visitMaxs() when injecting handleMouseInput ([@0fb88556f66798b by ElNounch](https://github.com/Glease/TC4Tweaks/commit/0fb88556f66798b12ccc671f795403e1c5f0e7c9))## 1.4.81. Fix fingerprint ([@221ed7d7f97699c by Glease](https://github.com/Glease/TC4Tweaks/commit/221ed7d7f97699c7824344b7892d111604cb94ea))1. Add logging where needed ([@7d9dba1ae2aed43 by Glease](https://github.com/Glease/TC4Tweaks/commit/7d9dba1ae2aed430de058d37c71bcb3c4f656169))1. add optimization to crucible recipe lookup ([@62bf9688e8fb2eb by Glease](https://github.com/Glease/TC4Tweaks/commit/62bf9688e8fb2ebbe60c870791ac88d36072f991))1. actually enable CellLocVisitor and MazeHandlerVisitor ([@a747390311e5d17 by Glease](https://github.com/Glease/TC4Tweaks/commit/a747390311e5d170db4c4318bdd412892e2239db))## 1.4.71. add patch to improve maze saving ([@a99310c9154d078 by Glease](https://github.com/Glease/TC4Tweaks/commit/a99310c9154d07875614f2a50f113f7e3b042f71))## 1.4.61. add patch to improve CellLoc hash ([@f6aaada0fb25b53 by Glease](https://github.com/Glease/TC4Tweaks/commit/f6aaada0fb25b53050b26e16b1ec6807a4a5eb02))1. Update stale.yml ([@689402c0a87e3e1 by Glease](https://github.com/Glease/TC4Tweaks/commit/689402c0a87e3e1c14d9b5738a1e7a2d4fd6db7c))## 1.4.51. Add code lost during all that git shenanigan. Fix #20 ([@6b1212ef62450e9 by Glease](https://github.com/Glease/TC4Tweaks/commit/6b1212ef62450e95e5663541356f7d252f450d6e))## 1.4.41. Unbreak TransformerFactory. Reverted 47a4a97533b68924dca26d577d2fc303fd896d60 ([@8d8433e9e56a1fd by Glease](https://github.com/Glease/TC4Tweaks/commit/8d8433e9e56a1fd464fa6923a70a2757acaaa30b))## 1.4.31. fix broken TESR NPE fix ([@47a4a97533b6892 by Glease](https://github.com/Glease/TC4Tweaks/commit/47a4a97533b68924dca26d577d2fc303fd896d60))1. Merge remote-tracking branch \'origin/master\' ([@d444fa65b731087 by Glease](https://github.com/Glease/TC4Tweaks/commit/d444fa65b73108786cbc43c31332e7d5dda50090))1. Adapt buildscript to my current IDE setup ([@24e0f346a577ea8 by Glease](https://github.com/Glease/TC4Tweaks/commit/24e0f346a577ea83627b9d2052fc27643f05b30f))1. Update README.md ([@68d384d9a34ed12 by Glease](https://github.com/Glease/TC4Tweaks/commit/68d384d9a34ed1217cd41e6d40b505d144d9a057))1. Update issue templates ([@63bec382150102c by Glease](https://github.com/Glease/TC4Tweaks/commit/63bec382150102cf938d1941bd04cdc00645e145))## 1.4.21. add TESR NPE fix ([@6fb62921faddb87 by Glease](https://github.com/Glease/TC4Tweaks/commit/6fb62921faddb8710645131f8b586c4eeff770f3))## 1.4.11. Fix #19 ([@209137dd4a7abbc by Glease](https://github.com/Glease/TC4Tweaks/commit/209137dd4a7abbc1678625982848f6ceb18d476c))## 1.4.01. Add right side hint particle patch ([@e510260e3c120ac by Glease](https://github.com/Glease/TC4Tweaks/commit/e510260e3c120ac7f6d0fb7d7126f1939239c729))1. remove stream usage to improve performance ([@d6deca2ac1a9849 by Glease](https://github.com/Glease/TC4Tweaks/commit/d6deca2ac1a9849da3a0176d10e25dad14369351))## 1.3.51. Fix navigation button color ([@70f842913ce4065 by Glease](https://github.com/Glease/TC4Tweaks/commit/70f842913ce4065e6163823fd32e92fa77db521d))1. general code maintenance by IDE ([@72867cdf7eaec69 by Glease](https://github.com/Glease/TC4Tweaks/commit/72867cdf7eaec69fea70b40f70ad79a147f55579))## 1.3.41. add gadomancy compat ([@a4e5bbd1b263c2e by Glease](https://github.com/Glease/TC4Tweaks/commit/a4e5bbd1b263c2e9ba0b9d9ba3eabe72e5c0414b))1. Fix logging ([@551ea7a3d507341 by Glease](https://github.com/Glease/TC4Tweaks/commit/551ea7a3d5073415dc674a05b4a281ec04b71e73))1. make it more obvious as why action needs to be taken ([@ceddcb40155bb21 by Glease](https://github.com/Glease/TC4Tweaks/commit/ceddcb40155bb21a6e9fb7ffd3de0f79720881f8))## 1.3.31. Try to make the current tab cache more accurate ([@6aaed576eb8ca01 by Glease](https://github.com/Glease/TC4Tweaks/commit/6aaed576eb8ca01af95b1a76bc41f074985aa416))1. minor configuration change ([@d90deb870d0951d by Glease](https://github.com/Glease/TC4Tweaks/commit/d90deb870d0951d6a408a6429a506489f4f5e11b))1. Patch ethereal shard renderer to limit rendered size ([@7cdc8a00a7b7064 by Glease](https://github.com/Glease/TC4Tweaks/commit/7cdc8a00a7b7064935a7af62d20e3204abe1d532))## 1.3.21. Limit node in a jar render size ([@069c9971db3ea44 by Glease](https://github.com/Glease/TC4Tweaks/commit/069c9971db3ea4491c7a9c338a947fd79d705536))1. IDE assisted code cleanup ([@79c3693c7f6587d by Glease](https://github.com/Glease/TC4Tweaks/commit/79c3693c7f6587dbc02182c215c83a4f0e3a98c4))## 1.3.11. Allow localisation of configurations ([@0d7dd5b00f4293a by Glease](https://github.com/Glease/TC4Tweaks/commit/0d7dd5b00f4293a25144742eb15ec320f79695a8))1. Remove debug code ([@f4d08e530d65236 by Glease](https://github.com/Glease/TC4Tweaks/commit/f4d08e530d652363e48f6d4521fdf23dabc3486c))## 1.3.01. bump version ([@5c7704bceeb8659 by Glease](https://github.com/Glease/TC4Tweaks/commit/5c7704bceeb86593dde4532ab3b8c5c80fea078b))1. Reduce noise ([@055aff8e130bd9f by Glease](https://github.com/Glease/TC4Tweaks/commit/055aff8e130bd9f4dd58282984c2306f3aa26168))## 1.3.0-beta61. Auto resizing of the browser now consider search box width ([@b686400a48d3bc0 by Glease](https://github.com/Glease/TC4Tweaks/commit/b686400a48d3bc032cbce9d2fcb287cad9bf6ca4))## 1.3.0-beta51. Allow auto resizing of the browser depending on screen size ([@f50fbcb8a191b4d by Glease](https://github.com/Glease/TC4Tweaks/commit/f50fbcb8a191b4d384e6ce647ad67ee5f723ae37))1. configuration refactor ([@d55b3483a59fe00 by Glease](https://github.com/Glease/TC4Tweaks/commit/d55b3483a59fe00e21d89ca0aa81ceecca37534d))1. add option to not limit node rendered size ([@4b742196bde05f1 by Glease](https://github.com/Glease/TC4Tweaks/commit/4b742196bde05f1f34ac346bec539675981cd73f))## 1.3.0-beta41. add option to limit node rendered size ([@7b3b54a7ea5386d by Glease](https://github.com/Glease/TC4Tweaks/commit/7b3b54a7ea5386d913f6d083a765c9d35a6c0533))1. Slight improvement to GetObjectTags ([@614810098b31d52 by Glease](https://github.com/Glease/TC4Tweaks/commit/614810098b31d52b126db45d3ec5bc5d57f6d043))1. Crash the client to make sure they are aware of the situation ([@c49fd60534d88ec by Glease](https://github.com/Glease/TC4Tweaks/commit/c49fd60534d88ec9113101fdbcec2913f43f5c3a))## 1.3.0-beta31. Fix search result not clickable under some scale ([@205dee11fde3bed by Glease](https://github.com/Glease/TC4Tweaks/commit/205dee11fde3bedfe2627c3a8afaea3cac1ad6cb))## 1.3.0-beta21. Clear search result upon reopening book gui ([@e531aefe9417300 by Glease](https://github.com/Glease/TC4Tweaks/commit/e531aefe9417300fd236e6d8083d606b6bd01738))## 1.3.0-beta11. Update README ([@aa7e0225d2ef759 by Glease](https://github.com/Glease/TC4Tweaks/commit/aa7e0225d2ef75978ce9fc5f0fe053216a7b427e))1. Fix translation ([@eb415d87bd5d5fa by Glease](https://github.com/Glease/TC4Tweaks/commit/eb415d87bd5d5faa0b9a27fbecc32a5404eac1f5))1. Remove unused texture ([@dcb89345dd223e7 by Glease](https://github.com/Glease/TC4Tweaks/commit/dcb89345dd223e7bdf50354459d9f001e3187f8c))1. Fix translation of search box ([@368e9f124034c1a by Glease](https://github.com/Glease/TC4Tweaks/commit/368e9f124034c1af824169a952a3c84885933cd0))1. Add paging to account for too many tabs ([@15c77568357125f by Glease](https://github.com/Glease/TC4Tweaks/commit/15c77568357125fd9ee6fcbb0b2adeb1ac95e790))1. Integrate WG\'s book search due to resizing ([@2b48879443413cb by Glease](https://github.com/Glease/TC4Tweaks/commit/2b48879443413cb4e0789ae4369c8fb36710d666))1. Get rid of debug statements in code ([@52286d37ee9b618 by Glease](https://github.com/Glease/TC4Tweaks/commit/52286d37ee9b618f773b2de922e95c65948347bf))1. Fix book gui in deobfuscated environment ([@92efcb1273cbfd4 by Glease](https://github.com/Glease/TC4Tweaks/commit/92efcb1273cbfd4701a53017302fae7a686a3cbb))1. Fix scaling in obfuscated environment ([@ce33fb6bc595620 by Glease](https://github.com/Glease/TC4Tweaks/commit/ce33fb6bc595620d642762b14c82b77005d82ab2))1. Add option to scale thaumonomicon gui ([@de863f61d2c127a by Glease](https://github.com/Glease/TC4Tweaks/commit/de863f61d2c127a8179ae846e293358dcfe7f0f5))## 1.2.01. Add option to disable tooltip, fix #10 ([@b279808f3203180 by Glease](https://github.com/Glease/TC4Tweaks/commit/b279808f320318058130560d7b90ad9e9963e90e))1. 1.2.0 release ([@d66b0971c136826 by Glease](https://github.com/Glease/TC4Tweaks/commit/d66b0971c13682670cb6acf92470797f7128932d))## 1.2.0-rc51. Do not send configuration change before load complete ([@c0e1c93bd4829d8 by Glease](https://github.com/Glease/TC4Tweaks/commit/c0e1c93bd4829d8458ae42f2808ed02ce855957b))## 1.2.0-rc41. Fix server only set up ([@ad4c5d55fd223e7 by Glease](https://github.com/Glease/TC4Tweaks/commit/ad4c5d55fd223e75b7580fe46a3265a97e374be8))1. Add null guard against wrong MT script/mod ([@cc1b981a191e15d by Glease](https://github.com/Glease/TC4Tweaks/commit/cc1b981a191e15dccdf1c0ec24cba45240011100))## 1.2.0-rc31. Fix frame problem round 2 ([@84c724bd683374a by Glease](https://github.com/Glease/TC4Tweaks/commit/84c724bd683374a143ae4f0c1d3d48d18f078ed4))1. Fix stale comment message wording. ([@75166932e25b1d3 by Glease](https://github.com/Glease/TC4Tweaks/commit/75166932e25b1d3e499d01699139921c8495d157))## 1.2.0-rc21. Fix stupid frame problem ([@cda3fe0a54a152f by Glease](https://github.com/Glease/TC4Tweaks/commit/cda3fe0a54a152f3d8cbec0cfc8ec6086edc086a))## 1.2.0-rc11. First 1.2.0 release candidate ([@4b65b8e71fc4980 by Glease](https://github.com/Glease/TC4Tweaks/commit/4b65b8e71fc49801d0c12402ea64a9e128987623))## 1.2.0-beta141. Major refactor, no feature change ([@de5275b34b40797 by Glease](https://github.com/Glease/TC4Tweaks/commit/de5275b34b407974f84c61272ea704b4f92b91fe))## 1.2.0-beta131. Fix #8 ([@4a2277dcef59dba by Glease](https://github.com/Glease/TC4Tweaks/commit/4a2277dcef59dbae979a329fa6ac3886698435a7))1. Bump version ([@a5bab90c50a64f3 by Glease](https://github.com/Glease/TC4Tweaks/commit/a5bab90c50a64f39b4cff9d7c3372a73b9900a2d))1. Optimize getObjectTags by removing the slow lookup ([@df68ed26dd6e592 by Glease](https://github.com/Glease/TC4Tweaks/commit/df68ed26dd6e592c69509628a51c50784b1aad7d))1. Implement debugOutputDir ([@1a9f9560623e0b7 by Glease](https://github.com/Glease/TC4Tweaks/commit/1a9f9560623e0b7aaf211a91756b680f330c7ff4))1. Update stale.yml ([@a0be763a7a3c6ef by Glease](https://github.com/Glease/TC4Tweaks/commit/a0be763a7a3c6efa8ef293431a6b29adcc507874))1. Reduce stale threshold ([@a2c6def0251f85b by Glease](https://github.com/Glease/TC4Tweaks/commit/a2c6def0251f85bbba9ea42e9f4c0b8bf5b90bd3))## 1.2.0-beta111. Makes groupedObjectTags optional ([@b982107fefbb97c by Glease](https://github.com/Glease/TC4Tweaks/commit/b982107fefbb97ca7d7c52140d8754c35df2c93a))1. Create stale.yml ([@657cdadcbad442e by Glease](https://github.com/Glease/TC4Tweaks/commit/657cdadcbad442e476823406a8ed94eb7bc55413))1. Update bug_report.md ([@57256e52a32556d by Glease](https://github.com/Glease/TC4Tweaks/commit/57256e52a32556d03fc173e63ee92275e042a809))1. Update README.md ([@24dc417c6a68ddf by Glease](https://github.com/Glease/TC4Tweaks/commit/24dc417c6a68ddf9c4a48800a92fd184533e5b25))## 1.2.0-beta101. Fix minor bug in generateItemHash replacement ([@b9958e523832725 by Glease](https://github.com/Glease/TC4Tweaks/commit/b9958e5238327253432ac98e94f2a63f2404f11f))1. Fix FXSonic patch ([@71902763aa23029 by Glease](https://github.com/Glease/TC4Tweaks/commit/71902763aa230299fbec4769b72bf0ced6c62f21))## 1.2.0-beta91. Code clean up ([@3ab5461f0f6bd49 by Glease](https://github.com/Glease/TC4Tweaks/commit/3ab5461f0f6bd49f232a1388d924a1df3a84730e))1. Fix wrong generateItemHash implementation ([@f3332f79da1554e by Glease](https://github.com/Glease/TC4Tweaks/commit/f3332f79da1554ebf5011b5d5164ec929d4c43d5))## 1.2.0-beta81. Make use of that signature ([@b5185445bd72e77 by Glease](https://github.com/Glease/TC4Tweaks/commit/b5185445bd72e7742d0be89a3567c020c744f771))1. Use FMLLaunchHandler to prevent class loading issues ([@acb30d7bba9fc8c by Glease](https://github.com/Glease/TC4Tweaks/commit/acb30d7bba9fc8c5e07e645fabe144e4da000926))## 1.2.0-beta71. Fix MANIFEST.MF ([@4be46b9f50704f2 by Glease](https://github.com/Glease/TC4Tweaks/commit/4be46b9f50704f292fbcf5319ed55b73bc791059))1. Improve logging ([@d5be6c6f2d9cb44 by Glease](https://github.com/Glease/TC4Tweaks/commit/d5be6c6f2d9cb442caa9acdf52cd6252813e1107))## 1.2.0-beta61. Improve build automation ([@aabe51fb59d14e0 by Glease](https://github.com/Glease/TC4Tweaks/commit/aabe51fb59d14e074510bbf38c9b93129bd34ab6))1. Fix cache creation ([@fbb5063c31f470e by Glease](https://github.com/Glease/TC4Tweaks/commit/fbb5063c31f470e4207a18a5748ea6448d65156c))1. Improved missing focus patch ([@3051e130c5efd3b by Glease](https://github.com/Glease/TC4Tweaks/commit/3051e130c5efd3ba9c0c2ea04479411ada2db9fe))1. Reduce transformer priority to increase compatibility ([@b9717602c88ed94 by Glease](https://github.com/Glease/TC4Tweaks/commit/b9717602c88ed94b7d2d5d54e1b8ed81c3097cc1))1. Add configuration option for arcane crafting recipe cache size ([@4a9310f46697a14 by Glease](https://github.com/Glease/TC4Tweaks/commit/4a9310f46697a1425d1039b95aa14b8aa68e2642))## 1.2.0-beta51. Rise mapping thread priority again if someone tries to access it ([@7afc002c53136e9 by Glease](https://github.com/Glease/TC4Tweaks/commit/7afc002c53136e95e7f1075eb8539b90d5105794))1. Prevent wand with focus removed from the modpack to break save ([@934b1cd62f92d81 by Glease](https://github.com/Glease/TC4Tweaks/commit/934b1cd62f92d8156e5fdbfc43b94cb1b4ddd7fb))## 1.2.0-beta41. Fix NetworkedConfiguration and tooltip ([@757f40e2bd9c333 by Glease](https://github.com/Glease/TC4Tweaks/commit/757f40e2bd9c33303600d33b6a7f603585d811fd))## 1.2.0-beta31. Add tooltip to show if arcane workbench vanilla crafting is enabled ([@bbbbf08c0caeba8 by Glease](https://github.com/Glease/TC4Tweaks/commit/bbbbf08c0caeba866b08926fe86ffaa0a1e58eb9))1. Turn down the priority of mapping thread ([@98c9bd1bc0f797f by Glease](https://github.com/Glease/TC4Tweaks/commit/98c9bd1bc0f797fa6f4233bc4dba68b6103d2f45))1. Fix SSP rejected connection ([@054807851eda50f by Glease](https://github.com/Glease/TC4Tweaks/commit/054807851eda50ffb49faae278d869ddb45c26fd))1. Update issue templates ([@35927b47534ce8a by Glease](https://github.com/Glease/TC4Tweaks/commit/35927b47534ce8a06acf2ec0e10bedb5adaf7669))1. Add CI based on github workflow ([@96289cc29e650c7 by Glease](https://github.com/Glease/TC4Tweaks/commit/96289cc29e650c74fedef1e5dab83068493b25f3))## 1.2.0-beta21. Prevent duplicate postponed update ([@f91b3f7b2682246 by Glease](https://github.com/Glease/TC4Tweaks/commit/f91b3f7b2682246e81b5eca4c4603f9e98a796b0))1. Fix SSP runtime configuration change ([@bb66af19ce9c199 by Glease](https://github.com/Glease/TC4Tweaks/commit/bb66af19ce9c199765369e2fba868c722a1321ab))## 1.2.0-beta11. Experimental ArcaneWorkbench speedup ([@0d6200e81aef558 by Glease](https://github.com/Glease/TC4Tweaks/commit/0d6200e81aef5581ee0859e0c47871ab3adc0212))1. Fix configuration ([@96d55f9163a81d9 by Glease](https://github.com/Glease/TC4Tweaks/commit/96d55f9163a81d96a771f7cc1f63b0ef0c7a6975))1. Fix GT6 compat ([@b3bd5c575adcff2 by Glease](https://github.com/Glease/TC4Tweaks/commit/b3bd5c575adcff2ff67c522b2664579965ed58c0))1. Do not touch ScanManager to not break the fragile GT6 transformer ([@f7bf38a9a634ebb by Glease](https://github.com/Glease/TC4Tweaks/commit/f7bf38a9a634ebb9fbd7fbc30f5d7b83f5977454))1. Create README.md ([@dcc30de2d2d0dc1 by Glease](https://github.com/Glease/TC4Tweaks/commit/dcc30de2d2d0dc114414a6ebb272eef962935ad6))1. Create LICENSE ([@609f70be73f8320 by Glease](https://github.com/Glease/TC4Tweaks/commit/609f70be73f83203eeb70f2a0ecd15ea77f1da20))展开版本: 1.4.22支持游戏: 1.7.10类型:ForgeRelease下载次数: 132全部版本

markdown_parsed

文章类型:收录

layui.use([\'form\'], function(){
var form = layui.form;
});

游客,如果您要查看本帖隐藏内容请回复
Thaumcraft 4 Tweaks
楼主 2025-8-10 19:35:17 回复 收起回复
小僵尸论坛感谢有你~
回复 论坛版权

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册 手机动态码快速登录

本版积分规则



介绍

我的世界(Minecraft)小僵尸论坛
收录了来自各地的我的世界(MC)爱好者们的各种资源

须知: 切勿滥用举报,任何与举报相关的信息必须属实!

"Minecraft"以及"我的世界"为Mojang Synergies AB的商标 本站与Mojang以及微软公司没有从属关系

官方

新浪微博 腾讯微博 微信公众号 投稿规则 版权声明 捐助我们

官方QQ①群: 291907844 (点击加群)
官方QQ②群: 421312192
官方QQ③群: 528726532

我的世界(Minecraft)小僵尸论坛

新会员

QQ|Archiver|手机版|小黑屋|Minecraft(我的世界)小僵尸论坛 |网站地图

GMT+8, 2025-9-25 10:35 , Processed in 0.282843 second(s), 53 queries .

快速回复 返回顶部 返回列表