Compare commits
2 Commits
49cbb85e7b
...
1ca7c0c3bc
Author | SHA1 | Date | |
---|---|---|---|
1ca7c0c3bc | |||
320c436514 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,3 +2,4 @@ node_modules/
|
|||||||
yarn-error.log
|
yarn-error.log
|
||||||
package.json.lock
|
package.json.lock
|
||||||
dist/
|
dist/
|
||||||
|
releases/
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"name": "ourcrypt",
|
"name": "trycrypt",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "dist/main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"compile": "tsc && webpack",
|
"compile": "tsc && webpack",
|
||||||
"watchTs": "tsc -w",
|
"watchTs": "tsc -w",
|
||||||
@ -14,6 +14,7 @@
|
|||||||
"fullBuild": "yarn run compile && yarn run distMult",
|
"fullBuild": "yarn run compile && yarn run distMult",
|
||||||
"pack": "electron-builder --dir"
|
"pack": "electron-builder --dir"
|
||||||
},
|
},
|
||||||
|
"homepage": "https://gaminggeneration.de",
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": {
|
"author": {
|
||||||
"email": "tobi@gaminggeneration.de",
|
"email": "tobi@gaminggeneration.de",
|
||||||
@ -63,7 +64,7 @@
|
|||||||
"target": "AppImage",
|
"target": "AppImage",
|
||||||
"icon": "staticWeb/Infoscreen-Logo_256x256.png",
|
"icon": "staticWeb/Infoscreen-Logo_256x256.png",
|
||||||
"category": "System",
|
"category": "System",
|
||||||
"description": "The official infoscreen app compiled for debian"
|
"description": "The official trycrypt app compiled for debian"
|
||||||
},
|
},
|
||||||
"deb": {},
|
"deb": {},
|
||||||
"directories": {
|
"directories": {
|
||||||
|
@ -21,6 +21,8 @@ export default class AppUpdater {
|
|||||||
|
|
||||||
public checkForUpdates(): Promise<boolean> {
|
public checkForUpdates(): Promise<boolean> {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
return resolve(false);
|
||||||
|
|
||||||
autoUpdater.on('update-available', (ev) => {
|
autoUpdater.on('update-available', (ev) => {
|
||||||
resolve(true);
|
resolve(true);
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user