Skip to content

Commit

Permalink
better directives, smaller window
Browse files Browse the repository at this point in the history
  • Loading branch information
nickzuber committed Sep 30, 2023
1 parent c0649e1 commit 8026bc7
Showing 1 changed file with 23 additions and 8 deletions.
31 changes: 23 additions & 8 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const path = require("path");
const iconPath = path.join(__dirname, "iconTemplate.png");

const isLocal = false;
const URL = isLocal ? "http://localhost:3000/appv2" : "https://getskipper.dev";
const URL = isLocal ? "http://localhost:3000/app" : "https://getskipper.dev/app";

// Handle creating/removing shortcuts on Windows when installing/uninstalling.
if (require("electron-squirrel-startup")) {
Expand All @@ -28,8 +28,8 @@ function createMenuItem() {
contextIsolation: true,
resizable: false,
transparent: true,
width: 650,
height: 660,
width: 580,
height: 620,
alwaysOnTop: true,
frame: false,

Expand All @@ -41,21 +41,36 @@ function createMenuItem() {
});

// Close the menu window when the user is changing windows.
// mb.app.on("browser-window-blur", () => {
// mb.hideWindow();
// });
mb.app.on("browser-window-blur", () => {
mb.hideWindow();
});

mb.on("ready", () => {
console.log("menubar app is ready");
mb.window.webContents.openDevTools();
// mb.window.webContents.openDevTools();

// https://www.electronjs.org/docs/latest/tutorial/security#csp-http-headers
session.defaultSession.webRequest.onHeadersReceived((details, callback) => {
callback({
responseHeaders: {
...details.responseHeaders,
"Content-Security-Policy": [
"default-src https://getskipper.dev https://fonts.googleapis.com https://api.github.com https://github.com https://github.githubassets.com https://avatars.githubusercontent.com 'none'",
`
; default-src
https://getskipper.dev
https://gstatic.com
https://fonts.gstatic.com
https://fonts.googleapis.com
https://googleapis.com
https://api.github.com
https://github.com
https://github.githubassets.com
https://avatars.githubusercontent.com
https://okta.com
https://*.okta.com
https://oktacdn.com
https://*.oktacdn.com
`,
],
},
});
Expand Down

0 comments on commit 8026bc7

Please sign in to comment.