Skip to content

Commit

Permalink
Merge branch 'win'
Browse files Browse the repository at this point in the history
  • Loading branch information
Rayat Rahman committed Jul 16, 2022
2 parents 5c16f18 + 1d6581e commit fb34a33
Show file tree
Hide file tree
Showing 6 changed files with 1,553 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM gitpod/workspace-full

# Install custom tools, runtime, etc.
RUN brew install fzf
RUN apt-get update && \
apt-get install -y \
libnss3

# RUN sh -c "$(curl -fsLS chezmoi.io/get)" -- init --apply riotrah
10 changes: 10 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
# and commit this file to your remote git repository to share the goodness with others.

tasks:
- init: npm install
command: npm run start

image:
file: .gitpod.Dockerfile
52 changes: 52 additions & 0 deletions electron-builder.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"appId": "org.wexond.wexond",
"productName": "Wexond",
"nsis": {
"include": "static/installer.nsh"
},
"electronVersion": "13.1.4",
"generateUpdatesFilesForAllChannels": true,
"asar": true,
"directories": {
"output": "dist",
"buildResources": "static/icons"
},
"files": ["build/**/*", "package.json", "static/**/*"],
"publish": "github",
"linux": {
"category": "Network",
"target": [
{
"target": "AppImage",
"arch": ["x64"]
},
{
"target": "deb",
"arch": ["x64"]
}
]
},
"win": {
"target": [
{
"target": "nsis-web",
"arch": ["x64", "ia32"]
},
{
"target": "zip",
"arch": ["x64", "ia32"]
}
]
},
"mac": {
"category": "public.app-category.navigation"
},
"fileAssociations": [
{
"name": "Document",
"description": "Wexond",
"role": "Viewer",
"ext": "html"
}
]
}
Loading

0 comments on commit fb34a33

Please sign in to comment.