Compare commits

..

No commits in common. "master" and "v0.3.3" have entirely different histories.

7 changed files with 11 additions and 75 deletions

View File

@ -42,7 +42,6 @@ button
max-width: 1024px max-width: 1024px
.container.fluid .container.fluid
width: 100%
max-width: 100% max-width: 100%
margin: 0 margin: 0

View File

@ -1,12 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About Sentry</title>
</head>
<body>
<p>This is a test.</p>
</body>
</html>

View File

@ -1,5 +1,5 @@
// Modules to control application life and create native browser window // Modules to control application life and create native browser window
const { app, BrowserWindow, Menu } = require('electron'); const {app, BrowserWindow} = require('electron');
const path = require('path'); const path = require('path');
function createWindow () { function createWindow () {
@ -7,8 +7,6 @@ function createWindow () {
const mainWindow = new BrowserWindow({ const mainWindow = new BrowserWindow({
width: 800, width: 800,
height: 700, height: 700,
minWidth: 735,
minHeight: 600,
webPreferences: { webPreferences: {
nodeIntegration: true, nodeIntegration: true,
contextIsolation: false, contextIsolation: false,
@ -23,10 +21,6 @@ function createWindow () {
// mainWindow.webContents.openDevTools() // mainWindow.webContents.openDevTools()
} }
// Set the application menu
const menu = require('./src/menu').createMenu(app);
Menu.setApplicationMenu(menu);
// This method will be called when Electron has finished // This method will be called when Electron has finished
// initialization and is ready to create browser windows. // initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs. // Some APIs can only be used after this event occurs.

18
package-lock.json generated
View File

@ -1,15 +1,15 @@
{ {
"name": "sentry", "name": "sentry",
"version": "0.3.3", "version": "0.3.2",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "sentry", "name": "sentry",
"version": "0.3.3", "version": "0.3.2",
"license": "BSD-2-Clause", "license": "BSD-2-Clause",
"dependencies": { "dependencies": {
"systeminformation": "^5.17.12" "systeminformation": "^5.11.15"
}, },
"devDependencies": { "devDependencies": {
"electron": "^18.2.4", "electron": "^18.2.4",
@ -4743,9 +4743,9 @@
} }
}, },
"node_modules/systeminformation": { "node_modules/systeminformation": {
"version": "5.17.12", "version": "5.12.6",
"resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.17.12.tgz", "resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.12.6.tgz",
"integrity": "sha512-I3pfMW2vue53u+X08BNxaJieaHkRoMMKjWetY9lbYJeWFaeWPO6P4FkNc4XOCX8F9vbQ0HqQ25RJoz3U/B7liw==", "integrity": "sha512-FkCvT5BOuH1OE3+8lFM25oXIYJ0CM8kq4Wgvz2jyBTrsOIgha/6gdJXgbF4rv+g0j/5wJqQLDKan7kc/p7uIvw==",
"os": [ "os": [
"darwin", "darwin",
"linux", "linux",
@ -9025,9 +9025,9 @@
"dev": true "dev": true
}, },
"systeminformation": { "systeminformation": {
"version": "5.17.12", "version": "5.12.6",
"resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.17.12.tgz", "resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.12.6.tgz",
"integrity": "sha512-I3pfMW2vue53u+X08BNxaJieaHkRoMMKjWetY9lbYJeWFaeWPO6P4FkNc4XOCX8F9vbQ0HqQ25RJoz3U/B7liw==" "integrity": "sha512-FkCvT5BOuH1OE3+8lFM25oXIYJ0CM8kq4Wgvz2jyBTrsOIgha/6gdJXgbF4rv+g0j/5wJqQLDKan7kc/p7uIvw=="
}, },
"tar": { "tar": {
"version": "6.1.11", "version": "6.1.11",

View File

@ -30,7 +30,7 @@
"grunt-twig-render": "^1.8.3" "grunt-twig-render": "^1.8.3"
}, },
"dependencies": { "dependencies": {
"systeminformation": "^5.17.12" "systeminformation": "^5.11.15"
}, },
"build": { "build": {
"appId": "tech.bitgoblin.sentry", "appId": "tech.bitgoblin.sentry",

View File

@ -1,15 +0,0 @@
const { BrowserWindow } = require('electron');
exports.about = function() {
const aboutWindow = new BrowserWindow({
width: 600,
height: 400,
webPreferences: {
nodeIntegration: true,
contextIsolation: false
}
});
// and load the about.html of the app.
aboutWindow.loadFile('public/about.html');
};

View File

@ -1,30 +0,0 @@
const electron = require('electron');
// load event handlers
const helpHandlers = require('./help');
exports.createMenu = function(app) {
return electron.Menu.buildFromTemplate([
{
label: 'File',
submenu: [
{
label: 'Close',
click: function() {
app.quit();
}
}
]
},
{
label: 'Help',
submenu: [
{
label: 'About',
click: helpHandlers.about
}
]
}
]);
};