fix: update application metadata and default build URL
This commit is contained in:
parent
4ad078c80f
commit
087df8abfe
|
|
@ -67,6 +67,7 @@ jobs:
|
|||
env:
|
||||
PLATFORM: ${{ matrix.os }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
VITE_API_URL: ${{ secrets.VITE_API_URL }}
|
||||
|
||||
- name: Publish macOS x64
|
||||
if: matrix.os == 'macos-latest'
|
||||
|
|
@ -74,6 +75,7 @@ jobs:
|
|||
env:
|
||||
PLATFORM: ${{ matrix.os }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
VITE_API_URL: ${{ secrets.VITE_API_URL }}
|
||||
|
||||
- name: Publish Linux arm64
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
|
|
@ -81,3 +83,4 @@ jobs:
|
|||
env:
|
||||
PLATFORM: ${{ matrix.os }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
VITE_API_URL: ${{ secrets.VITE_API_URL }}
|
||||
|
|
|
|||
|
|
@ -13,10 +13,10 @@ import { FuseV1Options, FuseVersion } from "@electron/fuses";
|
|||
// import { globSync } from "node:fs";
|
||||
|
||||
const STRINGS = {
|
||||
author: "Revolt Platforms LTD",
|
||||
name: "Stoat",
|
||||
execName: "stoat-desktop",
|
||||
description: "Open source user-first chat platform.",
|
||||
author: "Revolt Platforms LTD & Qinbeans",
|
||||
name: "QStoat",
|
||||
execName: "qstoat-desktop",
|
||||
description: "Open source user-first chat platform. A touch of Qinbeans was added...",
|
||||
};
|
||||
|
||||
const ASSET_DIR = "assets/desktop";
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ export let mainWindow: BrowserWindow;
|
|||
export const BUILD_URL = new URL(
|
||||
app.commandLine.hasSwitch("force-server")
|
||||
? app.commandLine.getSwitchValue("force-server")
|
||||
: /*MAIN_WINDOW_VITE_DEV_SERVER_URL ??*/ "https://beta.revolt.chat",
|
||||
: /*MAIN_WINDOW_VITE_DEV_SERVER_URL ??*/ "https://stoat.qinbeans.net",
|
||||
);
|
||||
|
||||
// internal window state
|
||||
|
|
|
|||
Loading…
Reference in New Issue