Compare commits

..

No commits in common. "1ca7c0c3bca62986faad28e4dc1a54e1744bb631" and "49cbb85e7b5522ffc0d45c281f677c17a748e321" have entirely different histories.

3 changed files with 3 additions and 7 deletions

1
.gitignore vendored
View File

@ -2,4 +2,3 @@ node_modules/
yarn-error.log yarn-error.log
package.json.lock package.json.lock
dist/ dist/
releases/

View File

@ -1,8 +1,8 @@
{ {
"name": "trycrypt", "name": "ourcrypt",
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "",
"main": "dist/main.js", "main": "index.js",
"scripts": { "scripts": {
"compile": "tsc && webpack", "compile": "tsc && webpack",
"watchTs": "tsc -w", "watchTs": "tsc -w",
@ -14,7 +14,6 @@
"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",
@ -64,7 +63,7 @@
"target": "AppImage", "target": "AppImage",
"icon": "staticWeb/Infoscreen-Logo_256x256.png", "icon": "staticWeb/Infoscreen-Logo_256x256.png",
"category": "System", "category": "System",
"description": "The official trycrypt app compiled for debian" "description": "The official infoscreen app compiled for debian"
}, },
"deb": {}, "deb": {},
"directories": { "directories": {

View File

@ -21,8 +21,6 @@ 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);
}) })