├── .gitignore
├── LICENSE
├── README.md
├── doc
└── img
│ └── apps.png
├── favicon-256x256.png
├── favicon-32x32.png
├── favicon-96x96.png
├── favicon-9c67d4dc.ico
├── index.html
├── inject
└── preload.js
├── main.js
├── package.json
└── src
├── about.html
└── menus.js
/.gitignore:
--------------------------------------------------------------------------------
1 | #npm
2 | node_modules/
3 | package-lock.json
4 |
5 | #osx
6 | .DS_Store
7 |
8 |
9 | dist/
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2016 Howard.Zuo
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | teams-ubuntu
2 | ==================
3 | ![][david-url]
4 | ![][license-url]
5 |
6 | Microsoft teams for ubuntu platforms
7 |
8 | ## Background
9 |
10 | The thing force me to do this is, ubuntu platform was not supported by default, check below:
11 |
12 | 
13 |
14 | That's weird, but ok we don't mind. [electron](http://electron.atom.io/) helps.
15 |
16 | Now you can download the ubuntu version:
17 |
18 | [Microsoft-Teams-1.1.8-linux-64](https://github.com/leftstick/teams-ubuntu/releases/download/1.1.8/Microsoft-Teams-linux-x64.zip)
19 |
20 | [Microsoft-Teams-1.1.8-linux-32](https://github.com/leftstick/teams-ubuntu/releases/download/1.1.8/Microsoft-Teams-linux-ia32.zip)
21 |
22 | ## Want to contribute?
23 |
24 | First you need to clone this repo, for example:
25 |
26 | ```bash
27 | git clone https://github.com/leftstick/teams-ubuntu.git
28 | ```
29 |
30 | Then, install dependencies
31 |
32 | ```bash
33 | cd teams-ubuntu
34 | npm install
35 | ```
36 |
37 | Now, you are free to launch it:
38 |
39 | ```bash
40 | npm start
41 | ```
42 |
43 | ## LICENSE ##
44 |
45 | [MIT License](https://raw.githubusercontent.com/leftstick/teams-ubuntu/master/LICENSE)
46 |
47 |
48 | [david-url]: https://david-dm.org/leftstick/teams-ubuntu.png
49 | [license-url]: https://img.shields.io/github/license/leftstick/teams-ubuntu.svg
50 |
--------------------------------------------------------------------------------
/doc/img/apps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/leftstick/teams-ubuntu/4850096ad798477d3b1ebb9b49799572efe26872/doc/img/apps.png
--------------------------------------------------------------------------------
/favicon-256x256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/leftstick/teams-ubuntu/4850096ad798477d3b1ebb9b49799572efe26872/favicon-256x256.png
--------------------------------------------------------------------------------
/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/leftstick/teams-ubuntu/4850096ad798477d3b1ebb9b49799572efe26872/favicon-32x32.png
--------------------------------------------------------------------------------
/favicon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/leftstick/teams-ubuntu/4850096ad798477d3b1ebb9b49799572efe26872/favicon-96x96.png
--------------------------------------------------------------------------------
/favicon-9c67d4dc.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/leftstick/teams-ubuntu/4850096ad798477d3b1ebb9b49799572efe26872/favicon-9c67d4dc.ico
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |