Skip to content
This repository was archived by the owner on Apr 14, 2025. It is now read-only.

Commit 9c81beb

Browse files
committed
Fix #24
1 parent 98e82e8 commit 9c81beb

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.compilerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"plugins": [
1717
"transform-async-to-generator"
1818
],
19-
"sourceMaps": "inline"
19+
"sourceMaps": "none"
2020
}
2121
},
2222
"production": {

package.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,18 @@
5656
".idea",
5757
"resources",
5858
"out",
59-
".tresorit"
59+
".tresorit",
60+
"appveyor.yml",
61+
"build.sh",
62+
"Dockerfile",
63+
"documentation.md",
64+
"Icon",
65+
"LICENSE",
66+
"mix-manifest.json",
67+
"readme.md",
68+
"webpack.mix.js",
69+
"yarn.lock",
70+
"yarn-error.log"
6071
],
6172
"packageManager": "yarn",
6273
"icon": "./resources/images/icon/icon.png"

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ gtt.openAboutWindow = () => {
121121

122122
aboutWindow.setMenu(null);
123123

124-
aboutWindow.loadURL('file://' + __dirname + '/about.html');
124+
aboutWindow.loadURL('file://' + __dirname + '/test.html');
125125
if (debug) aboutWindow.openDevTools();
126126

127127
aboutWindow.on('closed', function () {

src/about.html renamed to src/test.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ <h6>Uses the following Open Source Software:</h6>
7474
<script type="text/javascript" src="build/app.js"></script>
7575

7676
</body>
77-
</html>
77+
</html>

0 commit comments

Comments
 (0)