update 2.0.2b: add arm64 support, product and executable name, maintainers; remove snap;

This commit is contained in:
Fazri Gading
2026-01-21 16:07:12 +08:00
parent 158d0af820
commit 281aa6fcde

View File

@@ -1,6 +1,6 @@
{
"name": "hytale-f2p-launcherv2",
"version": "2.0.2a",
"version": "2.0.2b",
"description": "A modern, cross-platform launcher for Hytale with automatic updates and multi-client support",
"homepage": "https://github.com/amiayweb/Hytale-F2P",
"main": "main.js",
@@ -23,6 +23,17 @@
"auto-update",
"mod-manager",
"chat"
],
"maintainers": [
{
"name": "Terromur",
"url": "https://github.com/Terromur"
},
{
"name": "Fari Gading",
"email": "fazrigading@gmail.com",
"url": "https://github.com/fazrigading"
}
],
"author": {
"name": "AMIAY",
@@ -45,7 +56,8 @@
},
"build": {
"appId": "com.hytalef2p.launcher",
"productName": "Hytale F2P",
"productName": "Hytale F2P Launcher",
"executableName": "hytale-f2p-launcherv2",
"directories": {
"output": "dist"
},
@@ -58,18 +70,17 @@
],
"win": {
"target": [
{ "target": "nsis", "arch": ["x64"]},
{ "target": "portable", "arch": ["x64"]}
{ "target": "nsis", "arch": ["x64", "arm64"] },
{ "target": "portable", "arch": ["x64"] }
],
"icon": "icon.ico"
},
"linux": {
"target": [
{ "target": "AppImage", "arch": ["x64"] },
{ "target": "deb", "arch": ["x64"] },
{ "target": "rpm", "arch": ["x64"] },
{ "target": "pacman", "arch": ["x64"] },
{ "target": "snap", "arch": ["x64"] }
{ "target": "AppImage", "arch": ["x64", "arm64"] },
{ "target": "deb", "arch": ["x64", "arm64"] },
{ "target": "rpm", "arch": ["x64", "arm64"] },
{ "target": "pacman", "arch": ["x64", "arm64"] }
],
"icon": "build/icon.png",
"category": "Game"
@@ -77,7 +88,7 @@
"mac": {
"target": [
{ "target": "dmg", "arch": ["universal"] },
{ "target": "zip", "arch": ["universal"]}
{ "target": "zip", "arch": ["universal"] }
],
"icon": "build/icon.icns",
"category": "public.app-category.games"
@@ -89,8 +100,4 @@
"createStartMenuShortcut": true
}
}
}
}