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
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ A Forge 1.20.1 mod that cleans up the affix and gem tooltips Apotheosis adds to
10
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.
11
11
- Hide the bonus durability line.
12
12
- Hide the Apotheosis affix summary block (Cold/Fire/HP%/Spell Resistance lines).
13
-
-Hide the affix source line.
13
+
-Always hide the affix source line (not configurable).
14
14
- Hide the `[⌛ MM:SS]` cooldown markers and `[Stacking]` tags on affix lines without touching the affix text. Hold Alt to reveal.
15
15
- Custom rarity color overrides for all six tiers (Common, Uncommon, Rare, Epic, Mythic, Ancient). Esoteric (Apotheotic Additions) maps to Ancient via namespace fallback.
16
16
- Strip prefixes from affix names.
@@ -22,33 +22,35 @@ A Forge 1.20.1 mod that cleans up the affix and gem tooltips Apotheosis adds to
22
22
23
23
Settings live in `config/apothic_tooltip_cleanup-client.toml`. The file regenerates from defaults if deleted.
24
24
25
+
Most hide features use a three-mode toggle: `show` keeps the content fully visible, `alt` hides it by default and reveals it while Alt is held, and `delete` hides it permanently with no Alt reveal.
26
+
25
27
## config reference
26
28
27
29
### affix display
28
30
29
31
`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.
30
32
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.
33
+
The "Hold Alt for full details" prompt also appears when other handlers hide content. With `durability_bonus_mode` set to `alt` (the default), the prompt shows on durable items even when no affixes were truncated; pressing Alt reveals the durability line.
32
34
33
35
`affix_visible_count` is the N for `top_n` mode. Default 3.
34
36
35
37
`affix_sort_order` is one of `default`, `rarity`, `alphabetical`, `type`.
36
38
37
-
`clean_affix_prefixes` strips prefixes from affix names. Off by default.
39
+
`affix_prefixes_mode` controls the affix type prefixes (While held, On hit, On block, Passive). `show` (default) keeps them, `alt` hides them unless Alt is held, `delete` removes them permanently.
38
40
39
41
`hidden_affix_ids` is a list of translation key prefixes for affixes you want hidden entirely.
40
42
41
43
### affix tooltip lines
42
44
43
-
`hide_source_line` hides the affix source line.
45
+
The affix source line is always hidden. There is no config option for it.
44
46
45
-
`disable_summarization` hides the Apotheosis summary block (Cold/Fire/HP%/Spell Resistance).
47
+
`summarization_mode` controls the Apotheosis summary block (Cold/Fire/HP%/Spell Resistance). `show` keeps it, `alt` (default) hides it unless Alt is held, `delete` removes it permanently.
46
48
47
-
`hide_durability_bonus` hides the "ignores X% of durability damage" line.
49
+
`durability_bonus_mode` controls the "ignores X% of durability damage" line. `show` keeps it, `alt` (default) hides it unless Alt is held, `delete` removes it permanently.
`potion_descriptions_mode` controls potion-style affix descriptions. `show` (default) keeps them, `alt` hides them unless Alt is held, `delete` removes them permanently.
50
52
51
-
`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.
53
+
`affix_extras_mode` controls the `[⌛ MM:SS]` cooldown markers and `[Stacking]` tags on affix lines; the affix text itself is never touched, only the bracketed annotations. `show` keeps them, `alt` (default) hides them unless Alt is held, `delete` removes them permanently.
# The authors of the mod. This is a simple text string that is used for display purposes in the mod list.
57
57
mod_authors=Nightwielder23
58
58
# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list.
59
-
mod_description=Cleans up Apotheosis affix and gem tooltips. Configurable per feature. Client side, soft dependency on Apotheosis.
59
+
mod_description=Cleans up Apotheosis affix and gem tooltips. Hideable features each toggle show, alt, or delete. Client side, soft dependency on Apotheosis.
0 commit comments