update name

desktopautoupdate
bunsenstraat 1 year ago
parent 3196cfc2fc
commit efd1d49fe6
  1. 4
      .circleci/config.yml
  2. 6
      apps/remixdesktop/package.json
  3. 2
      apps/remixdesktop/src/plugins/appUpdater.ts

@ -258,7 +258,7 @@ jobs:
command: |
rm -rf ~/remix-project/release/.icon*
rm -rf ~/remix-project/release/builder*
cp ~/remix-project/release/Remix\ IDE.exe ~/remix-project/release/Remix\ IDE\ Setup.exe
cp ~/remix-project/release/Remix-Desktop.exe ~/remix-project/release/Remix-Desktop-Setup.exe
- store_artifacts:
path: ~/remix-project/release/
destination: remixdesktop-windows
@ -270,7 +270,7 @@ jobs:
SM_CLIENT_CERT_FILE: 'C:\Certificate_pkcs12.p12'
Signtool: 'C:\Program Files (x86)\Windows Kits\10\App Certification Kit\signtool.exe'
SSM: 'C:\Program Files\DigiCert\DigiCert One Signing Manager Tools'
RemixSetupExe: 'C:\Users\circleci\remix-project\release\Remix IDE.exe'
RemixSetupExe: 'C:\Users\circleci\remix-project\release\Remix-Desktop.exe'
build-remixdesktop-mac:
macos:

@ -1,6 +1,6 @@
{
"name": "remixdesktop",
"version": "0.0.13-Alpha",
"version": "0.0.14-Alpha",
"main": "build/main.js",
"license": "MIT",
"type": "commonjs",
@ -62,7 +62,7 @@
"@remix-project/remix-ws-templates": "^1.0.27"
},
"build": {
"productName": "Remix IDE",
"productName": "Remix-Desktop",
"appId": "org.ethereum.remix-ide",
"asar": true,
"generateUpdatesFilesForAllChannels": true,
@ -100,7 +100,7 @@
"createDesktopShortcut": "always",
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"shortcutName": "Remix IDE",
"shortcutName": "Remix Desktop",
"differentialPackage": false
},
"win": {

@ -80,7 +80,7 @@ class AppUpdaterPluginClient extends ElectronBasePluginClient {
console.log('checkForUpdates')
this.call('terminal', 'log', {
type: 'log',
value: 'Checking for updates...' + autoUpdater.getFeedURL() + autoUpdater.currentVersion,
value: 'Checking for updates...' + autoUpdater.currentVersion,
})
autoUpdater.checkForUpdates()
}

Loading…
Cancel
Save