Skip to content

Commit ea9c7d8

Browse files
committed
Increase version number to 0.17.10 and Mergel Pull request. Adding Fixes
Merges Pull Request: docker-archive-public#3462 .. docker-archive-public#3692 .. docker-archive-public#4401 .. docker-archive-public#5306 They are Fix Login. and adding stuff. temporarily simplifying the building. and remove the test. add building on TC with tag. and pushing release to github.
1 parent 2ce6482 commit ea9c7d8

File tree

236 files changed

+588
-462
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

236 files changed

+588
-462
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ settings.json
2626

2727
# IDEs
2828
.idea
29+
30+
# Build Files

.travis.yml

Lines changed: 28 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,34 @@
1+
os: osx
12
sudo: false
2-
33
language: node_js
44
node_js:
5-
- "6"
6-
- "8"
7-
- "10"
8-
5+
- '10'
6+
- '12'
7+
before_script:
8+
- brew install fakeroot
9+
- brew install dpkg
10+
- brew install rpm
11+
- brew install wine
12+
- npm install -g grunt-cli
13+
- npm install electron-installer-debian
14+
- npm install electron-installer-dmg
15+
- npm install electron-forge
916
cache:
1017
directories:
11-
- node_modules
12-
18+
- node_modules
19+
install: npm i
1320
script:
14-
- npm install
15-
- npm test
16-
17-
install: npm i
21+
- grunt
22+
deploy:
23+
provider: releases
24+
api_key:
25+
secure: j1InOUFsxYAMiNEERC1/KYXcC/DsfvpSlCnVTlU4yLwg7wjpb9ENYgwYQRYy58a+wA4uI08ar8jKwjEAuHhqhYqD3ztRkYGWKccGpEbMTAaGqP9JRLSP5awJUw4/VSCE/Swq7odalmWPA1JZC6+8n6ZOaLOpxJWxDm7SQnF6iQIuTIwtGrg1PeOSh1drMSYRDGC5m8dpY9Jc/EoCPEThYU+RoDqg98yPLxfKKmWAFG0iS5lAHbIZ7MGWr5g2snMRUzD7TC/BFxA/Za5i+uyxKEr4CZBXE7HqXL5qUqAlItGDDh7ioSicDhV/8y8JxbAN/RnXnevswbzY2+GD2dkjDwEDnSJ/ajJekCr3DYInMvSDGMpGpEEzcxZ1rlVZ+LPklfMyKWnOkd2M2rooPQmlaplWo6zIm/8MLETqMsO57F3W9rOcOKs+ojvIMnhPyfDubji9WI/4cR6oq+1UnBp296EYrnl6VKmewt/5+wDzKMfdxChqdvsb8hK5gVLeI9xOh/bTEdNquTsEk2G64e/HgHz35Qxv/2rXW1xUCYoiNQ1T/u2ZwHn7dUnNpZXx5b2ueT12LaWQP9YEjoaz/iYDfQOw3/X/m3Yap1gPQG9nM1leBMkexFOvGHzdxujBM4sjImnEzGE85Dp6+0TDgf5nv1JrMoHMCQT5EmJQHb329mY=
26+
file:
27+
- release/Kitematic-0.17.10-Mac.zip
28+
- release/Kitematic-0.17.10-Debian-Ubuntu.zip
29+
- release/Kitematic-0.17.10-Windows.zip
30+
skip_cleanup: true
31+
on:
32+
tags: true
33+
all_branches: true
34+
repo: Trackhe/kitematic

CONTRIBUTING.md

100644100755
File mode changed.

Gruntfile.js

100644100755
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ module.exports = function (grunt) {
234234
},
235235
debian: {
236236
options: {
237-
archive: './release/' + VERSION_FILENAME + '-Ubuntu.zip',
237+
archive: './release/' + VERSION_FILENAME + '-Debian-Ubuntu.zip',
238238
mode: 'zip',
239239
},
240240
files: [{
@@ -385,7 +385,7 @@ module.exports = function (grunt) {
385385
grunt.loadNpmTasks('grunt-electron-installer-redhat');
386386

387387
grunt.registerTask('build', ['newer:babel', 'less', 'newer:copy:dev']);
388-
grunt.registerTask('default', ['build', 'shell:electron', 'watch']);
388+
grunt.registerTask('default', ['release:debian:x64', 'release:mac', 'release:windows']);
389389

390390
grunt.registerTask('release:linux', [
391391
'clean:release', 'build', 'shell:linux_npm',

LICENSE

100644100755
File mode changed.

MAINTAINERS

100644100755
File mode changed.

Makefile

100644100755
File mode changed.

README.md

100644100755
Lines changed: 5 additions & 28 deletions

ROADMAP.md

100644100755
File mode changed.

__integration__/HubUtil-integration.js

100644100755
File mode changed.

0 commit comments

Comments
 (0)