From 4833d47c49f048be60f8316e2f9af5c3ce3b20a2 Mon Sep 17 00:00:00 2001 From: Libamidi <142642882+Libamidi@users.noreply.github.com> Date: Thu, 12 Feb 2026 15:15:37 +0800 Subject: [PATCH 1/2] chore: optimize images with zopflipng --- pack/pack_icon.png | Bin 522 -> 180 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/pack/pack_icon.png b/pack/pack_icon.png index 73fb813de23bb6b873a2ad12dbe155b7a9fde7cb..892422526e961826e1b0e5e56f1751329ba42f34 100644 GIT binary patch delta 164 zcmeBT*}^zMqMn7Bfq}tLpymgV;t%i%aRt(zW}+H$+@0y_8Gdp;zr6keg&0eM{DK)A zp4~_Ta)Lcw978G?-(I$6Y%maTanza98gYQ>pXtWCoE|$r|Khn{n>T5Rr}|f>2G9Ig ztPF7q374jSE8u6?z}Udcki(F`%plEhgW&)h!#sJ}4Rg1&GqyH-Vdk=1yl@t)n<~(J N22WQ%mvv4FO#llxH01yQ literal 522 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSEX7WqAsj$Z!;#X#z`%IW)5S5Q zV$R!JhF&UxA`TbBeAtW~XJn|Eni`swPSsm{IkM?t%AtgWq!laQJrF;$edVit&zHD5 zI>yWG`Cq-A8E7I1_?^9ZOa8!(!*{*F8(?*D(UegDUw^)mPpZ z{r#`EPXj^@Y|tELpQu}(>;L~TtoeWb^6d{l-^|;8gau& Date: Thu, 12 Feb 2026 15:17:48 +0800 Subject: [PATCH 2/2] bump to 1.22.0 (mc 26.0+; api 2.5.0) --- pack/manifest.json | 12 ++++++------ package.json | 2 +- tool.js | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pack/manifest.json b/pack/manifest.json index d7dacb7..644c28a 100644 --- a/pack/manifest.json +++ b/pack/manifest.json @@ -1,12 +1,12 @@ { - "format_version": 2, + "format_version": 3, "header": { "name": "Debug Stick", "description": "Java §dDebug Stick§r ported to Minecraft: Bedrock Edition, by §bvytdev§r\nUse §a/give @s vyt:debug_stick§r or find it in the inventory screen to obtain the item.\n\nReport bugs here: §bhttps://github.com/vytdev/debug-stick/§r\nCopyright (c) 2023-2026 Vincent Yanzee J. Tan\nLicensed under the MIT License.", "uuid": "21aadfa6-e27c-400c-c596-596021852939", - "version": "1.21.0", - "min_engine_version": [ 1, 21, 130 ] + "version": "1.22.0", + "min_engine_version": "1.26.0" }, "modules": [ @@ -14,7 +14,7 @@ "description": "behaviour", "type": "data", "uuid": "d8a9ff21-7aa3-4b83-73ed-eeb141516e74", - "version": [ 1, 0, 0 ] + "version": "1.0.0" }, { "description": "scripting", @@ -22,14 +22,14 @@ "language": "javascript", "entry": "scripts/index.js", "uuid": "86c7bab4-aed9-4297-5f0c-d5d62bd30be1", - "version": [ 1, 0, 0 ] + "version": "1.0.0" } ], "dependencies": [ { "module_name": "@minecraft/server", - "version": "2.4.0" + "version": "2.5.0" } ], diff --git a/package.json b/package.json index c2065d1..46984f0 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "watch": "node tool.js watch" }, "dependencies": { - "@minecraft/server": "^2.4.0" + "@minecraft/server": "^2.5.0" }, "devDependencies": { "jszip": "^3.10.1", diff --git a/tool.js b/tool.js index 1bba9ce..49a8dee 100755 --- a/tool.js +++ b/tool.js @@ -11,7 +11,7 @@ import tsconfig from './tsconfig.json' with { type: 'json' }; import manifest from './pack/manifest.json' with { type: 'json' }; const packVersion = manifest.header.version; -const packMinEngineVersion = manifest.header.min_engine_version.join('.'); +const packMinEngineVersion = manifest.header.min_engine_version; const actionTable = {};