Skip to content

Commit

Permalink
Cleanup, JS-Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ClocxHD committed Jan 5, 2018
1 parent 43bc5f1 commit 538d013
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 181 deletions.
7 changes: 2 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,14 @@ cache:
install:
- npm i
script:
- gulp
- npm run dist
before_deploy:
- git tag "$(date +'%Y%m%d%H%M%S')-$(git log --format=%h -1)"
deploy:
provider: releases
api_key:
secure: EGFC8COoSPPWWX4PLoACvbplCqK08Ihx/soTQlawrsbScZroFIDdh0imo7oZ10xfGRbaPT8EACkujf0XdIBKjsWGHT8ssKooPlZyUFq/XgZ8iZUmFqq8rapacYkA49CSq8ir8KKYtWFZ7ORgNPgmibo5fvz6SR8uHbHj7mdq3VmpvCuOxGbfaJZTm7qcDZcgNTM0JfRs8fkkfYCDG6jGB694RGVquHVRtpFGXGVGnwNkpx5buqbis8GmjK24gU/6M6h96Ps3inI/qqW6nIEUSkwxvNBhFKfHE9GVUEL+kplELqyVO6FZ+3NpR8ONghhfRxSQV+YFDNA0WhKvsxIuNY9NlM8FjQ5MyIh1jT2E194D3CuzQTAKMDyn27S4IxXT/ETMQ9391j86aYt96qvvGgxFezVzv6xIalBQAWy4KY+0O89GAPmX7IMdVPBjtIvmtzIkqwRNVp4soGzOYhmYCMzinuSji6Qn6SoY8LLmFBvYxv0V35mq+aar0mxoUne8VpeTGSHdGidonhfNTn8uaMCrg02/4nm5MvEkmT9s/SylE4X4WFge9BHSBB1JdiRtmASbA5oDk3gVv84xrMVwD+A59rFLrKA6laRNC4GzMzgBFO7LhpUk29LPP1SnWQYoIYqfBH9zIFrtH/fUyRudhfDx3PPOxnNUAwjRFVbEfeY=
file:
- dist/meistertask-electron-1.0.2-x86_64.AppImage
- dist/meistertask-electron_1.0.2_amd64.deb
- dist/meistertask-electron-1.0.3-x86_64.AppImage
- dist/meistertask-electron_1.0.3_amd64.deb
skip_cleanup: true
on:
repo: ClocxHD/MeisterTask-Electron
Expand Down
5 changes: 0 additions & 5 deletions assets/pre/jquery.js

This file was deleted.

51 changes: 0 additions & 51 deletions assets/pre/style.sass

This file was deleted.

49 changes: 0 additions & 49 deletions gulpfile.js

This file was deleted.

59 changes: 0 additions & 59 deletions index.html

This file was deleted.

10 changes: 7 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,16 @@ app.on('ready', function () {
width: 1920,
height: 1080,
resizable: true,
frame: false,
show: false,
icon: path.join(__dirname, 'assets/icons/icon.png')
icon: path.join(__dirname, 'assets/icons/icon.png'),
webPreferences: {
nodeIntegration: false
}
});

mainWindow.loadURL('file://' + __dirname + '/index.html');
mainWindow.setMenu(null);

mainWindow.loadURL('https://www.meistertask.com/app/dashboard');
mainWindow.on('ready-to-show', () => {
mainWindow.show();
});
Expand Down
11 changes: 2 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,13 @@
"name": "Fabian Thielen",
"email": "[email protected]"
},
"version": "1.0.2",
"version": "1.0.3",
"description": "Unofficial Electron Wrapper for MeisterTask",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"electron": "^1.7.10",
"electron-builder": "^19.52.1",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-clean-css": "^3.9.2",
"gulp-concat": "^2.6.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-uglify": "^3.0.0",
"pump": "^2.0.0"
"electron-builder": "^19.52.1"
},
"scripts": {
"postinstall": "install-app-deps",
Expand Down

0 comments on commit 538d013

Please sign in to comment.