Skip to content

Commit 71013a8

Browse files
committed
chore(release): 1.8.0-beta
1 parent eef2417 commit 71013a8

4 files changed

Lines changed: 41 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,40 @@
1-
🗃️**Detailed Changelog: [1.7.0 --> 1.7.1](https://github.com/UltimatChamp/EnhancedTooltips/compare/1.7.0+fabric.1.21.5...1.7.1+fabric.1.21.5)**
1+
🗃️**Detailed Changelog: [1.7.1 --> 1.8.0-beta](https://github.com/UltimatChamp/EnhancedTooltips/compare/1.7.1+fabric.1.21.5...1.8.0-beta+fabric.1.21.10)**
2+
3+
---
4+
5+
- Marked as a **beta**, while most things should work and there should be no major issues, further testing is needed.
6+
- If you face any issues, make sure to report them on [**GitHub**](https://github.com/UltimatChamp/EnhancedTooltips/issues/new/choose)
7+
or the [**Discord server**](https://discord.gg/kfKjjhv3pn).
8+
- ...and a thanks to everyone who helped test _early builds_ on the _Discord server_!
9+
10+
---
11+
12+
### 💡Added
13+
14+
- Support for **Minecraft** `1.21.6`-`1.21.10`.
15+
- **Armor Icon Tooltip** _(Idea taken from_ [**Inspecio**](https://github.com/Queerbric/Inspecio)_)_
16+
- **Armor Trim Preview** [**[#42]**](https://github.com/UltimatChamp/EnhancedTooltips/issues/42)
17+
- **Banner Pattern Tooltip**
18+
- **Elytra Preview** [**[#41]**](https://github.com/UltimatChamp/EnhancedTooltips/issues/41)
19+
- **Potion Effect Tooltip**
220

321
---
422

523
### 🛠️Changes
624

7-
- Added options to adjust the Held Item Tooltip's _tilt animation_.
8-
- Added a `Minimal` mode for the Held Item Tooltip.
9-
- Some more polishing. [**[#36]**](https://github.com/UltimatChamp/EnhancedTooltips/issues/36)
25+
- **Scaling** now also works for **Held Item Tooltips**. [**[#37]**](https://github.com/UltimatChamp/EnhancedTooltips/issues/37)
26+
- Missing on `1.21.6`+ because it breaks a lot of stuff, including armor previews.
27+
- Improved **Item Badges**. [**[#36]**](https://github.com/UltimatChamp/EnhancedTooltips/issues/36)
28+
- There are now dependent on _Creative Mode_ **Item Groups** _(and `Mod Names` for the modded ones)_.
29+
- **Credits:** [**RoughlyEnoughItems**](https://github.com/shedaniel/RoughlyEnoughItems)
30+
- Improved `Item Name` Border Color Mode. _(Thanks to_ [**@EnotikSergo**](https://github.com/EnotikSergo)_)_ [**[#55]**](https://github.com/UltimatChamp/EnhancedTooltips/pull/55)
31+
- Fixed [**[#52]**](https://github.com/UltimatChamp/EnhancedTooltips/issues/52).
32+
- Make sure that _advanced tooltips_ are always on the bottom.
33+
34+
---
35+
36+
### 📘Translation Changes
37+
38+
- Added **Japanese** translation. [**[#43]**](https://github.com/UltimatChamp/EnhancedTooltips/pull/43)
39+
- Updated **Turkish** translation. [**[#38]**](https://github.com/UltimatChamp/EnhancedTooltips/pull/38)
40+
- Updated **Malay** & **Malay (Jawi)** translations. [**[#39]**](https://github.com/UltimatChamp/EnhancedTooltips/pull/39)

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ mod_name=EnhancedTooltips
88
mod_license=MIT
99
mod_authors=UltimatChamp, yanggx98
1010
mod_description=A mod that overhauls tooltips, and adds some extra information.
11-
mod_version=1.7.1
11+
mod_version=1.8.0-beta
1212
maven_group=dev.ultimatchamp
1313

1414
# Providers

src/main/java/dev/ultimatchamp/enhancedtooltips/loaders/EnhancedTooltipsNeo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ private void onClientSetup(FMLClientSetupEvent event) {
2828
}
2929
3030
private void collectTabsOnJoin(PlayerEvent.PlayerLoggedInEvent event) {
31-
if (event.getEntity().getEntityWorld() != null && MinecraftClient.getInstance().world != null)
31+
if (MinecraftClient.getInstance().world != null)
3232
ItemGroupsUtils.tabs.putAll(CreativeModeTabCollector.collectTabs(MinecraftClient.getInstance().world));
3333
}
3434
}

src/main/resources/assets/enhancedtooltips/lang/ja_jp.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@
4343
"enhancedtooltips.config.mapTooltip.desc": "ツールチップに記入された地図のプレビューを表示します。",
4444
"enhancedtooltips.config.paintingTooltip": "絵画のツールチップ",
4545
"enhancedtooltips.config.paintingTooltip.desc": "ツールチップに絵画のプレビューを表示します。",
46+
"enhancedtooltips.config.bannerPatternTooltip": "Banner Pattern Tooltip",
47+
"enhancedtooltips.config.bannerPatternTooltip.desc": "Shows a preview of the banner pattern in its tooltip.",
48+
"enhancedtooltips.config.armorIconTooltip": "Armor Icon Tooltip",
49+
"enhancedtooltips.config.armorIconTooltip.desc": "Shows the armor attribute in the form of icons.",
4650
"enhancedtooltips.config.durabilityTooltip": "耐久値のツールチップ",
4751
"enhancedtooltips.config.durabilityTooltip.desc": "ツールチップにアイテム耐久度を表示します。",
4852
"enhancedtooltips.config.durabilityTooltip.value": "",

0 commit comments

Comments
 (0)