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

6 Commits

Author SHA1 Message Date
s2
9f02f5f27c 1.4.2 2020-03-16 21:46:57 +01:00
s2
48ecb505d7 update node modules 2020-03-16 21:46:15 +01:00
s2
a04c84abb4 1.4.1 2019-06-21 14:15:57 +02:00
s2
31c19d5534 make jumbotron nicer 2019-06-21 09:31:36 +02:00
s2
171b79e355 1.4.0 2019-06-20 15:52:56 +02:00
s2
4178caa94a show splash screen on startup if passed path is not a git repo 2019-06-20 15:51:56 +02:00
6 changed files with 358 additions and 398 deletions

View File

@@ -2,6 +2,11 @@ html {
margin-bottom: 10px;
}
.jumbotron {
height: 640px;
margin-bottom: 0px;
}
.js-container {
margin: 5px;
}

View File

@@ -4,8 +4,11 @@
const electronFind = require('electron-find');
let findInPage = new electronFind.FindInPage(remote.getCurrentWebContents());
let firstRun = true;
//events
ipcRenderer.on('fileList', (event, files) => {
firstRun = false;
if (files && files.length > 0) {
ejs.preloadTemplate('templates/files.ejs')
.then(t => {
@@ -28,7 +31,12 @@
});
ipcRenderer.on('isNoGitLfsRepo', (event, repoDir) => {
$('.js-container').html(ejs.rr('templates/isNoGitLfsRepo.ejs', {repoDir: repoDir}));
if (firstRun) {
firstRun = false;
$('.js-container').html(ejs.rr('templates/firstRun.ejs', {repoDir: repoDir}));
} else {
$('.js-container').html(ejs.rr('templates/isNoGitLfsRepo.ejs', {repoDir: repoDir}));
}
});
ipcRenderer.on('notification', (event, notification) => {

View File

@@ -126,7 +126,7 @@ function loadRepoPage() {
function createWindow() {
// Create the browser window.
win = new BrowserWindow({width: 800, height: 600});
win = new BrowserWindow({width: 800, height: 700});
win.setMenu(null);
// and load the index.html of the app.

View File

@@ -0,0 +1,9 @@
<div class="jumbotron text-center">
<img src="../logo/logo.png">
<h1>gitlit</h1>
<p class="lead">Handle git lfs locks with ease</p>
<div class="text-center">
<a class="btn btn-primary btn-lg js-open-folder" href="javascript:///">Open git repository folder</a>
<input type="file" style="display: none" class="js-open-folder-input" webkitdirectory />
</div>
</div>

710
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "gitlit",
"version": "1.3.1",
"version": "1.4.2",
"description": "",
"main": "app/main.js",
"build": {
@@ -28,21 +28,21 @@
},
"dependencies": {
"animate.css": "^3.5.2",
"bootstrap": "^4.1.3",
"ejs": "^2.6.1",
"ejs-render-remote": "^1.0.7",
"bootstrap": "^4.4.1",
"ejs": "^2.7.4",
"ejs-render-remote": "^1.0.13",
"electron-find": "^1.0.6",
"electron-localshortcut": "^3.1.0",
"electron-localshortcut": "^3.2.1",
"jquery": "^3.3.1",
"material-design-icons": "^3.0.1",
"minimist": "^1.2.0",
"minimist": "^1.2.5",
"nonblockjs": "^1.0.8",
"pnotify": "^4.0.0-alpha.4",
"popper.js": "^1.14.3"
"pnotify": "^4.0.1",
"popper.js": "^1.16.1"
},
"devDependencies": {
"electron": "^3.0.3",
"electron-builder": "^20.43.0"
"electron": "^3.1.13",
"electron-builder": "^20.44.4"
},
"scripts": {
"start": "electron .",