1
0
mirror of https://github.com/S2-/gitlit synced 2025-08-02 20:30:05 +02:00

13 Commits

Author SHA1 Message Date
s2
a259bd3e14 2.0.11 2020-10-16 12:01:12 +02:00
s2
e3ed1c6e44 update node modules 2020-10-16 12:00:49 +02:00
s2
5d60c8baac 2.0.10 2020-09-13 12:53:00 +02:00
s2
8afc7fdac1 update node modules 2020-09-13 12:52:30 +02:00
s2
e934617a03 ask if the update should be downloaded 2020-09-13 12:52:22 +02:00
s2
9f696e12f9 2.0.9 2020-09-13 10:24:36 +02:00
s2
b326c45593 update node modules 2020-09-13 10:24:23 +02:00
s2
c905040f0e 2.0.8 2020-07-21 14:29:51 +02:00
s2
a171760bd6 update npm modules 2020-07-21 14:29:38 +02:00
s2
ce50a38e35 2.0.7 2020-07-07 11:50:30 +02:00
s2
133f72df2a fix updater 2020-07-07 11:50:21 +02:00
s2
bebaf95f70 2.0.6 2020-07-07 10:42:56 +02:00
s2
e719261427 update to latest electron version 2020-07-07 10:40:27 +02:00
5 changed files with 1194 additions and 1679 deletions

View File

@@ -2,6 +2,8 @@
const ipcRenderer = require('electron').ipcRenderer; const ipcRenderer = require('electron').ipcRenderer;
const remote = require('electron').remote; const remote = require('electron').remote;
const electronFind = require('electron-find'); const electronFind = require('electron-find');
const dialog = remote.require('electron').dialog;
let findInPage = new electronFind.FindInPage(remote.getCurrentWebContents()); let findInPage = new electronFind.FindInPage(remote.getCurrentWebContents());
let firstRun = true; let firstRun = true;
@@ -11,15 +13,18 @@
//update stuff //update stuff
ipcRenderer.on('update', (event, state) => { ipcRenderer.on('update', (event, state) => {
if (state.event === 'updateAvailable') { if (state.event === 'updateAvailable') {
$('.js-updatenotice').text(`New version ${state.version} available. Downloading...`); $('.js-updatenotice').text(`New version ${state.version} available. Click here to download.`);
$('.js-updatenotice').prop('disabled', true);
$('.js-updatenotice').show(); $('.js-updatenotice').show();
$('.js-updatenotice').prop('disabled', false);
$('.js-updatenotice').prop('state', 'ready-to-download');
$('.js-updatenotice').data('asset', state.asset);
} }
if (state.event === 'updateReadyToInstall') { if (state.event === 'updateReadyToInstall') {
$('.js-updatenotice').text(`New version ready to install. Click here to start installer.`); $('.js-updatenotice').text(`New version ready to install. Click here to start installer.`);
$('.js-updatenotice').show(); $('.js-updatenotice').show();
$('.js-updatenotice').prop('disabled', false); $('.js-updatenotice').prop('disabled', false);
$('.js-updatenotice').prop('state', 'ready-to-install');
$('.js-updatenotice').data('file', state.file); $('.js-updatenotice').data('file', state.file);
} }
}); });
@@ -29,9 +34,16 @@
if ($('.js-updatenotice').prop('disabled')) { if ($('.js-updatenotice').prop('disabled')) {
return; return;
} }
$('.js-updatenotice').prop('disabled', true);
$('.js-updatenotice').text(`Launching installer...`); if ($('.js-updatenotice').prop('state') === 'ready-to-download') {
ipcRenderer.send('installUpdate', $('.js-updatenotice').data('file')); $('.js-updatenotice').prop('disabled', true);
$('.js-updatenotice').text(`Downloading new version...`);
ipcRenderer.send('downloadUpdate', $('.js-updatenotice').data('asset'));
} else if ($('.js-updatenotice').prop('state') === 'ready-to-install') {
$('.js-updatenotice').prop('disabled', true);
$('.js-updatenotice').text(`Launching installer...`);
ipcRenderer.send('installUpdate', $('.js-updatenotice').data('file'));
}
}); });
//end update stuff //end update stuff
@@ -121,12 +133,15 @@
$(document).on('click', '.js-open-folder', (ev) => { $(document).on('click', '.js-open-folder', (ev) => {
ev.preventDefault(); ev.preventDefault();
$('.js-open-folder-input').trigger('click');
});
$(document).on('change', '.js-open-folder-input', (ev) => { dialog.showOpenDialog({
ev.preventDefault(); properties: ['openDirectory']
ipcRenderer.send('restart', $('.js-open-folder-input')[0].files[0].path); })
.then((path) => {
if (path && path.filePaths.length > 0) {
ipcRenderer.send('restart', path.filePaths[0]);
};
});
}); });
$(document).on('keypress', (ev) => { $(document).on('keypress', (ev) => {

View File

@@ -26,9 +26,9 @@ if (process.platform === 'win32') {
gau.onUpdateAvailable = (version, asset) => { gau.onUpdateAvailable = (version, asset) => {
win.webContents.send('update', { win.webContents.send('update', {
event: 'updateAvailable', event: 'updateAvailable',
version: version version: version,
asset: asset
}); });
gau.downloadNewVersion(asset);
}; };
gau.onNewVersionReadyToInstall = (file) => { gau.onNewVersionReadyToInstall = (file) => {
@@ -38,11 +38,16 @@ if (process.platform === 'win32') {
}); });
}; };
ipcMain.on('downloadUpdate', (event, asset) => {
gau.downloadNewVersion(asset);
});
ipcMain.on('installUpdate', (event, file) => { ipcMain.on('installUpdate', (event, file) => {
gau.executeUpdate(file); gau.executeUpdate(file);
win.webContents.send('update', { win.webContents.send('update', {
event: 'updateInstalling' event: 'updateInstalling'
}); });
app.quit();
}); });
}, 5000); }, 5000);
} }
@@ -162,7 +167,15 @@ function loadRepoPage() {
function createWindow() { function createWindow() {
// Create the browser window. // Create the browser window.
win = new BrowserWindow({title: 'gitlit v' + app.getVersion(), width: 800, height: 700}); win = new BrowserWindow({
title: 'gitlit v' + app.getVersion(),
width: 800,
height: 700,
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true
}
});
win.setMenu(null); win.setMenu(null);
// and load the index.html of the app. // and load the index.html of the app.
@@ -259,9 +272,3 @@ ipcMain.on('restart', (event, newRepoDir) => {
app.on('ready', () => { app.on('ready', () => {
startup(createWindow); startup(createWindow);
}); });
app.on('window-all-closed', function() {
if (process.platform != 'darwin') {
app.quit();
}
});

View File

@@ -1,4 +1,3 @@
<div class="text-center"> <div class="text-center">
<a class="btn btn-primary js-open-folder" href="javascript:///">Open another folder</a> <a class="btn btn-primary js-open-folder" href="javascript:///">Open another folder</a>
<input type="file" style="display: none" class="js-open-folder-input" webkitdirectory />
</div> </div>

2798
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "gitlit", "name": "gitlit",
"version": "2.0.5", "version": "2.0.11",
"description": "", "description": "",
"main": "app/main.js", "main": "app/main.js",
"build": { "build": {
@@ -27,13 +27,13 @@
} }
}, },
"dependencies": { "dependencies": {
"animate.css": "^3.5.2", "animate.css": "^4.1.1",
"bootstrap": "^4.5.0", "bootstrap": "^4.5.3",
"ejs": "^2.7.4", "ejs": "^3.1.5",
"ejs-render-remote": "^1.0.13", "ejs-render-remote": "^1.0.13",
"electron-find": "^1.0.6", "electron-find": "^1.0.6",
"electron-localshortcut": "^3.2.1", "electron-localshortcut": "^3.2.1",
"github-app-updater": "^1.0.2", "github-app-updater": "^1.0.5",
"jquery": "^3.5.1", "jquery": "^3.5.1",
"material-design-icons": "^3.0.1", "material-design-icons": "^3.0.1",
"minimist": "^1.2.5", "minimist": "^1.2.5",
@@ -42,8 +42,8 @@
"popper.js": "^1.16.1" "popper.js": "^1.16.1"
}, },
"devDependencies": { "devDependencies": {
"electron": "^3.1.13", "electron": "^10.1.3",
"electron-builder": "^20.44.4" "electron-builder": "^22.9.1"
}, },
"scripts": { "scripts": {
"start": "electron .", "start": "electron .",