Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Release 1.2.4 with correct debs; removes rpm
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandru Rosianu committed Apr 15, 2015
1 parent 4943562 commit 0074da0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.2.4
- fixed deb packages, removed rpm ones

1.2.3
- deb and rpm packages for linux

Expand Down
6 changes: 3 additions & 3 deletions gulpfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gulp.task 'pack:osx64', ['build:osx64'], ->
shelljs.rm '-f', './dist/Messenger.dmg' # appdmg fails if the dmg already exists

gulp.src []
.pipe $.appdmg
.pipe require('gulp-appdmg')
source: './assets-osx/dmg.json'
target: './dist/Messenger.dmg'

Expand Down Expand Up @@ -65,12 +65,12 @@ gulp.task 'pack:win32', ['build:win32'], ->

shelljs.mkdir '-p', './dist' # it fails if the dir doesn't exist
shelljs.rm '-f', output # it fails if the package already exists

shelljs.exec "fpm -s dir -t #{target} -a #{port} -n messengerfordesktop --after-install ./opt/MessengerForDesktop/after-install.sh --after-remove ./opt/MessengerForDesktop/after-remove.sh --license MIT --category Chat --url \"https://messengerfordesktop.com\" --description \"Beautiful desktop client for Facebook Messenger. Chat without being distracted by your feed or notifications.\" -m \"Alexandru Rosianu <me@aluxian.com>\" -p #{output} -v #{manifest.version} ./opt/MessengerForDesktop/"

# Make packages for all platforms
gulp.task 'pack:all', (callback) ->
runSequence 'pack:osx64', 'pack:win32', 'pack:linux32:deb', 'pack:linux32:rpm', 'pack:linux64:deb', 'pack:linux64:rpm', callback
runSequence 'pack:osx64', 'pack:win32', 'pack:linux32:deb', 'pack:linux64:deb', callback

# Build osx64 and run it
gulp.task 'run:osx64', ['build:osx64'], ->
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Messenger",
"version": "1.2.3",
"version": "1.2.4",
"repository": {
"type": "git",
"url": "git@github.com:Aluxian/Facebook-Messenger-Desktop.git"
Expand Down
10 changes: 5 additions & 5 deletions src/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"main": "app.html",
"name": "Messenger",
"version": "1.2.3",
"version": "1.2.4",
"window": {
"width": 800,
"height": 600,
Expand All @@ -11,9 +11,9 @@
},
"manifestUrl": "https://raw.githubusercontent.com/Aluxian/Facebook-Messenger-Desktop/master/src/package.json",
"packages": {
"osx64": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/download/v1.2.3/Messenger.dmg",
"win32": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/download/v1.2.3/MessengerSetup.exe",
"linux32": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/tag/v1.2.3",
"linux64": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/tag/v1.2.3"
"osx64": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/download/v1.2.4/Messenger.dmg",
"win32": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/download/v1.2.4/MessengerSetup.exe",
"linux32": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/download/v1.2.4/Messenger_linux32.deb",
"linux64": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/download/v1.2.4/Messenger_linux64.deb"
}
}

0 comments on commit 0074da0

Please sign in to comment.