Skip to content

Commit b083258

Browse files
committed
JS error fox to allow key to work
1 parent 2db486b commit b083258

File tree

5 files changed

+21
-14
lines changed

5 files changed

+21
-14
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/node_modules
1+
**/node_modules
22
/Taskana-*
33
/dist
44
.env

.vscode/settings.json

+8-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@
1919
"statusBar.border": "#586573"
2020
},
2121
"cSpell.words": [
22-
"Asana",
23-
"Taskana"
24-
]
22+
"Asana",
23+
"Dominik",
24+
"doubleclick",
25+
"keystorename",
26+
"keytar",
27+
"Schmitt",
28+
"Taskana"
29+
]
2530
}

index.js

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ function createMainWindow() {
5454
acceptFirstMouse: true,
5555
webPreferences: {
5656
nodeIntegration: false,
57+
sandbox: false, // needed to allow "require" in preload script - as per https://github.com/electron/electron/issues/35587#issuecomment-1238940105
5758
preload: path.join(__dirname, 'browser.js'),
5859
plugins: true,
5960
partition: 'persist:asana',

package-lock.json

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "taskana",
33
"productName": "Taskana",
4-
"version": "1.14.10",
4+
"version": "1.15.0",
55
"description": "Application wrapper for Asana web application",
66
"keywords": [
77
"macOS",
@@ -54,6 +54,7 @@
5454
"productName": "Taskana",
5555
"remoteBuild": false,
5656
"forceCodeSigning": true,
57+
"removePackageKeywords": false,
5758
"publish": [
5859
{
5960
"provider": "github",

0 commit comments

Comments
 (0)