4 Commits

Author SHA1 Message Date
QuickBASIC 649fb75e62 Update build script for new ServerVersion format 2026-07-06 12:04:21 -04:00
QuickBASIC 0ec76191bc Update manifest and changelog 2026-07-06 12:02:04 -04:00
QuickBASIC 46aeff402a update manifest for 2026.03.26-89796e57b 2026-03-26 12:40:48 -04:00
QuickBASIC b51bfe61bd add build script 2026-03-26 12:32:57 -04:00
5 changed files with 61 additions and 6 deletions
+7 -1
View File
@@ -34,7 +34,10 @@ bin/
out/
# VS Code
.vscode/
.vscode/*
# VS Code (include tasks)
!.vscode/tasks.json
# NetBeans
nbproject/private/
@@ -49,3 +52,6 @@ nbdist/
# Linux
*~
# build artifacts
dist/
+11
View File
@@ -0,0 +1,11 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build Hytale Asset Mod",
"type": "shell",
"command": "./scripts/build-assets-mod.sh",
"group": "build"
}
]
}
+16
View File
@@ -1,3 +1,19 @@
# 1.0.8
## Changelog
*  Verified loads correctly with Hytale v0.5.6
***
# 1.0.7
## Changelog
*  Verify working for 2026.03.26-89796e57b and update manifest
***
# 1.0.6
## 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.HandcraftEssence",
"Version": "1.0.6",
"ServerVersion": "2026.02.19-1a311a592",
"Version": "1.0.8",
"ServerVersion": ">=0.5.0",
"Description": "Allows you to craft Life Essence and Greater Life Essence without a bench",
"Authors": [
{
"Name": "QuickBASIC",
"Email": "",
"Url": ""
"Email": "quickbasic@quickbasic.xyz",
"Url": "https://git.quickbasic.xyz/hytale-modding"
}
],
"Website": "",
"Website": "https://git.quickbasic.xyz/hytale-modding/HandcraftEssence",
"Dependencies": {},
"OptionalDependencies": {},
"LoadBefore": {},