pull/5370/head
bunsenstraat 6 months ago
parent a2e4c97cd5
commit 0224d897d4
  1. 1
      apps/remix-ide/ci/update_desktop_release_assets.ts
  2. 2
      apps/remixdesktop/package.json
  3. 1
      apps/remixdesktop/src/plugins/appUpdater.ts

@ -111,6 +111,7 @@ async function main() {
tag_name: `v${version}`, tag_name: `v${version}`,
name: `${version}`, name: `${version}`,
draft: true, draft: true,
prerelease: true,
headers: headers, headers: headers,
}) })
release = r.data release = r.data

@ -1,6 +1,6 @@
{ {
"name": "remixdesktop", "name": "remixdesktop",
"version": "1.0.1-Beta", "version": "1.0.2-beta",
"main": "build/main.js", "main": "build/main.js",
"license": "MIT", "license": "MIT",
"type": "commonjs", "type": "commonjs",

@ -18,6 +18,7 @@ export class AppUpdaterPlugin extends ElectronBasePlugin {
this.methods = [...super.methods] this.methods = [...super.methods]
autoUpdater.autoDownload = false autoUpdater.autoDownload = false
autoUpdater.channel = 'beta'
autoUpdater.disableDifferentialDownload = true autoUpdater.disableDifferentialDownload = true
autoUpdater.on('checking-for-update', () => { autoUpdater.on('checking-for-update', () => {

Loading…
Cancel
Save