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

Commit

Permalink
Merge pull request #130 from Aluxian/develop
Browse files Browse the repository at this point in the history
Merge develop 1.4.2
  • Loading branch information
Aluxian committed Jun 13, 2015
2 parents ff6c2b7 + 1e94fb0 commit 5da6d9a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 11 deletions.
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/src/vendor/
build/
dist/
cache/
/build/
/dist/
/cache/
node_modules/
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.4.2
- Fixes tray icon always appearing on OSX
- Enables Chromium plugins (could fix calling crashes)

1.4.1
- Show the linux tray icon (not tested)
- Use native clipboard (nwjs)
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.4.1",
"version": "1.4.2",
"repository": {
"type": "git",
"url": "git@github.com:Aluxian/Facebook-Messenger-Desktop.git"
Expand Down
5 changes: 4 additions & 1 deletion src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,14 @@ if (settings.checkUpdateOnLaunch) {
// Run as menu bar app
if (settings.asMenuBarAppOSX) {
win.setShowInTaskbar(false);
menus.loadTrayIcon(win);
}

// Load the app menus
menus.loadMenuBar(win)
menus.loadTrayIcon(win);
if (platform.isLinux || platform.isWindows) {
menus.loadTrayIcon(win);
}

// Adjust the default behaviour of the main window
windowBehaviour.set(win);
Expand Down
13 changes: 8 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.4.1",
"version": "1.4.2",
"app-id": "com.aluxian.messengerfordesktop",
"chromium-args": "--disable-setuid-sandbox",
"window": {
Expand All @@ -12,6 +12,9 @@
"toolbar": false,
"show": false
},
"webkit": {
"plugin": true
},
"dependencies": {
"async": "^1.0.0",
"auto-launch": "^0.1.18",
Expand All @@ -21,9 +24,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.4.1/Messenger.dmg",
"win32": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/download/v1.4.1/MessengerSetup.exe",
"linux32": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/download/v1.4.1/Messenger_linux32.deb",
"linux64": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/download/v1.4.1/Messenger_linux64.deb"
"osx64": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/download/v1.4.2/Messenger.dmg",
"win32": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/download/v1.4.2/MessengerSetup.exe",
"linux32": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/download/v1.4.2/Messenger_linux32.deb",
"linux64": "https://github.com/Aluxian/Facebook-Messenger-Desktop/releases/download/v1.4.2/Messenger_linux64.deb"
}
}

0 comments on commit 5da6d9a

Please sign in to comment.