custom mattermost desktop application
Go to file
Yuya Ochiai 8ae8a1bcc4 Merge pull request #358 from mattermost/jasonblais-patch-1
Update issue and pull request templates
2016-11-05 16:37:39 +09:00
circle Merge branch 'master' into dev 2016-06-17 23:39:45 +09:00
docs Fix typo for docs/development.md 2016-11-03 13:15:16 +09:00
resources Add script to create .desktop file for Linux 2016-08-25 00:33:35 +09:00
scripts Fix package name 2016-10-19 22:57:06 +09:00
src Prettify code 2016-10-28 00:42:31 +09:00
test Update tests to stablize on local machines 2016-09-29 19:42:55 +09:00
.editorconfig Force to use LF and add editorconfig 2016-02-26 00:07:04 +09:00
.gitattributes Added gitattributes to keep line endings clean 2016-08-20 22:38:34 +02:00
.gitignore Ignore npm-debug.log* 2016-11-03 00:20:21 +09:00
CHANGELOG.md Update CHANGELOG.md 2016-10-28 00:28:48 +09:00
circle.yml Update circle.yml for electron-builder 2016-10-08 17:04:12 +09:00
CONTRIBUTING.md Add request to update CHANGELOG.md and docs/*.md 2016-07-01 01:00:11 +09:00
gulpfile.js Use webpack CLI instead of gulpfile.js 2016-10-27 21:49:48 +09:00
ISSUE_TEMPLATE.md Update ISSUE_TEMPLATE.md 2016-11-03 09:58:46 -04:00
LICENSE Propose updating to Apache v2 2016-06-01 07:46:07 -07:00
package.json Add SourceMap in development mode 2016-10-27 21:49:48 +09:00
PULL_REQUEST_TEMPLATE.md Remove thank you note from PULL_REQUEST.md 2016-11-03 23:47:28 -04:00
README.md Use relative path for the screenshot 2016-10-03 21:44:36 +09:00
TESTING.md Fixing incorrect reference to Android device 2016-03-13 08:44:47 -07:00
webpack.config.base.js Add SourceMap in development mode 2016-10-27 21:49:48 +09:00
webpack.config.main.js Add SourceMap in development mode 2016-10-27 21:49:48 +09:00
webpack.config.renderer.js Add SourceMap in development mode 2016-10-27 21:49:48 +09:00

Mattermost Desktop

Native desktop application for Mattermost running on Windows, Mac and Linux.

Originally created as "electron-mattermost" by Yuya Ochiai. Developed using Electron.

Mattermost Desktop Screenshot

Circle CI

Features

Desktop integration

  • Tabs for multiple teams across multiple servers
  • Desktop Notifications
    • Windows 10: Toast
    • Windows 7-8.1: Balloon (fallback behavior, so lesser support)
    • OS X: Notification Center
    • Linux: libnotify
  • Badges for unread channels and mentions
  • Installs as native application

Pre-packaged

You don't have to install any other software. Packages are available on the releases page.

Usage

Installation

Detailed guides are available at docs.mattermost.com.

  1. Download a file from the downloads page.
  2. Launch Mattermost in the unarchived folder.
  3. After first launching, please input name and URL for your Mattermost team. For example, myteam : https://mattermost.example.com/team.

Quit

Ctrl or Command + Q to quit.

Configuration

You can show the dialog from menu bar. (Please press Alt key to show the menu bar if it disappers.)

Configuration will be saved into Electron's userData directory:

  • %APPDATA%\Mattermost on Windows
  • ~/Library/Application Support/Mattermost on OS X
  • ~/.config/Mattermost on Linux

When you upgrade from electron-mattermost, please copy config.json from electron-mattermost. Otherwise, you have to configure again.

Proxy

Normally, the application will follow your system settings to use proxy. Or you can set proxy by following command line options.

  • --proxy-server=<SERVER>:<PORT>
  • --proxy-pac-url=<URL>

Contributing

Please see CONTRIBUTING.md.

Development

Please see docs/development.md.