diff --git a/CHANGELOG.md b/CHANGELOG.md index bfbee4b..8676719 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.3] - 2024-04-20 + +### Added + +- Add onConsumeTotem [#104] +- Add onSetArmor [#95] +- Add onProjectileHitEntity & onProjectileHitBlock [#87] + +### Changed + +- Set snbt format to ForceQuote in toSNBT + +### Fixed + +- Fix NetworkPacket [#50] + ## [0.6.2] - 2024-04-14 ### Fixed @@ -253,6 +269,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#45]: https://github.com/LiteLDev/LegacyScriptEngine/issues/45 [#47]: https://github.com/LiteLDev/LegacyScriptEngine/issues/47 [#49]: https://github.com/LiteLDev/LegacyScriptEngine/issues/49 +[#50]: https://github.com/LiteLDev/LegacyScriptEngine/issues/50 [#52]: https://github.com/LiteLDev/LegacyScriptEngine/issues/52 [#53]: https://github.com/LiteLDev/LegacyScriptEngine/issues/53 [#54]: https://github.com/LiteLDev/LegacyScriptEngine/issues/54 @@ -266,15 +283,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#80]: https://github.com/LiteLDev/LegacyScriptEngine/issues/80 [#81]: https://github.com/LiteLDev/LegacyScriptEngine/issues/81 [#82]: https://github.com/LiteLDev/LegacyScriptEngine/issues/82 +[#87]: https://github.com/LiteLDev/LegacyScriptEngine/issues/87 [#91]: https://github.com/LiteLDev/LegacyScriptEngine/issues/91 [#92]: https://github.com/LiteLDev/LegacyScriptEngine/issues/92 [#94]: https://github.com/LiteLDev/LegacyScriptEngine/issues/94 +[#95]: https://github.com/LiteLDev/LegacyScriptEngine/issues/95 [#97]: https://github.com/LiteLDev/LegacyScriptEngine/issues/97 [#99]: https://github.com/LiteLDev/LegacyScriptEngine/issues/99 [#100]: https://github.com/LiteLDev/LegacyScriptEngine/issues/100 [#101]: https://github.com/LiteLDev/LegacyScriptEngine/issues/101 [#102]: https://github.com/LiteLDev/LegacyScriptEngine/issues/102 +[#104]: https://github.com/LiteLDev/LegacyScriptEngine/issues/104 +[0.6.3]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.6.2...v0.6.3 [0.6.2]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.6.1...v0.6.2 [0.6.1]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/LiteLDev/LegacyScriptEngine/compare/v0.5.4...v0.6.0 diff --git a/manifest.json b/manifest.json index 9e12c4a..1e02373 100644 --- a/manifest.json +++ b/manifest.json @@ -4,7 +4,7 @@ "type": "native", "description": "A plugin engine for running LLSE plugins on LeviLamina", "author": "LiteLDev", - "version": "0.6.2", + "version": "0.6.3", "dependencies": [ { "name": "LegacyMoney" diff --git a/tooth.json b/tooth.json index 75db485..4e7f3b5 100644 --- a/tooth.json +++ b/tooth.json @@ -1,7 +1,7 @@ { "format_version": 2, "tooth": "github.com/LiteLDev/LegacyScriptEngine", - "version": "0.6.2", + "version": "0.6.3", "info": { "name": "LegacyScriptEngine", "description": "A plugin engine for running LLSE plugins on LeviLamina", @@ -12,7 +12,7 @@ ] }, "dependencies": { - "gitea.litebds.com/LiteLDev/legacy-script-engine-lua": "0.6.2", - "gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs": "0.6.2" + "gitea.litebds.com/LiteLDev/legacy-script-engine-lua": "0.6.3", + "gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs": "0.6.3" } } diff --git a/tooth.lua.json b/tooth.lua.json index 1b40b31..1b9d1be 100644 --- a/tooth.lua.json +++ b/tooth.lua.json @@ -1,7 +1,7 @@ { "format_version": 2, "tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-lua", - "version": "0.6.2", + "version": "0.6.3", "info": { "name": "LegacyScriptEngine with Lua backend", "description": "A plugin engine for running LLSE plugins on LeviLamina", diff --git a/tooth.nodejs.json b/tooth.nodejs.json index a6df519..34ed34d 100644 --- a/tooth.nodejs.json +++ b/tooth.nodejs.json @@ -1,7 +1,7 @@ { "format_version": 2, "tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-nodejs", - "version": "0.6.2", + "version": "0.6.3", "info": { "name": "LegacyScriptEngine with NodeJs backend", "description": "A plugin engine for running LLSE plugins on LeviLamina", diff --git a/tooth.python.json b/tooth.python.json index 9b4b7d5..e13c396 100644 --- a/tooth.python.json +++ b/tooth.python.json @@ -1,7 +1,7 @@ { "format_version": 2, "tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-python", - "version": "0.6.2", + "version": "0.6.3", "info": { "name": "LegacyScriptEngine with Python backend", "description": "A plugin engine for running LLSE plugins on LeviLamina", diff --git a/tooth.quickjs.json b/tooth.quickjs.json index 1554655..6657b10 100644 --- a/tooth.quickjs.json +++ b/tooth.quickjs.json @@ -1,7 +1,7 @@ { "format_version": 2, "tooth": "gitea.litebds.com/LiteLDev/legacy-script-engine-quickjs", - "version": "0.6.2", + "version": "0.6.3", "info": { "name": "LegacyScriptEngine with QuickJs backend", "description": "A plugin engine for running LLSE plugins on LeviLamina",