You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-6Lines changed: 14 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,31 +1,35 @@
1
1
# Apothic Tooltip Cleanup
2
2
3
-
A client-side NeoForge 1.21.1 mod that cleans up the affix and gem tooltips Apotheosis adds to weapons, armor, and raw gems. Compatible with Apotheosis, Apotheotic Additions, and Apothic Attributes out of the box. Everything is configurable, every feature can be turned off.
3
+
A NeoForge 1.21.1 mod that cleans up the affix and gem tooltips Apotheosis adds to weapons, armor, and raw gems. Compatible with Apotheosis, Apotheotic Additions, and Apothic Attributes out of the box. Everything is configurable, every feature can be turned off.
4
4
5
5
## features
6
6
7
7
- Truncate affix lists, hold Alt to expand. Configurable to show all, show top N (default 3), or hide all unless Alt is held.
8
8
- Compact gem tooltips on raw gems. Configurable modes: full, compact, ultra, hidden.
9
+
- Hide individual gem categories from "Fits In" lists, useful on packs that disable certain weapon types.
9
10
- Merge empty sockets on socketed items into one summary line. Mixed sockets are supported: filled gems still render, with the empty count shown below.
10
11
- Hide the bonus durability line.
11
12
- Hide the Apotheosis affix summary block (Cold/Fire/HP%/Spell Resistance lines).
12
13
- Hide the affix source line.
13
-
- Custom rarity color overrides for all five tiers (Common, Uncommon, Rare, Epic, Mythic) plus an Ancient fallback color used for unknown rarities such as Apotheotic Additions's Esoteric.
14
+
- Hide the `[⌛ MM:SS]` cooldown markers and `[Stacking]` tags on affix lines without touching the affix text. Hold Alt to reveal.
15
+
- Custom rarity color overrides for the five built-in Apotheosis 8.x tiers (Common, Uncommon, Rare, Epic, Mythic), plus an Ancient color used as fallback for unknown rarities such as Apotheotic Additions's Esoteric.
14
16
- Strip prefixes from affix names.
15
17
- Sort affix lines by rarity, alphabetical, type, or default.
16
18
- Hide individual affixes by translation key prefix.
17
19
- Hide potion-style affix descriptions.
18
20
19
21
## configuration
20
22
21
-
All toggles are in `config/apothic_tooltip_cleanup-client.toml`. The file regenerates from defaults if deleted.
23
+
Settings live in `config/apothic_tooltip_cleanup-client.toml`. The file regenerates from defaults if deleted.
22
24
23
25
## config reference
24
26
25
27
### affix display
26
28
27
29
`affix_display_mode` controls how affixes show on tooltips. Three options: `all` shows every affix, `top_n` shows the first N with Alt to expand the rest (default), `alt_only` hides every affix unless Alt is held.
28
30
31
+
The "Hold Alt for full details" prompt also appears when other handlers hide content. With `hide_durability_bonus` enabled, the prompt shows on durable items even when no affixes were truncated; pressing Alt reveals the durability line.
32
+
29
33
`affix_visible_count` is the N for `top_n` mode. Default 3.
30
34
31
35
`affix_sort_order` is one of `default`, `rarity`, `alphabetical`, `type`.
@@ -44,23 +48,27 @@ All toggles are in `config/apothic_tooltip_cleanup-client.toml`. The file regene
`hide_affix_extras` hides the `[⌛ MM:SS]` cooldown markers and `[Stacking]` modifier tags on affix lines. The affix text itself stays intact; only the bracketed annotations are stripped. Holding Alt while the item is hovered reveals the full line including the hidden markers.
52
+
47
53
### gem display
48
54
49
55
`gem_tooltip_mode` controls raw gem tooltips. `full` keeps Apotheosis's original layout. `compact` (default) strips headers and the Unique tag, keeps the bullets, and removes "level to existing" wording. `ultra` puts categories on one line and bonuses on one line. `hidden` removes all gem info.
50
56
57
+
`hidden_gem_categories` is a list of category names to hide from "Fits In" lists. Case-insensitive. Works in `full`, `compact`, and `ultra` modes; no effect when `gem_tooltip_mode` is `hidden` since that mode strips all gem info anyway. If every category is hidden, the "Fits In:" header is also dropped. Example: `["Bows", "Crossbows"]` on a pack that disables ranged weapons.
58
+
51
59
### sockets
52
60
53
61
`merge_empty_sockets` collapses empty sockets into one summary line. Filled gems still render normally; only the empty rows get merged. Default on.
54
62
55
-
`hide_apoth_marker` hides the `APOTH_SOCKET_MARKER` literal if Apotheosis leaks it through. Don't enable this unless you actually see it, since it can hide the socket UI on socketed items.
63
+
`hide_apoth_marker` hides the `APOTH_SOCKET_MARKER` literal if Apotheosis lets it leak through. Don't enable this unless you actually see it, since it can hide the socket UI on socketed items.
56
64
57
65
### rarity colors
58
66
59
-
`rarity_colors_enabled` toggles custom rarity colors. When off (default), vanilla Apotheosis colors are used. The six color values use hex format `0xRRGGBB`. In Apotheosis 8.x, Ancient is no longer a built-in rarity tier, but the Ancient color still applies to unknown rarities such as Apotheotic Additions's Esoteric via namespace fallback.
67
+
`rarity_colors_enabled` toggles custom rarity colors. When off (default), vanilla Apotheosis colors are used. The color values use hex format `0xRRGGBB`. Apotheosis 8.x has five built-in tiers (Common, Uncommon, Rare, Epic, Mythic); the Ancient color still applies as a fallback for unknown rarities such as Apotheotic Additions's Esoteric.
60
68
61
69
## compatibility
62
70
63
-
- Apotheosis (soft dependency, the mod does nothing without it)
71
+
- Apotheosis 8.x (soft dependency, the mod does nothing without it)
0 commit comments