Skip to content
This repository has been archived by the owner on Jun 23, 2021. It is now read-only.

Commit

Permalink
chore: add support for 32 bit systems
Browse files Browse the repository at this point in the history
  • Loading branch information
sentialx committed Aug 13, 2019
1 parent 5a15791 commit 5a8a73c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
34 changes: 29 additions & 5 deletions electron-builder.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,49 @@
"output": "dist",
"buildResources": "static/app-icons"
},
"files": ["build/**/*", "package.json"],
"files": [
"build/**/*",
"package.json"
],
"publish": "github",
"linux": {
"category": "Network",
"target": [
{
"target": "deb",
"arch": ["ia32", "x64"]
"arch": [
"ia32",
"x64"
]
},
{
"target": "AppImage",
"arch": ["ia32", "x64"]
"arch": [
"ia32",
"x64"
]
}
]
},
"win": {
"target": ["zip", "nsis"]
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "zip",
"arch": [
"x64",
"ia32"
]
}
]
},
"mac": {
"category": "public.app-category.navigation"
}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "multrin",
"version": "1.0.0",
"version": "0.4.1",
"description": "Tabbed window organizer",
"keywords": [
"organizer",
Expand Down

0 comments on commit 5a8a73c

Please sign in to comment.