mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-20 11:02:04 +00:00
feat: add ARM support for Linux and MacOS
This commit is contained in:
parent
15e8ecf357
commit
cc20e35500
1 changed files with 22 additions and 4 deletions
26
package.json
26
package.json
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Miru",
|
||||
"version": "2.4.6",
|
||||
"version": "2.4.7",
|
||||
"author": "ThaUnknown_ <ThaUnknown@users.noreply.github.com>",
|
||||
"main": "src/index.js",
|
||||
"homepage": "https://github.com/ThaUnknown/miru#readme",
|
||||
|
|
@ -60,12 +60,22 @@
|
|||
"src/renderer/dist/**/*"
|
||||
],
|
||||
"mac": {
|
||||
"artifactName": "${os}-${name}-${version}.${ext}",
|
||||
"artifactName": "${os}-${arch}-${name}-${version}.${ext}",
|
||||
"category": "public.app-category.video",
|
||||
"icon": "build/icon.icns"
|
||||
"icon": "build/icon.icns",
|
||||
"target": [
|
||||
{
|
||||
"arch": "x64",
|
||||
"target": "dmg"
|
||||
},
|
||||
{
|
||||
"arch": "arm64",
|
||||
"target": "dmg"
|
||||
}
|
||||
]
|
||||
},
|
||||
"win": {
|
||||
"artifactName": "${os}-${name}-${version}.${ext}",
|
||||
"artifactName": "${os}-${arch}-${name}-${version}.${ext}",
|
||||
"target": "nsis"
|
||||
},
|
||||
"linux": {
|
||||
|
|
@ -87,6 +97,14 @@
|
|||
{
|
||||
"arch": "x64",
|
||||
"target": "deb"
|
||||
},
|
||||
{
|
||||
"arch": "arm64",
|
||||
"target": "AppImage"
|
||||
},
|
||||
{
|
||||
"arch": "arm64",
|
||||
"target": "deb"
|
||||
}
|
||||
],
|
||||
"mimeTypes": [
|
||||
|
|
|
|||
Loading…
Reference in a new issue