Skip to content

Commit fb34a33

Browse files
author
Rayat Rahman
committed
Merge branch 'win'
2 parents 5c16f18 + 1d6581e commit fb34a33

6 files changed

+1553
-1
lines changed

.gitpod.Dockerfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM gitpod/workspace-full
2+
3+
# Install custom tools, runtime, etc.
4+
RUN brew install fzf
5+
RUN apt-get update && \
6+
apt-get install -y \
7+
libnss3
8+
9+
# RUN sh -c "$(curl -fsLS chezmoi.io/get)" -- init --apply riotrah

.gitpod.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This configuration file was automatically generated by Gitpod.
2+
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
3+
# and commit this file to your remote git repository to share the goodness with others.
4+
5+
tasks:
6+
- init: npm install
7+
command: npm run start
8+
9+
image:
10+
file: .gitpod.Dockerfile

electron-builder.json

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"appId": "org.wexond.wexond",
3+
"productName": "Wexond",
4+
"nsis": {
5+
"include": "static/installer.nsh"
6+
},
7+
"electronVersion": "13.1.4",
8+
"generateUpdatesFilesForAllChannels": true,
9+
"asar": true,
10+
"directories": {
11+
"output": "dist",
12+
"buildResources": "static/icons"
13+
},
14+
"files": ["build/**/*", "package.json", "static/**/*"],
15+
"publish": "github",
16+
"linux": {
17+
"category": "Network",
18+
"target": [
19+
{
20+
"target": "AppImage",
21+
"arch": ["x64"]
22+
},
23+
{
24+
"target": "deb",
25+
"arch": ["x64"]
26+
}
27+
]
28+
},
29+
"win": {
30+
"target": [
31+
{
32+
"target": "nsis-web",
33+
"arch": ["x64", "ia32"]
34+
},
35+
{
36+
"target": "zip",
37+
"arch": ["x64", "ia32"]
38+
}
39+
]
40+
},
41+
"mac": {
42+
"category": "public.app-category.navigation"
43+
},
44+
"fileAssociations": [
45+
{
46+
"name": "Document",
47+
"description": "Wexond",
48+
"role": "Viewer",
49+
"ext": "html"
50+
}
51+
]
52+
}

0 commit comments

Comments
 (0)