Skip to content
This repository was archived by the owner on Mar 15, 2025. It is now read-only.

Commit cdc5540

Browse files
committed
Revert "grr get out of here..... 🎃"
This reverts commit 6280177.
1 parent 6280177 commit cdc5540

File tree

113 files changed

+24042
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+24042
-0
lines changed

‎.browserslistrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
last 3 versions
2+
Safari >= 8
3+
iOS >= 8
4+
electron >= 11

‎.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/" # Location of package manifests
5+
schedule:
6+
interval: "weekly"

‎.github/workflows/build-auto.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build (Auto)
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Install Node.js
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: 14.x
19+
cache: npm
20+
- name: Install Dependencies
21+
run: npm install
22+
- name: Compile and package
23+
run: npm run dist -- --linux tar.gz --publish never
24+
env:
25+
NODE_OPTIONS: --max-old-space-size=4096

‎.github/workflows/build.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build (Manual)
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
runs-on: ${{ matrix.os }}
9+
10+
strategy:
11+
matrix:
12+
os: [macos-latest, ubuntu-latest, windows-latest]
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Install Node.js
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: 14.x
20+
cache: npm
21+
- name: Install Dependencies
22+
run: npm ci
23+
- name: Download Library Files
24+
run: npm run fetch
25+
- name: Compile and package
26+
run: npm run dist -- --publish never
27+
env:
28+
NODE_OPTIONS: --max-old-space-size=4096

‎.github/workflows/release.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Release
2+
3+
on:
4+
workflow_dispatch:
5+
6+
permissions:
7+
contents: write
8+
9+
jobs:
10+
release:
11+
runs-on: ${{ matrix.os }}
12+
13+
strategy:
14+
matrix:
15+
os: [windows-latest]
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Install Node.js
20+
uses: actions/setup-node@v3
21+
with:
22+
node-version: 14.x
23+
cache: npm
24+
- name: Install Dependencies
25+
run: npm install
26+
- name: Download Library Files
27+
run: npm run fetch
28+
29+
- name: Compile
30+
run: npm run compile
31+
env:
32+
NODE_OPTIONS: --max-old-space-size=4096
33+
TW_ENABLE_UPDATE_CHECKER: "1"
34+
35+
- name: Package Windows
36+
if: runner.os == 'Windows'
37+
run: |
38+
npx electron-builder --windows nsis --x64 --publish always
39+
npx electron-builder --windows nsis --ia32 --publish always
40+
npx electron-builder --windows nsis --arm64 --publish always
41+
npx electron-builder --windows portable --x64 --publish always
42+
env:
43+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

‎.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.DS_Store
2+
dist/
3+
node_modules/
4+
thumbs.db
5+
.idea/
6+
library-files
7+
packager.html.br
8+
9+
# Debian release scripts create files that shouldn't be committed
10+
deb

0 commit comments

Comments
 (0)