Merge branch 'main' into feat/macos-menubar
This commit is contained in:
commit
60410c5ba5
4 changed files with 22 additions and 29 deletions
28
.github/workflows/winget-submission.yml
vendored
28
.github/workflows/winget-submission.yml
vendored
|
@ -1,33 +1,17 @@
|
||||||
# Based on Microsoft/DevHome Winget CI, modified for use in Vencord/Vesktop.
|
|
||||||
#
|
|
||||||
# Copyright (c) Microsoft Corporation and Contributors
|
|
||||||
# Licensed under the MIT license.
|
|
||||||
|
|
||||||
name: Submit to Winget Community Repo
|
name: Submit to Winget Community Repo
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
|
||||||
release:
|
release:
|
||||||
types: [published]
|
types: [published]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
winget:
|
winget:
|
||||||
name: Publish winget package
|
name: Publish winget package
|
||||||
runs-on: windows-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
|
||||||
WINGET_PAT: ${{ secrets.WINGET_PAT }}
|
|
||||||
steps:
|
steps:
|
||||||
- name: Submit package to Winget Community Repo
|
- name: Submit package to Winget Community Repo
|
||||||
run: |
|
uses: vedantmgoyal2009/winget-releaser@52ef3f3028ed79a9606d7678d0a88d295bc0c690 # v2
|
||||||
|
with:
|
||||||
$packageId = "Vencord.Vesktop"
|
identifier: Vencord.Vesktop
|
||||||
|
token: ${{ secrets.WINGET_PAT }}
|
||||||
# Fetching latest release from GitHub
|
installers-regex: '\.exe$'
|
||||||
$github = Invoke-RestMethod -uri "https://api.github.com/repos/vencord/vesktop/releases"
|
|
||||||
$targetRelease = $github | Select-Object -First 1
|
|
||||||
$installerUrl = $targetRelease | Select-Object -ExpandProperty assets -First 1 | Where-Object -Property name -match 'Vesktop-Setup.*?exe' | Select-Object -ExpandProperty browser_download_url
|
|
||||||
$packageVersion = $targetRelease.tag_name.Trim("v")
|
|
||||||
|
|
||||||
# Update package using wingetcreate
|
|
||||||
Invoke-WebRequest https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe
|
|
||||||
.\wingetcreate.exe update $packageId --version $packageVersion --urls "$installerUrl" --submit --token $env:WINGET_PAT
|
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
"@typescript-eslint/parser": "^6.2.1",
|
"@typescript-eslint/parser": "^6.2.1",
|
||||||
"@vencord/types": "^0.1.2",
|
"@vencord/types": "^0.1.2",
|
||||||
"dotenv": "^16.3.1",
|
"dotenv": "^16.3.1",
|
||||||
"electron": "^25.8.2",
|
"electron": "^25.8.4",
|
||||||
"electron-builder": "^24.6.3",
|
"electron-builder": "^24.6.3",
|
||||||
"esbuild": "^0.18.17",
|
"esbuild": "^0.18.17",
|
||||||
"eslint": "^8.46.0",
|
"eslint": "^8.46.0",
|
||||||
|
@ -66,6 +66,7 @@
|
||||||
"LICENSE"
|
"LICENSE"
|
||||||
],
|
],
|
||||||
"linux": {
|
"linux": {
|
||||||
|
"icon": "build/icon.icns",
|
||||||
"category": "Network",
|
"category": "Network",
|
||||||
"maintainer": "vendicated+vesktop@riseup.net",
|
"maintainer": "vendicated+vesktop@riseup.net",
|
||||||
"target": [
|
"target": [
|
||||||
|
|
|
@ -32,8 +32,8 @@ devDependencies:
|
||||||
specifier: ^16.3.1
|
specifier: ^16.3.1
|
||||||
version: 16.3.1
|
version: 16.3.1
|
||||||
electron:
|
electron:
|
||||||
specifier: ^25.8.2
|
specifier: ^25.8.4
|
||||||
version: 25.8.2
|
version: 25.8.4
|
||||||
electron-builder:
|
electron-builder:
|
||||||
specifier: ^24.6.3
|
specifier: ^24.6.3
|
||||||
version: 24.6.3
|
version: 24.6.3
|
||||||
|
@ -1766,8 +1766,8 @@ packages:
|
||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/electron@25.8.2:
|
/electron@25.8.4:
|
||||||
resolution: {integrity: sha512-AM1ra6b16EQuO1bJtiA8ZiWqqFLLgVfxD56ykiy+EA5C63Hkx8OmIbe+5JAsLiTwRVvBZ4oCAj6wa2qT+iq8ww==}
|
resolution: {integrity: sha512-hUYS3RGdaa6E1UWnzeGnsdsBYOggwMMg4WGxNGvAoWtmRrr6J1BsjFW/yRq4WsJHJce2HdzQXtz4OGXV6yUCLg==}
|
||||||
engines: {node: '>= 12.20.55'}
|
engines: {node: '>= 12.20.55'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
|
|
|
@ -4,7 +4,8 @@
|
||||||
* Copyright (c) 2023 Vendicated and Vencord contributors
|
* Copyright (c) 2023 Vendicated and Vencord contributors
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { app, dialog, session, shell } from "electron";
|
import { execFile } from "child_process";
|
||||||
|
import { app, dialog, RelaunchOptions, session, shell } from "electron";
|
||||||
import { mkdirSync, readFileSync, watch } from "fs";
|
import { mkdirSync, readFileSync, watch } from "fs";
|
||||||
import { open, readFile } from "fs/promises";
|
import { open, readFile } from "fs/promises";
|
||||||
import { release } from "os";
|
import { release } from "os";
|
||||||
|
@ -45,7 +46,14 @@ handle(IpcEvents.SET_SETTINGS, (_, settings: typeof Settings.store, path?: strin
|
||||||
});
|
});
|
||||||
|
|
||||||
handle(IpcEvents.RELAUNCH, () => {
|
handle(IpcEvents.RELAUNCH, () => {
|
||||||
app.relaunch();
|
const options: RelaunchOptions = {
|
||||||
|
args: process.argv.slice(1).concat(["--relaunch"])
|
||||||
|
};
|
||||||
|
if (app.isPackaged && process.env.APPIMAGE) {
|
||||||
|
execFile(process.env.APPIMAGE, options.args);
|
||||||
|
} else {
|
||||||
|
app.relaunch(options);
|
||||||
|
}
|
||||||
app.exit();
|
app.exit();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Reference in a new issue