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