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

Commit 5a8a73c

Browse files
committed
chore: add support for 32 bit systems
1 parent 5a15791 commit 5a8a73c

File tree

2 files changed

+30
-6
lines changed

2 files changed

+30
-6
lines changed

electron-builder.json

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,49 @@
66
"output": "dist",
77
"buildResources": "static/app-icons"
88
},
9-
"files": ["build/**/*", "package.json"],
9+
"files": [
10+
"build/**/*",
11+
"package.json"
12+
],
1013
"publish": "github",
1114
"linux": {
1215
"category": "Network",
1316
"target": [
1417
{
1518
"target": "deb",
16-
"arch": ["ia32", "x64"]
19+
"arch": [
20+
"ia32",
21+
"x64"
22+
]
1723
},
1824
{
1925
"target": "AppImage",
20-
"arch": ["ia32", "x64"]
26+
"arch": [
27+
"ia32",
28+
"x64"
29+
]
2130
}
2231
]
2332
},
2433
"win": {
25-
"target": ["zip", "nsis"]
34+
"target": [
35+
{
36+
"target": "nsis",
37+
"arch": [
38+
"x64",
39+
"ia32"
40+
]
41+
},
42+
{
43+
"target": "zip",
44+
"arch": [
45+
"x64",
46+
"ia32"
47+
]
48+
}
49+
]
2650
},
2751
"mac": {
2852
"category": "public.app-category.navigation"
2953
}
30-
}
54+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "multrin",
3-
"version": "1.0.0",
3+
"version": "0.4.1",
44
"description": "Tabbed window organizer",
55
"keywords": [
66
"organizer",

0 commit comments

Comments
 (0)