Skip to content

Commit f60a8bd

Browse files
committed
Screenshots added to readme
1 parent 0fe9bfe commit f60a8bd

File tree

9 files changed

+27
-6
lines changed

9 files changed

+27
-6
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
/node_modules
22
/dist
3-
/out
3+
/out
4+
/build-res
5+
yarn-error.log
664 KB
Loading
783 KB
Loading
630 KB
Loading

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ Designed to create a space free from boundaries and sharp edges, tailored to the
88

99
----
1010

11+
![Shows a desktop with a window with curved corners and no border in the center displaying a mountain image.](Assets/Screenshots/screenshot_001.jpg?raw=true "Screenshot One")
12+
![Shows a desktop with two windows with curved corners and no border. One window on the left of the desktop contains a mountain image. The window on the right contains a wheat field with a hill in the background.](Assets/Screenshots/screenshot_002.jpg?raw=true "Screenshot Two")
13+
![Shows a desktop with three windows all overlapping each other. One window contains a street scene with a small food business and people outside. The second presents a narrow street with a tree at the end of it. The last window holds an image of a riverbank with a park and buildings in the distance.](Assets/Screenshots/screenshot_003.jpg?raw=true "Screenshot Three")

app/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
const { app, BrowserWindow, screen, ipcMain, dialog } = require("electron");
22
const fs = require("fs");
3+
require('v8-compile-cache');
34

45
let win;
56
let childWin;

electron-builder.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
{
22
"appId": "com.temopus.miv",
3+
"artifactName": "minimal-image-viewer-${version}.${ext}",
34
"productName": "Minimal Image Viewer",
4-
"copyright": "MINIMAL IMAGE VIEWER",
5+
"copyright": "MINIMAL IMAGE VIEWER COPYRIGHT © 2021",
6+
"compression": "maximum",
7+
"publish": [
8+
{
9+
"provider": "github",
10+
"owner": "hayhaydz"
11+
}
12+
],
513
"directories": {
614
"app": ".",
715
"output": "out",
@@ -37,7 +45,7 @@
3745
"category": "public.app-category.utilities"
3846
},
3947
"win": {
40-
"target": "nsis"
48+
"target": ["nsis", "zip"]
4149
},
4250
"linux": {
4351
"target": "AppImage",

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@
88
"test": "echo \"Error: no test specified\" && exit 1",
99
"pack": "electron-builder --dir",
1010
"dist": "electron-builder",
11-
"postinstall": "electron-builder install-app-deps"
11+
"postinstall": "electron-builder install-app-deps",
12+
"publish": "electron-builder -w -p always"
1213
},
1314
"repository": {
1415
"type": "git",
15-
"url": "git+https://github.com/hayhaydz/MIV.git"
16+
"url": "https://github.com/hayhaydz/MIV.git"
1617
},
1718
"author": "Haydon",
1819
"license": "GPL-3.0",
@@ -25,6 +26,7 @@
2526
"electron-builder": "^22.11.7"
2627
},
2728
"dependencies": {
28-
"panzoom": "^9.4.2"
29+
"panzoom": "^9.4.2",
30+
"v8-compile-cache": "^2.3.0"
2931
}
3032
}

yarn.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1751,6 +1751,11 @@ util-deprecate@~1.0.1:
17511751
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
17521752
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
17531753

1754+
v8-compile-cache@^2.3.0:
1755+
version "2.3.0"
1756+
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
1757+
integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
1758+
17541759
verror@^1.10.0:
17551760
version "1.10.0"
17561761
resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"

0 commit comments

Comments
 (0)