Skip to content

Commit

Permalink
login error found, but no fix currently
Browse files Browse the repository at this point in the history
  • Loading branch information
lony2003 committed Jan 5, 2024
1 parent a9d341b commit e01d0bc
Show file tree
Hide file tree
Showing 6 changed files with 784 additions and 745 deletions.
33 changes: 30 additions & 3 deletions electron-builder.json5
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@
],
"mac": {
"target": [
"dmg"
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"artifactName": "${productName}-Mac-${arch}-${version}-Installer.${ext}"
},
Expand All @@ -26,7 +32,8 @@
{
"target": "nsis",
"arch": [
"x64"
"x64",
"arm64"
]
}
],
Expand All @@ -40,7 +47,27 @@
},
"linux": {
"target": [
"AppImage", "deb", "rpm"
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
},
{
"target": "deb",
"arch": [
"x64",
"arm64"
]
},
{
"target": "rpm",
"arch": [
"x64",
"arm64"
]
}
],
"artifactName": "${productName}-Linux-${arch}-${version}.${ext}"
}
Expand Down
Loading

0 comments on commit e01d0bc

Please sign in to comment.