Compare commits

..

No commits in common. "2fdb217e64a7cb04f7d77b373dc83e9162f47fa4" and "9c6d75f8121ecc65210fd2c773242e5ac0068ae5" have entirely different histories.

4 changed files with 977 additions and 643 deletions

View File

@ -14,22 +14,16 @@ jobs:
- name: Check out Git repository - name: Check out Git repository
uses: actions/checkout@v1 uses: actions/checkout@v1
- name: Set up Node - name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 16 node-version: 16
- name: Set up Python - name: Build/release Electron app
uses: actions/setup-python@v2 uses: samuelmeuli/action-electron-builder@v1
with: with:
python-version: 3.x github_token: ${{ secrets.github_token }}
- name: Install Dependencies # If the commit is tagged with a version (e.g. "v1.0.0"),
run: npm ci # release the app after building
shell: bash release: ${{ startsWith(github.ref, 'refs/tags/v') }}
- name: Build
env:
GH_TOKEN: ${{ secrets.github_token }}
run: npm run dist
shell: bash

View File

@ -1,7 +1,7 @@
// Work in progress // Work in progress
const logger = require('./loggerutil')('%c[DiscordWrapper]', 'color: #7289da; font-weight: bold') const logger = require('./loggerutil')('%c[DiscordWrapper]', 'color: #7289da; font-weight: bold')
const {Client} = require('discord-rpc-patch') const {Client} = require('discord-rpc')
let client let client
let activity let activity

1586
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -25,11 +25,11 @@
"dependencies": { "dependencies": {
"@electron/remote": "^2.0.1", "@electron/remote": "^2.0.1",
"adm-zip": "^0.5.9", "adm-zip": "^0.5.9",
"async": "^3.2.3", "async": "^3.2.1",
"discord-rpc-patch": "^4.0.1", "discord-rpc": "^3.2.0",
"ejs": "^3.1.6", "ejs": "^3.1.6",
"ejs-electron": "^2.1.1", "ejs-electron": "^2.1.1",
"electron-updater": "^4.6.1", "electron-updater": "^4.3.9",
"fs-extra": "^10.0.0", "fs-extra": "^10.0.0",
"github-syntax-dark": "^0.5.0", "github-syntax-dark": "^0.5.0",
"helios-core": "^0.1.0-alpha.3", "helios-core": "^0.1.0-alpha.3",
@ -41,9 +41,9 @@
"winreg": "^1.2.4" "winreg": "^1.2.4"
}, },
"devDependencies": { "devDependencies": {
"electron": "^16.0.7", "electron": "^15.2.0",
"electron-builder": "^22.14.5", "electron-builder": "^22.13.1",
"eslint": "^8.7.0" "eslint": "^8.0.1"
}, },
"repository": { "repository": {
"type": "git", "type": "git",