diff --git a/.travis.yml b/.travis.yml index 67130cba..ef8572c5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,6 +29,7 @@ before_install: sudo apt-get update -qq; sudo apt-get install -qq libxml2-dev; sudo apt-get install -qq libappindicator1; + sudo apt-get install -qq rpm; fi install: - git config --global core.autocrlf input diff --git a/README.md b/README.md index 2db13eb1..e814fadd 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,14 @@

Donate with PayPal + MIT Licence Gitter Release - MIT Licence + +

+

+ Travis CI + AppVeyor CI

@@ -30,7 +35,7 @@ ![Rambox](https://raw.githubusercontent.com/saenzramiro/rambox/master/resources/screenshots/mac.png) -## Services available - 44 +## Services available - 45 WhatsApp Messenger @@ -50,6 +55,7 @@ Discord Noysi Outlook +Outlook 365 TutaNota Hushmail BearyChat diff --git a/app/store/ServicesList.js b/app/store/ServicesList.js index bbc179f5..b989fe28 100644 --- a/app/store/ServicesList.js +++ b/app/store/ServicesList.js @@ -36,7 +36,7 @@ Ext.define('Rambox.store.ServicesList', { ,description: 'Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams.' ,url: 'https://___.slack.com/' ,type: 'messaging' - ,js_unread: 'function checkUnread(){var t=0;$(".unread_msgs").each(function() { t += parseInt($(this).html()) });$("#im-list .unread_highlights").each(function() { t += parseInt($(this).html()) });updateBadge(t)}function updateBadge(e){e>=1?document.title="("+e+") "+originalTitle:document.title=originalTitle}var originalTitle=document.title;setInterval(checkUnread,3000);' + ,js_unread: 'function checkUnread(){var a=0,b=0;$(".unread_msgs").each(function(){a+=parseInt($(this).html())}),$(".unread_highlights").each(function(){b+=parseInt($(this).html())}),updateBadge(a,b)}function updateBadge(a,b){var c=b>0?"("+b+") ":a>0?"(•) ":"";document.title=c.originalTitle}var originalTitle=document.title;setInterval(checkUnread,3000);' }, { id: 'noysi' diff --git a/package.json b/package.json index 0481f96e..27084815 100644 --- a/package.json +++ b/package.json @@ -91,14 +91,11 @@ "linux": { "target": [ "AppImage", - "deb", + "deb", + "rpm", "zip", "tar.gz" ], - "depends": [ - "libappindicator1", - "libnotify-bin" - ], "icon": "./resources/Icon.png" } },