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: docs/docs/02-changelog.md
+65-2Lines changed: 65 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,40 @@ import Video from '@site/src/components/Video';
3
3
4
4
# Changelog
5
5
6
+
## 21.10.2-beta (Minecraft 1.21.10)
7
+
8
+
- Added support for data components to `<ItemLink />`
9
+
10
+
## 21.10.1-beta (Minecraft 1.21.10)
11
+
12
+
- First update to 1.21.10
13
+
14
+
## 21.8.4 (Minecraft 1.21.8)
15
+
16
+
- Markdown parse errors now log the line and column where the error occurred.
17
+
18
+
## 21.8.3 (Minecraft 1.21.8)
19
+
20
+
- Fix fluid rendering in game scenes
21
+
22
+
## 21.8.2 (Minecraft 1.21.8)
23
+
24
+
- Make the stripped down version of GuideME the default to be published to CurseForge/Modrinth (Reduces mod size by 5MB)
25
+
- Strip removed Lucene components from service files to fix startup crashes since NeoForge become stricter about service files
26
+
27
+
## 21.8.1 (Minecraft 1.21.8)
28
+
29
+
- First port to Minecraft 1.21.8
30
+
- The `/guidemec export` command to export guide data for web use now works
31
+
- Fixed rendering of in-world annotations in game scenes that was slightly broken since 1.21.5
32
+
- Fixed several export related problems present since 1.21.5
33
+
- Fixed error on startup complaining about an incubating JDK feature (vector), and the subsequent crash
34
+
when that feature was actually enabled.
35
+
6
36
## 21.5.9-beta (Minecraft 1.21.5)
7
37
8
38
- Fix text in floating elements disappearing while scrolling.
39
+
- Fix layout of game scenes still including the vertical toolbar even if it was hidden.
9
40
10
41
## 21.5.8-beta (Minecraft 1.21.5)
11
42
@@ -14,18 +45,27 @@ import Video from '@site/src/components/Video';
14
45
This change allows the same structure to be added multiple times to a scene at different positions.
15
46
- Add a new `<RemoveBlock id="..." />` tag to game scenes to clear out tags of a given type. This is useful for clearing out support blocks
16
47
from structures after they have been imported into a scene. See the [game scene documentation](./30-authoring/game-scenes.md#remove-blocks) for details.
48
+
- Fix rendering of diamond overlay annotations in game scenes.
17
49
18
50
## 21.5.7-beta (Minecraft 1.21.5)
19
51
20
52
- Fix rendering of text in floated elements.
53
+
- Fix hover-status for widgets embedded in the document when the screen is scaled independently of the GUI (on odd GUI scales).
54
+
- Add `fallbackText` attribute to `<Recipe />`, `<RecipeFor />` and `<RecipesFor />` to allow the guide author to explicitly handle when recipes are missing due to datapacks removing them.
55
+
See [authoring pages](./30-authoring/index.md#recipes) for details.
56
+
- Add a new configuration option to always hide recipe errors that result from recipes being removed or hidden by datapacks and guide authors not explicitly handling those cases with the `fallbackText` attribute.
57
+
This is primarily intended to be used by modpacks.
58
+
- Adds the ability to color text both with a color specified in the page (`<Color color="#ff0000">text</Color>`), and by
59
+
adding guide-specific custom color constants, both in [data-driven guides](./20-data-driven-guides.md#custom-colors)
60
+
and for mods using an [extension point](./20-integration/symbolic-colors.md).
21
61
22
-
## 21.5.5-beta (Minecraft 1.21.5)
62
+
## 21.5.6-beta (Minecraft 1.21.5)
23
63
24
64
- Fix a crash when Minecraft uses an unusual language code with uppercase components (i.e. `en_US` instead of the default `en_us`).
25
65
- Added a `<PlayerName />` tag to address the player by their current name.
26
66
- Added a `<KeyBind id="..." />` tag to show what a keybind is currently bound to. See [authoring pages](./30-authoring/index.md#key-bindings) for details.
27
67
28
-
## 21.5.4-beta (Minecraft 1.21.5)
68
+
## 21.5.5-beta (Minecraft 1.21.5)
29
69
30
70
- Adds the ability to specify data components on `ItemImage` and `ItemIcon` using the same format used by the `/give` command.
31
71
For example: `<ItemImage id="minecraft:stone" components="enchantment_glint_override=true" />` shows a piece of stone with enchantment glint applied.
@@ -39,10 +79,33 @@ import Video from '@site/src/components/Video';
39
79
40
80
- Remove a misplaced black pixel in the border of recipe panels.
41
81
82
+
## 21.5.4-beta (Minecraft 1.21.5)
83
+
84
+
- Fix item images being shown on top of the navigation bar.
85
+
- Use same random-source as normal level rendering to avoid constantly changing block appearance in game scenes.
86
+
42
87
## 21.1.7 (Minecraft 1.21.1)
43
88
44
89
- Guard against crashes when mods return null results from their custom recipes.
45
90
91
+
## 21.5.3-beta (Minecraft 1.21.5)
92
+
93
+
- Java API: Fix Off-Screen-Renderer for Website export.
94
+
- Java API: Fix various website export issues.
95
+
- Java API: Introduce new extension points for the site export,
96
+
and make it usable via new system properties.
97
+
98
+
## 21.5.2-beta (Minecraft 1.21.5)
99
+
100
+
- Java API: Add back the semantics of `RecipeTypeMappings.add`, which supports mapping RecipeHolders to a nullable LytBlock for custom recipes.
101
+
- Java API: The registration method for factories that return a `Stream<LytBlock>` has been renamed to `addMulti`.
102
+
- Java API: Added convenience constructors to `LytSlot` for aiding with new idioms used by Vanilla, such as `Optional<Ingredient>` being used instead of empty ingredients (which no longer exist).
103
+
- Java API: Made the row/column factory methods for `LytSlotGrid` accept null-entries in the ingredient lists to better interface with Ingredients no longer being able to be empty.
Copy file name to clipboardExpand all lines: docs/docs/30-authoring/index.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -126,10 +126,15 @@ Example for horizontally centering an image on the page:
126
126
127
127
To automatically show the translated item name, including an appropriate tooltip, and have the item name link to the
128
128
primary guidebook page for that item, use the `<ItemLink id="item_id" />` tag. The id can omit the guides default
129
-
namespace.
129
+
namespace.
130
130
131
131
[Pages need to be set as the primary target for certain item ids manually](#declaring-pages-as-itemlink-targets).
132
132
133
+
Similar to `ItemImage` tags, the `ItemLink` tag also accepts additional data components in the `components` attribute,
134
+
same as the [Minecraft give command](https://minecraft.wiki/w/Commands/give). The data components are used for creating the ItemStack that the tooltip and
135
+
shown item name are retrieved from. `<ItemLink id="minecraft:stick" components="rarity=epic" />` will show the tooltip
136
+
using the epic rarity color, for example.
137
+
133
138
### Command Links
134
139
135
140
You can make links that run a command when clicked using `<CommandLink command="/command">text text</CommandLink>`.
0 commit comments