From 7d8dcc5d68969ebdc2ff04897fe9a21e301fde5d Mon Sep 17 00:00:00 2001 From: SnaveSutit Date: Tue, 23 Jun 2026 21:04:06 -0400 Subject: [PATCH 1/5] =?UTF-8?q?=F0=9F=90=9B=20Fix=20broken=20website=20lin?= =?UTF-8?q?ks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/formats/blueprint/formatPage.svelte | 5 ++--- src/pluginPackage/about.svelte | 3 +-- src/popups/installed/installed.svelte | 2 +- src/systems/datapackCompiler/tellraw.ts | 2 +- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/formats/blueprint/formatPage.svelte b/src/formats/blueprint/formatPage.svelte index 4faf57fe..e72c73e0 100644 --- a/src/formats/blueprint/formatPage.svelte +++ b/src/formats/blueprint/formatPage.svelte @@ -21,9 +21,8 @@

- Check out the Docs to learn how to use Animated Java. + Check out the Docs to learn + how to use Animated Java.

diff --git a/src/pluginPackage/about.svelte b/src/pluginPackage/about.svelte index 23d4fc6a..f8ad4a66 100644 --- a/src/pluginPackage/about.svelte +++ b/src/pluginPackage/about.svelte @@ -67,8 +67,7 @@

To learn the basics of Animated Java, check out our Getting StartedGetting Started guide.

diff --git a/src/popups/installed/installed.svelte b/src/popups/installed/installed.svelte index c7f3d08d..f192eb5b 100644 --- a/src/popups/installed/installed.svelte +++ b/src/popups/installed/installed.svelte @@ -15,7 +15,7 @@

Not Sure Where to Start?

Check out our getting started page to learn how to use Animated Java!

diff --git a/src/systems/datapackCompiler/tellraw.ts b/src/systems/datapackCompiler/tellraw.ts index dba763bd..36dd8129 100644 --- a/src/systems/datapackCompiler/tellraw.ts +++ b/src/systems/datapackCompiler/tellraw.ts @@ -161,7 +161,7 @@ namespace TELLRAW { ], }, CREATE_TELLRAW_HELP_LINK( - 'https://animated-java.dev/docs/rigs/controlling-a-rig-instance' + 'https://animated-java.dev/docs/core-concepts/tags#practical-selector-examples' ), ]) } From 10139352b0dd47696abe3a3dec1f4e598978955f Mon Sep 17 00:00:00 2001 From: SnaveSutit Date: Tue, 23 Jun 2026 21:04:42 -0400 Subject: [PATCH 2/5] =?UTF-8?q?=F0=9F=90=9B=20Fix=20libraries=20requesting?= =?UTF-8?q?=20`node:fs`=20early=20in=20the=20plugin=20loading=20process?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .scripts/esbuild.ts | 1 + src/constants.ts | 34 ++++++++++++++++++++++++++++++++-- 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/.scripts/esbuild.ts b/.scripts/esbuild.ts index fb4cda2a..f1416a36 100644 --- a/.scripts/esbuild.ts +++ b/.scripts/esbuild.ts @@ -233,6 +233,7 @@ const COMMON_CONFIG: esbuild.BuildOptions = { svelte: 'svelte', module: './.scripts/fakeModule.js', 'node:module': './.scripts/fakeModule.js', + 'node:fs': './src/constants.ts', }, format: 'iife', define: DEFINES, diff --git a/src/constants.ts b/src/constants.ts index c3f6fe47..914058a3 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,12 +1,42 @@ import PACKAGEJSON from '../package.json' -import { localize as translate } from './util/lang' +import { localize } from './util/lang' export const PACKAGE: typeof PACKAGEJSON = PACKAGEJSON let cachedFsModule: ScopedFS | null = null export function getFsModule() { + debugger cachedFsModule ??= requireNativeModule('fs', { - message: translate('require.fs'), + message: localize('require.fs'), optional: false, })! return cachedFsModule } + +// Super lazy-loading of properties, so that we don't load the fs or fs.promises module until it's actually used by a dependency. +export default new Proxy( + {}, + { + get(target, prop) { + if (prop === 'promises') { + return new Proxy( + {}, + { + get(target, prop) { + return (...args: any[]) => { + // @ts-expect-error + return getFsModule().promises[prop as keyof ScopedFS['promises']]( + ...args + ) + } + }, + } + ) + } + + return (...args: any[]) => { + // @ts-expect-error + return getFsModule()[prop as keyof ScopedFS](...args) + } + }, + } +) From 3adc40482373d2628ebb99e893737ec78613ffd0 Mon Sep 17 00:00:00 2001 From: SnaveSutit Date: Tue, 23 Jun 2026 21:05:03 -0400 Subject: [PATCH 3/5] =?UTF-8?q?=F0=9F=A9=B9=20Fix=20incorrect=20lang=20pat?= =?UTF-8?q?hs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lang/en.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/lang/en.yml b/src/lang/en.yml index 542288d8..d16c7550 100644 --- a/src/lang/en.yml +++ b/src/lang/en.yml @@ -282,12 +282,13 @@ animated_java: The targeted Resource Pack must contain a `pack.mcmeta` file. warning: no_assets: Selected folder does not contain an assets folder. - error: - empty: Resource Pack folder is required. - invalid_path: 'Failed to resolve path: %s' - does_not_exist: Selected path does not exist. - not_a_dir: Selected path is not a directory. - no_pack_mcmeta: Selected folder does not contain a pack.mcmeta file. + folder: + error: + empty: Resource Pack folder is required. + invalid_path: 'Failed to resolve path: %s' + does_not_exist: Selected path does not exist. + not_a_dir: Selected path is not a directory. + no_pack_mcmeta: Selected folder does not contain a pack.mcmeta file. data_pack_settings: title: Data Pack data_pack: From 17cc38df11790df91c399a7bd516c3dbfaee6e76 Mon Sep 17 00:00:00 2001 From: SnaveSutit Date: Tue, 23 Jun 2026 21:05:26 -0400 Subject: [PATCH 4/5] =?UTF-8?q?=E2=9C=A8=20Add=20plugin=20info?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/plugin.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugin.ts b/src/plugin.ts index 86b2f628..27b4bba2 100644 --- a/src/plugin.ts +++ b/src/plugin.ts @@ -11,6 +11,9 @@ BBPlugin.register(PACKAGE.name, { version: PACKAGE.version, min_version: PACKAGE.min_blockbench_version, tags: ['Minecraft: Java Edition', 'Animation', 'Display Entities'], + repository: 'https://github.com/animated-java/animated-java', + bug_tracker: 'https://github.com/animated-java/animated-java/issues', + website: 'https://animated-java.dev', await_loading: true, onload() { console.log( From 9db24e867e5005e44940a1ff9673bb631e091fdb Mon Sep 17 00:00:00 2001 From: SnaveSutit Date: Tue, 23 Jun 2026 21:05:54 -0400 Subject: [PATCH 5/5] =?UTF-8?q?=F0=9F=94=96=20v1.10.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 4 ++-- src/pluginPackage/changelog.json | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1694a8ab..6ec4dcbb 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "title": "Animated Java", "icon": "icon.svg", "description": "Effortlessly craft complex animations for Minecraft: Java Edition", - "version": "1.10.0", + "version": "1.10.1", "min_blockbench_version": "5.1.4", "variant": "desktop", "tags": [ @@ -105,7 +105,7 @@ "firebase": "^9.19.0", "jiti": "^2.6.1", "js-yaml": "^4.1.0", - "mc-build": "^4.1.2", + "mc-build": "^4.1.3", "node-modules-vscode-problems-patch": "^1.0.9", "octokit": "^5.0.3", "prettier": "^3.8.2", diff --git a/src/pluginPackage/changelog.json b/src/pluginPackage/changelog.json index 67477465..27cfbada 100644 --- a/src/pluginPackage/changelog.json +++ b/src/pluginPackage/changelog.json @@ -852,5 +852,22 @@ ] } ] + }, + "1.10.1": { + "title": "v1.10.1", + "author": "Titus Evans (SnaveSutit)", + "date": "2026-06-24", + "categories": [ + { + "title": "Fixes", + "list": [ + "Fixed broken website links.", + "Fixed plugin data desyncs.", + "Fixed missing translations for resource pack folder path.", + "Fixed missing message for file access request.", + "Fixed dependencies requiring node:fs early in the plugin load process." + ] + } + ] } }