Skip to content

Commit 1e4ea5a

Browse files
committed
🚧 v1.6.2
1 parent 06f986d commit 1e4ea5a

File tree

3 files changed

+44
-3
lines changed

3 files changed

+44
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"title": "Animated Java",
55
"icon": "icon.svg",
66
"description": "A Blockbench plugin that makes complex animation a breeze in Minecraft: Java Edition.",
7-
"version": "1.6.1",
8-
"display_version": "1.6.1",
7+
"version": "1.6.2",
8+
"display_version": "v1.6.2",
99
"min_blockbench_version": "4.11.1",
1010
"variant": "desktop",
1111
"tags": [

src/components/changelogDialog.svelte

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
1616
async function formatMarkdown(text: string) {
1717
const issues: Record<number, { title: string; url: string }> = {}
18-
text = text.replace(/\[(.*?)\]\((.*?)\)/g, (match, title, url) => {
18+
text = text.replace('[BREAKING]', '<span class="breaking">BREAKING</span>')
19+
text = text.replace(/\[([^\]]+?)\]\(([^)]+?)\)/gm, (match, title, url) => {
1920
const issueMatch = url.match(/issues\/(\d+)/)
2021
if (issueMatch) {
2122
const issueNumber = parseInt(issueMatch[1])
@@ -87,6 +88,14 @@
8788
border-radius: 3px;
8889
font-size: 0.8em;
8990
}
91+
:global(.plugin_browser_tabbed_page .breaking) {
92+
background-color: var(--color-error);
93+
color: var(--color-back);
94+
padding: 0 0.3em;
95+
border-radius: 3px;
96+
font-size: 0.8em;
97+
font-weight: 700;
98+
}
9099
img {
91100
border-radius: 4px;
92101
width: 24px;

src/pluginPackage/changelog.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,37 @@
5656
]
5757
}
5858
]
59+
},
60+
"1.6.2": {
61+
"title": "v1.6.2",
62+
"author": "Titus Evans (SnaveSutit)",
63+
"date": "2025-01-12",
64+
"categories": [
65+
{
66+
"title": "Changes",
67+
"list": [
68+
"[BREAKING] Implemented improved scoreboard tag system. Please visit [this docs page](https://animated-java.dev/docs/rigs/tags) on the Animated Java website to learn more.",
69+
"[BREAKING] Removed individual variant summon functions. (`animated_java:namespace/summon/variant_name`) in favor of `animated_java:namespace/summon {args:{variant: 'variant_name'}}`.",
70+
"[BREAKING] Removed advanced folder options for Resource Packs. ",
71+
"Re-organized the file structure of AJ's UI files.",
72+
"Updated the model format order on the start menu to be organized alphabetically.",
73+
"Added incomptaibility warnings for installing, or having installed, plugins that are incompatible with Animated Java."
74+
]
75+
},
76+
{
77+
"title": "Fixes",
78+
"list": [
79+
"Fixed some visual and interactivity issues with the Variants panel.",
80+
"Fixed default Variant UUID changing every time a model is opened.",
81+
"Fixed \"Display entity is not a string\" console spam",
82+
"Fixed 1.21.2 using `custom_model_data` instead of `item_model`",
83+
"Fixed [#304](https://github.com/Animated-Java/animated-java/issues/304)",
84+
"Fixed [#356](https://github.com/Animated-Java/animated-java/issues/356)",
85+
"Fixed [#357](https://github.com/Animated-Java/animated-java/issues/357)",
86+
"Fixed [#358](https://github.com/Animated-Java/animated-java/issues/358)",
87+
"Fixed [#359](https://github.com/Animated-Java/animated-java/issues/359)"
88+
]
89+
}
90+
]
5991
}
6092
}

0 commit comments

Comments
 (0)