3 Commits

Author SHA1 Message Date
QuickBASIC e2b1869f82 Update manifest 2026-07-06 12:30:49 -04:00
QuickBASIC 1942714b5a Add build script 2026-07-06 12:24:52 -04:00
QuickBASIC 0ed0735e79 update manifest for v1.0.1 for 2026.03.26-89796e57b 2026-03-26 14:04:32 -04:00
3 changed files with 39 additions and 5 deletions
+12
View File
@@ -1,3 +1,15 @@
# 1.0.2
## Changelog
* Verified loads correctly with Hytale v0.5.6
# 1.0.1
## Changelog
* Tested compatibility with release version and update manifest for 2026.03.26-89796e57b
# 1.0.0
## Changelog
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/env bash
set -e
PROJECT_ROOT="$(pwd)"
MANIFEST="$PROJECT_ROOT/src/main/resources/manifest.json"
RESOURCE_DIR="$PROJECT_ROOT/src/main/resources"
DIST_DIR="$PROJECT_ROOT/dist"
mkdir -p "$DIST_DIR"
NAME=$(jq -r '.Name' "$MANIFEST")
VERSION=$(jq -r '.Version' "$MANIFEST")
SERVER=$(jq -r '.ServerVersion' "$MANIFEST")
SERVER=${SERVER//[<>=~^]/}
ZIP_NAME="${NAME}-${VERSION}_${SERVER}.zip"
echo "Building $ZIP_NAME"
cd "$RESOURCE_DIR"
zip -r "$DIST_DIR/$ZIP_NAME" .
+5 -5
View File
@@ -1,17 +1,17 @@
{
"Group": "QuickBASIC",
"Name": "QuickBASIC.TieredRepairKits",
"Version": "1.0.0",
"ServerVersion": "2026.02.19-1a311a592",
"Version": "1.0.2",
"ServerVersion": ">=0.5.0",
"Description": "Balanced tiered Repair Kits that can increase the maximum durability of items",
"Authors": [
{
"Name": "QuickBASIC",
"Email": "",
"Url": ""
"Email": "quickbasic@quickbasic.xyz",
"Url": "https://git.quickbasic.xyz/hytale-modding"
}
],
"Website": "",
"Website": "https://git.quickbasic.xyz/hytale-modding/TieredRepairKits",
"Dependencies": {},
"OptionalDependencies": {},
"LoadBefore": {},