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
package.json.lock
dist/
releases/

View File

@ -1,8 +1,8 @@
{
"name": "trycrypt",
"name": "ourcrypt",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"main": "index.js",
"scripts": {
"compile": "tsc && webpack",
"watchTs": "tsc -w",
@ -14,7 +14,6 @@
"fullBuild": "yarn run compile && yarn run distMult",
"pack": "electron-builder --dir"
},
"homepage": "https://gaminggeneration.de",
"keywords": [],
"author": {
"email": "tobi@gaminggeneration.de",
@ -64,7 +63,7 @@
"target": "AppImage",
"icon": "staticWeb/Infoscreen-Logo_256x256.png",
"category": "System",
"description": "The official trycrypt app compiled for debian"
"description": "The official infoscreen app compiled for debian"
},
"deb": {},
"directories": {

View File

@ -21,8 +21,6 @@ export default class AppUpdater {
public checkForUpdates(): Promise<boolean> {
return new Promise((resolve, reject) => {
return resolve(false);
autoUpdater.on('update-available', (ev) => {
resolve(true);
})