├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── app.html ├── fonts │ ├── 1YwB1sO8YE1Lyjf12WNiUA.woff2 │ └── UyBMtLsHKBKXelqf4x7VRQ.woff2 ├── helpers │ ├── context_menu.js │ └── external_links.js ├── images │ ├── 512x512.png │ ├── add.svg │ ├── applogo.svg │ ├── clearcache.svg │ ├── close.svg │ ├── cog.svg │ ├── cross.png │ ├── edit.svg │ ├── envelope.svg │ ├── facebook.svg │ ├── heart.svg │ ├── loading.gif │ ├── logo.png │ ├── manageyum.png │ ├── notification_off.svg │ ├── notification_on.svg │ ├── right-chevron.svg │ ├── rolling.gif │ ├── services │ │ ├── asana.png │ │ ├── asana.svg │ │ ├── basecamp.png │ │ ├── bitbucket.svg │ │ ├── chatwork.png │ │ ├── chatwork.svg │ │ ├── ciscospark.png │ │ ├── ciscospark.svg │ │ ├── closedotio.svg │ │ ├── confluence.png │ │ ├── coupleme.png │ │ ├── coupleme.svg │ │ ├── custom_app.svg │ │ ├── defaultIntegration.png │ │ ├── defaultIntegration.svg │ │ ├── dingtalk.png │ │ ├── dingtalk.svg │ │ ├── discord.png │ │ ├── discord.svg │ │ ├── evernote.png │ │ ├── facebookpages.png │ │ ├── facebookpages.svg │ │ ├── flowdock.png │ │ ├── flowdock.svg │ │ ├── freshdesk.png │ │ ├── github.png │ │ ├── gitter.png │ │ ├── gitter.svg │ │ ├── gmail.svg │ │ ├── google_calendar.png │ │ ├── google_drive.png │ │ ├── googlegmail.png │ │ ├── googleinbox.png │ │ ├── grape.png │ │ ├── grape.svg │ │ ├── groupme.png │ │ ├── groupme.svg │ │ ├── hangouts.png │ │ ├── hangouts.svg │ │ ├── helpscout.svg │ │ ├── hibox.png │ │ ├── hibox.svg │ │ ├── hipchat.png │ │ ├── hipchat.svg │ │ ├── hubspot.svg │ │ ├── icq.png │ │ ├── icq.svg │ │ ├── inbox.svg │ │ ├── intercom.png │ │ ├── intercom.svg │ │ ├── irccloud.png │ │ ├── irccloud.svg │ │ ├── jira.png │ │ ├── linkedin.png │ │ ├── linkedin.svg │ │ ├── mattermost.png │ │ ├── mattermost.svg │ │ ├── messenger.png │ │ ├── messenger.svg │ │ ├── mysms.png │ │ ├── mysms.svg │ │ ├── olark.svg │ │ ├── outlook.png │ │ ├── outlook.svg │ │ ├── producthunt.png │ │ ├── pura.png │ │ ├── rocketchat.png │ │ ├── rocketchat.svg │ │ ├── salesforce.png │ │ ├── salesforce.svg │ │ ├── skype.png │ │ ├── skype.svg │ │ ├── slack.png │ │ ├── slack.svg │ │ ├── steamchat.png │ │ ├── steamchat.svg │ │ ├── teamwork.png │ │ ├── teamwork.svg │ │ ├── telegram.png │ │ ├── telegram.svg │ │ ├── todoist.png │ │ ├── trello.svg │ │ ├── tweetdeck.png │ │ ├── tweetdeck.svg │ │ ├── twitter.svg │ │ ├── vk.png │ │ ├── vk.svg │ │ ├── wechat.png │ │ ├── wechat.svg │ │ ├── whatsapp.png │ │ ├── whatsapp.svg │ │ ├── wire.png │ │ ├── wire.svg │ │ ├── wunderlist.png │ │ ├── yahoomessenger.png │ │ ├── yahoomessenger.svg │ │ ├── zendesk.png │ │ └── zendesk.svg │ ├── twitter.svg │ └── windock │ │ ├── win-dock-alert-1.png │ │ ├── win-dock-alert-10.png │ │ ├── win-dock-alert-2.png │ │ ├── win-dock-alert-3.png │ │ ├── win-dock-alert-4.png │ │ ├── win-dock-alert-5.png │ │ ├── win-dock-alert-6.png │ │ ├── win-dock-alert-7.png │ │ ├── win-dock-alert-8.png │ │ ├── win-dock-alert-9.png │ │ └── win-dock-alert.png ├── package.json ├── src │ ├── app.js │ ├── auth │ │ ├── auth.html │ │ ├── forgotpassword.controller.js │ │ ├── forgotpassword.html │ │ ├── login.controller.js │ │ ├── login.html │ │ ├── loginform.html │ │ ├── register.controller.js │ │ └── register.html │ ├── components │ │ └── APIInterceptor.service.js │ ├── enabledServices │ │ ├── enabledServices.controller.js │ │ └── enabledServices.html │ ├── home │ │ ├── home.controller.js │ │ └── home.html │ ├── index │ │ └── index.html │ ├── notificationcenter │ │ ├── notificationCenter.controller.js │ │ └── notificationCenter.html │ ├── services │ │ ├── addNewService.html │ │ ├── deleteProfile.html │ │ ├── dynamicModal.html │ │ ├── editService.html │ │ ├── myModalContent.html │ │ ├── preloaders │ │ │ ├── asana.js │ │ │ ├── basecamp.js │ │ │ ├── bitbucket.js │ │ │ ├── closedotio.js │ │ │ ├── confluence.js │ │ │ ├── css │ │ │ │ └── slack.css │ │ │ ├── custom_app.js │ │ │ ├── evernote.js │ │ │ ├── freshdesk.js │ │ │ ├── github.js │ │ │ ├── gitter.js │ │ │ ├── gmail.js │ │ │ ├── google_calendar.js │ │ │ ├── google_drive.js │ │ │ ├── hangouts.js │ │ │ ├── helpscout.js │ │ │ ├── hipchat.js │ │ │ ├── inbox.js │ │ │ ├── intercom.js │ │ │ ├── jira.js │ │ │ ├── linkedin.js │ │ │ ├── messenger.js │ │ │ ├── olark.js │ │ │ ├── outlook.js │ │ │ ├── producthunt.js │ │ │ ├── pura.js │ │ │ ├── salesforce.js │ │ │ ├── skype.js │ │ │ ├── slack.js │ │ │ ├── teamwork.js │ │ │ ├── telegram.js │ │ │ ├── todoist.js │ │ │ ├── trello.js │ │ │ ├── tweetdeck.js │ │ │ ├── twitter.js │ │ │ ├── utils │ │ │ │ ├── spellcheck.js │ │ │ │ └── zoom.js │ │ │ ├── whatsapp.js │ │ │ ├── wunderlist.js │ │ │ └── zendesk.js │ │ ├── referModal.html │ │ ├── registerModal.html │ │ ├── services.controller.js │ │ ├── services.factory.js │ │ ├── services.html │ │ ├── shareModal.html │ │ ├── subscription.html │ │ ├── testPreload.js │ │ ├── upgradeModal.html │ │ └── user.factory.js │ └── servicesList │ │ ├── servicesList.controller.js │ │ └── servicesList.html └── styles │ └── main.css ├── appveyor.yml ├── build └── config.gypi ├── config ├── env_development.json ├── env_production.json └── env_test.json ├── e2e ├── hello_world.e2e.js └── utils.js ├── gulpfile.js ├── package.json ├── resources ├── icons │ └── 512x512.png ├── osx │ ├── 256x256.png │ ├── _DS_Store │ ├── dmg-background.png │ ├── dmg-background@2x.png │ ├── dmg-background@2x.png.png │ ├── dmg-icon.icns │ └── icon.icns └── windows │ ├── _DS_Store │ ├── icon.ico │ └── setup-icon.ico ├── scripts ├── istanbul-reporter.js └── travis-build.sh ├── src ├── app.js ├── background.js ├── env.js ├── hello_world │ ├── hello_world.js │ └── hello_world.spec.js ├── helpers │ └── window.js ├── menu │ ├── dev_menu_template.js │ ├── edit_menu_template.js │ ├── file_menu_template.js │ ├── help_menu_template.js │ ├── view_menu_template.js │ └── window_menu_template.js ├── src │ ├── services │ │ └── services.controller.js │ └── servicesList │ │ ├── servicesList.controller.js │ │ └── servicesList.html └── stylesheets │ └── main.less └── tasks ├── build_app.js ├── build_tests.js ├── bundle.js ├── start.js └── utils.js /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 4 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.json] 13 | indent_size = 2 14 | 15 | [*.md] 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | Thumbs.db 4 | *.log 5 | *.autogenerated 6 | 7 | # ignore everything in 'app' folder what had been generated from 'src' folder 8 | /app/stylesheets 9 | /app/app.js 10 | /app/background.js 11 | /app/env.json 12 | /app/**/*.map 13 | 14 | /dist 15 | 16 | /coverage 17 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 6 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | os: 2 | - linux 3 | - osx 4 | 5 | branches: 6 | only: 7 | - master 8 | 9 | env: 10 | - NODE_VERSION="6.3.0" 11 | 12 | script: ./scripts/travis-build.sh 13 | 14 | cache: 15 | directories: 16 | - node_modules 17 | 18 | notifications: 19 | email: 20 | on_success: never 21 | on_failure: change 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015-2016 Jakub Szwacz 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Manageyum 2 | ============== 3 | 4 | 5 | # Quick start 6 | The only development dependency of this project is [Node.js](https://nodejs.org). So just make sure you have it installed. 7 | Then type few commands known to every Node developer... 8 | ``` 9 | git clone https://github.com/sivaramsi/manageyum.git 10 | cd manageyum 11 | npm install 12 | npm start 13 | ``` 14 | ... and boom! You have a running desktop application on your screen. 15 | 16 | 17 | ## Folders for application code 18 | 19 | The application is split between two main folders... 20 | 21 | `src` - this folder is intended for files which need to be transpiled or compiled (files which can't be used directly by electron). 22 | 23 | `app` - contains all static assets (put here images, css, html etc.) which don't need any pre-processing. 24 | 25 | The build process compiles all stuff from the `src` folder and puts it into the `app` folder, so after the build has finished, your `app` folder contains the full, runnable application. 26 | 27 | Treat `src` and `app` folders like two halves of one bigger thing. 28 | 29 | The drawback of this design is that `app` folder contains some files which should be git-ignored and some which shouldn't (see `.gitignore` file). But thanks to this two-folders split development builds are much (much!) faster. 30 | 31 | # Development 32 | 33 | ### Installation 34 | 35 | ``` 36 | npm install 37 | ``` 38 | It will also download Electron runtime and install dependencies for the second `package.json` file inside the `app` folder. 39 | 40 | ### Starting the app 41 | 42 | ``` 43 | npm start 44 | ``` 45 | 46 | ### Adding npm modules to your app 47 | 48 | Remember to add your dependencies to `app/package.json` file: 49 | ``` 50 | cd app 51 | npm install name_of_npm_module --save 52 | ``` 53 | 54 | # License 55 | 56 | Released under the MIT license. 57 | -------------------------------------------------------------------------------- /app/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |12 | // google 13 | // bing 14 | //
15 | 16 | (function () { 17 | 'use strict'; 18 | 19 | var shell = require('electron').shell; 20 | 21 | var supportExternalLinks = function (e) { 22 | var href; 23 | var isExternal = false; 24 | 25 | var checkDomElement = function (element) { 26 | if (element.nodeName === 'A') { 27 | href = element.getAttribute('href'); 28 | } 29 | if (element.classList.contains('js-external-link')) { 30 | isExternal = true; 31 | } 32 | if (href && isExternal) { 33 | shell.openExternal(href); 34 | e.preventDefault(); 35 | } else if (element.parentElement) { 36 | checkDomElement(element.parentElement); 37 | } 38 | }; 39 | 40 | checkDomElement(e.target); 41 | }; 42 | 43 | document.addEventListener('click', supportExternalLinks, false); 44 | }()); 45 | -------------------------------------------------------------------------------- /app/images/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/512x512.png -------------------------------------------------------------------------------- /app/images/add.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/applogo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/clearcache.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/cog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/cross.png -------------------------------------------------------------------------------- /app/images/edit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/envelope.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/heart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/loading.gif -------------------------------------------------------------------------------- /app/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/logo.png -------------------------------------------------------------------------------- /app/images/manageyum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/manageyum.png -------------------------------------------------------------------------------- /app/images/notification_off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/notification_on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/right-chevron.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43 | -------------------------------------------------------------------------------- /app/images/rolling.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/rolling.gif -------------------------------------------------------------------------------- /app/images/services/asana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/asana.png -------------------------------------------------------------------------------- /app/images/services/asana.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/services/basecamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/basecamp.png -------------------------------------------------------------------------------- /app/images/services/bitbucket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/services/chatwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/chatwork.png -------------------------------------------------------------------------------- /app/images/services/ciscospark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/ciscospark.png -------------------------------------------------------------------------------- /app/images/services/confluence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/confluence.png -------------------------------------------------------------------------------- /app/images/services/coupleme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/coupleme.png -------------------------------------------------------------------------------- /app/images/services/coupleme.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/custom_app.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/services/defaultIntegration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/defaultIntegration.png -------------------------------------------------------------------------------- /app/images/services/dingtalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/dingtalk.png -------------------------------------------------------------------------------- /app/images/services/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/discord.png -------------------------------------------------------------------------------- /app/images/services/discord.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/evernote.png -------------------------------------------------------------------------------- /app/images/services/facebookpages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/facebookpages.png -------------------------------------------------------------------------------- /app/images/services/flowdock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/flowdock.png -------------------------------------------------------------------------------- /app/images/services/flowdock.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/freshdesk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/freshdesk.png -------------------------------------------------------------------------------- /app/images/services/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/github.png -------------------------------------------------------------------------------- /app/images/services/gitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/gitter.png -------------------------------------------------------------------------------- /app/images/services/gitter.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/google_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/google_calendar.png -------------------------------------------------------------------------------- /app/images/services/google_drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/google_drive.png -------------------------------------------------------------------------------- /app/images/services/googlegmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/googlegmail.png -------------------------------------------------------------------------------- /app/images/services/googleinbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/googleinbox.png -------------------------------------------------------------------------------- /app/images/services/grape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/grape.png -------------------------------------------------------------------------------- /app/images/services/groupme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/groupme.png -------------------------------------------------------------------------------- /app/images/services/groupme.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/hangouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/hangouts.png -------------------------------------------------------------------------------- /app/images/services/helpscout.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/services/hibox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/hibox.png -------------------------------------------------------------------------------- /app/images/services/hipchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/hipchat.png -------------------------------------------------------------------------------- /app/images/services/hipchat.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/icq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/icq.png -------------------------------------------------------------------------------- /app/images/services/intercom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/intercom.png -------------------------------------------------------------------------------- /app/images/services/intercom.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/irccloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/irccloud.png -------------------------------------------------------------------------------- /app/images/services/jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/jira.png -------------------------------------------------------------------------------- /app/images/services/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/linkedin.png -------------------------------------------------------------------------------- /app/images/services/linkedin.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/mattermost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/mattermost.png -------------------------------------------------------------------------------- /app/images/services/mattermost.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/messenger.png -------------------------------------------------------------------------------- /app/images/services/messenger.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/mysms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/mysms.png -------------------------------------------------------------------------------- /app/images/services/outlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/outlook.png -------------------------------------------------------------------------------- /app/images/services/outlook.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/producthunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/producthunt.png -------------------------------------------------------------------------------- /app/images/services/pura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/pura.png -------------------------------------------------------------------------------- /app/images/services/rocketchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/rocketchat.png -------------------------------------------------------------------------------- /app/images/services/salesforce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/salesforce.png -------------------------------------------------------------------------------- /app/images/services/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/skype.png -------------------------------------------------------------------------------- /app/images/services/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/slack.png -------------------------------------------------------------------------------- /app/images/services/steamchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/steamchat.png -------------------------------------------------------------------------------- /app/images/services/teamwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/teamwork.png -------------------------------------------------------------------------------- /app/images/services/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/telegram.png -------------------------------------------------------------------------------- /app/images/services/telegram.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/todoist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/todoist.png -------------------------------------------------------------------------------- /app/images/services/trello.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/tweetdeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/tweetdeck.png -------------------------------------------------------------------------------- /app/images/services/tweetdeck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/services/twitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/services/vk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/vk.png -------------------------------------------------------------------------------- /app/images/services/vk.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/wechat.png -------------------------------------------------------------------------------- /app/images/services/wechat.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/whatsapp.png -------------------------------------------------------------------------------- /app/images/services/whatsapp.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/wire.png -------------------------------------------------------------------------------- /app/images/services/wire.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/images/services/wunderlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/wunderlist.png -------------------------------------------------------------------------------- /app/images/services/yahoomessenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/yahoomessenger.png -------------------------------------------------------------------------------- /app/images/services/zendesk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/services/zendesk.png -------------------------------------------------------------------------------- /app/images/services/zendesk.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/twitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/images/windock/win-dock-alert-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/windock/win-dock-alert-1.png -------------------------------------------------------------------------------- /app/images/windock/win-dock-alert-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/windock/win-dock-alert-10.png -------------------------------------------------------------------------------- /app/images/windock/win-dock-alert-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/windock/win-dock-alert-2.png -------------------------------------------------------------------------------- /app/images/windock/win-dock-alert-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/windock/win-dock-alert-3.png -------------------------------------------------------------------------------- /app/images/windock/win-dock-alert-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/windock/win-dock-alert-4.png -------------------------------------------------------------------------------- /app/images/windock/win-dock-alert-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/windock/win-dock-alert-5.png -------------------------------------------------------------------------------- /app/images/windock/win-dock-alert-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/windock/win-dock-alert-6.png -------------------------------------------------------------------------------- /app/images/windock/win-dock-alert-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/windock/win-dock-alert-7.png -------------------------------------------------------------------------------- /app/images/windock/win-dock-alert-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/windock/win-dock-alert-8.png -------------------------------------------------------------------------------- /app/images/windock/win-dock-alert-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/windock/win-dock-alert-9.png -------------------------------------------------------------------------------- /app/images/windock/win-dock-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sivaramsi/manageyum/835afb0d5d77e7584c3f3da313e3f6307cc35770/app/images/windock/win-dock-alert.png -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Manageyum", 3 | "productName": "Manageyum", 4 | "description": "All apps in one place", 5 | "version": "2.0.1", 6 | "author": "Vinoth David