Skip to content

Commit 243261d

Browse files
committed
1.0.8
1 parent 92e9ffa commit 243261d

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ node_modules
33
electron
44
build
55
release
6+
release~
67
algorithm.pfx
78
app/birdex/

Gruntfile.coffee

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ grunt.loadNpmTasks 'grunt-download-electron'
1010

1111
version = require('./package.json').version
1212

13+
certificateFile = 'algorithm.pfx'
14+
certificatePassword = ''
15+
1316
grunt.initConfig
1417
clean:
1518
build: 'build'
@@ -23,7 +26,7 @@ grunt.initConfig
2326
command: path.resolve(__dirname, 'build', 'birdex.exe')
2427

2528
'download-electron':
26-
version: '0.36.3'
29+
version: '0.36.8'
2730
outputDir: 'electron'
2831

2932
copy:
@@ -40,6 +43,11 @@ grunt.initConfig
4043
cwd: 'app/'
4144
src: ['*', 'node_modules/**']
4245
dest: 'build/resources/app/'
46+
releases:
47+
expand: true
48+
cwd: 'release/'
49+
src: ['*']
50+
dest: 'release~/'
4351

4452
rcedit:
4553
exes:
@@ -69,8 +77,8 @@ grunt.initConfig
6977
owners: 'Algorithm Corporation L.P.'
7078
authors: 'Algorithm Corporation L.P.'
7179
remoteReleases: 'https://github.com/AlgorithmLLC/chat-client-electron'
72-
certificateFile: 'algorithm.pfx'
73-
certificatePassword: ''
80+
81+
signWithParams: "/a /f \"#{path.resolve(certificateFile)}\" /p \"#{certificatePassword}\" /fd sha256 /tr http://timestamp.comodoca.com/?td=sha256 /td sha256"
7482

7583
grunt.registerTask 'build', ['shell:kill', 'clean', 'download-electron', 'copy', 'rcedit', 'shell:run', 'shell:kill']
7684
grunt.registerTask 'release', ['shell:kill', 'clean', 'download-electron', 'copy', 'rcedit', 'create-windows-installer', 'clean:build']

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.7",
2+
"version": "1.0.8",
33
"dependencies": {
44
"grunt": "^0.4.5",
55
"grunt-contrib-clean": "^0.7.0",

0 commit comments

Comments
 (0)