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

View File

@ -1,7 +1,7 @@
// Work in progress
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 activity

1586
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

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