Commit 87a8c9c6 authored by 神楽坂玲奈's avatar 神楽坂玲奈

auto update

parent da6b2821
...@@ -25,7 +25,6 @@ addons: ...@@ -25,7 +25,6 @@ addons:
cache: cache:
directories: directories:
- node_modules - node_modules
- app/node_modules
- $HOME/.electron - $HOME/.electron
- $HOME/.cache - $HOME/.cache
......
<nav class="navbar navbar-dark bg-inverse" [class.darwin]="platform == 'darwin'"> <nav class="navbar navbar-dark bg-inverse" [class.darwin]="platform == 'darwin'">
<a class="navbar-brand" href="#">MyCard</a> <a class="navbar-brand" href="#">MyCard 1</a>
<ul class="nav navbar-nav"> <ul class="nav navbar-nav">
<li *ngIf="!loginService.user" class="nav-item active"> <li *ngIf="!loginService.user" class="nav-item active">
<a class="nav-link" href="#">登录<span class="sr-only">(current)</span></a> <a class="nav-link" href="#">登录<span class="sr-only">(current)</span></a>
......
...@@ -20,7 +20,6 @@ environment: ...@@ -20,7 +20,6 @@ environment:
cache: cache:
- node_modules - node_modules
- app\node_modules
- '%APPDATA%\npm-cache' - '%APPDATA%\npm-cache'
- '%USERPROFILE%\.electron' - '%USERPROFILE%\.electron'
......
...@@ -2,19 +2,20 @@ ...@@ -2,19 +2,20 @@
const {ipcMain, app, BrowserWindow} = require('electron'); const {ipcMain, app, BrowserWindow} = require('electron');
const {autoUpdater} = require("electron-auto-updater"); const {autoUpdater} = require("electron-auto-updater");
const child_process = require('child_process');
const path = require('path');
if (process.platform == 'darwin') { if (process.platform == 'darwin') {
try { try {
autoUpdater.setFeedURL("https://wudizhanche.mycard.moe/update"); autoUpdater.setFeedURL("https://wudizhanche.mycard.moe/update");
} catch (err) { } catch (err) {
} }
} }
autoUpdater.on('error', (event)=>console.log('error', event)); autoUpdater.on('error', (event)=>console.log('error', event));
autoUpdater.on('checking-for-update', (event)=>console.log('checking-for-update', event)); autoUpdater.on('checking-for-update', (event)=>console.log('checking-for-update'));
autoUpdater.on('update-available', (event)=>console.log('update-available', event)); autoUpdater.on('update-available', (event)=>console.log('update-available'));
autoUpdater.on('update-not-available', (event)=>console.log('update-not-available', event)); autoUpdater.on('update-not-available', (event)=>console.log('update-not-available'));
let updateWindow; let updateWindow;
autoUpdater.on('update-downloaded', (event)=> { autoUpdater.on('update-downloaded', (event)=> {
...@@ -34,78 +35,6 @@ autoUpdater.on('update-downloaded', (event)=> { ...@@ -34,78 +35,6 @@ autoUpdater.on('update-downloaded', (event)=> {
}) })
}); });
const child_process = require('child_process');
const path = require('path');
// this should be placed at top of main.js to handle setup events quickly
if (handleSquirrelEvent() || handleElevate()) {
// squirrel event handled and app will exit in 1000ms, so don't do anything else
return;
}
function handleSquirrelEvent() {
if (process.argv.length === 1) {
return false;
}
const ChildProcess = require('child_process');
const path = require('path');
const appFolder = path.resolve(process.execPath, '..');
const rootAtomFolder = path.resolve(appFolder, '..');
const updateDotExe = path.resolve(path.join(rootAtomFolder, 'Update.exe'));
const exeName = path.basename(process.execPath);
const spawn = function (command, args) {
let spawnedProcess, error;
try {
spawnedProcess = ChildProcess.spawn(command, args, {detached: true});
} catch (error) {
}
return spawnedProcess;
};
const spawnUpdate = function (args) {
return spawn(updateDotExe, args);
};
const squirrelEvent = process.argv[1];
switch (squirrelEvent) {
case '--squirrel-install':
case '--squirrel-updated':
// Optionally do things such as:
// - Add your .exe to the PATH
// - Write to the registry for things like file associations and
// explorer context menus
// Install desktop and start menu shortcuts
spawnUpdate(['--createShortcut', exeName]);
setTimeout(app.quit, 1000);
return true;
case '--squirrel-uninstall':
// Undo anything you did in the --squirrel-install and
// --squirrel-updated handlers
// Remove desktop and start menu shortcuts
spawnUpdate(['--removeShortcut', exeName]);
setTimeout(app.quit, 1000);
return true;
case '--squirrel-obsolete':
// This is called on the outgoing version of your app before
// we update to the new version - it's the opposite of
// --squirrel-updated
app.quit();
return true;
}
}
function handleElevate() { function handleElevate() {
if (process.argv[1] == '-e') { if (process.argv[1] == '-e') {
app.dock.hide(); app.dock.hide();
...@@ -119,26 +48,23 @@ function handleElevate() { ...@@ -119,26 +48,23 @@ function handleElevate() {
} }
} }
if (handleElevate()) {
return;
}
function createAria2c() { function createAria2c() {
let aria2c_path; let aria2c_path;
switch (process.platform) { switch (process.platform) {
case 'win32': case 'win32':
aria2c_path = path.join(process.execPath, '..', '..', 'aria2c.exe'); aria2c_path = path.join(process.resourcesPath, 'bin', 'aria2c.exe');
break; break;
case 'darwin': case 'darwin':
aria2c_path = 'aria2c'; // for debug aria2c_path = path.join(process.resourcesPath, 'bin', 'aria2c');
break; break;
default: default:
throw 'unsupported platform'; throw 'unsupported platform';
} }
//--split=10 --min-split-size=1M --max-connection-per-server=10 return child_process.spawn(aria2c_path, ['--enable-rpc', '--rpc-allow-origin-all', "--continue", "--split=10", "--min-split-size=1M", "--max-connection-per-server=10"], {stdio: 'ignore'});
let aria2c = child_process.spawn(aria2c_path,
['--enable-rpc', '--rpc-allow-origin-all', "--continue", "--split=10", "--min-split-size=1M", "--max-connection-per-server=10"],
{stdio: 'ignore'});
aria2c.on('data', (data)=> {
console.log(data);
});
return aria2c;
} }
const aria2c = createAria2c(); const aria2c = createAria2c();
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
"description": "mycard", "description": "mycard",
"author": "zh99998 <zh99998@gmail.com>", "author": "zh99998 <zh99998@gmail.com>",
"homepage": "https://mycard.moe", "homepage": "https://mycard.moe",
"version": "3.0.0-dev.6", "version": "3.0.0-dev.7",
"repository": "github:mycard/mycard", "repository": "github:mycard/mycard",
"scripts": { "scripts": {
"pack": "tsc && build --dir", "pack": "tsc && build --dir",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment