Skip to content

Commit 5322922

Browse files
author
Beichen Li
committed
diable dev tools
1 parent 8053695 commit 5322922

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ package-lock.json
1111
.DS_Store
1212
Thumbs.db
1313

14+
# release builds
15+
release-builds
16+
1417
# IDEs configurations
1518
# want to know more about IDE .gitignore?
1619
# @see https://www.gitignore.io/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**Desktop application for batch shrinking PDFs**
44
*Best with scanned documents!*
55

6-
![logo](src/ui/img/shrimp.png)
6+
![logo](assets/img/shrimp.png)
77

88
## Install ##
99

main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ function createWindow () {
2323
});
2424

2525
// no resize
26-
//win.setResizable(false)
26+
win.setResizable(false);
2727

2828
// and load the index.html of the app.
2929
win.loadFile(path.join('assets','index.html'));
3030

3131
// Open the DevTools.
32-
win.webContents.openDevTools();
32+
//win.webContents.openDevTools();
3333

3434
// Emitted when the window is closed.
3535
win.on('closed', function () {

0 commit comments

Comments
 (0)