custom mattermost desktop application
Go to file
Dean Whillier 28bf5ce08d
Merge pull request #954 from mattermost/MM-14176
[MM-14176] Fix restart after quitting in full screen
2019-03-26 09:56:45 -04:00
.circleci Switch back from yarn to npm 2019-01-07 23:32:01 +09:00
.github/ISSUE_TEMPLATE Update bug_report.md 2018-05-22 09:37:47 -04:00
.vscode Fix Mocha debug config 2019-03-12 23:45:52 +09:00
builds/pr basic jenkinsfile for pull requests 2018-05-04 01:20:53 -04:00
docs Switch back from yarn to npm 2019-01-07 23:32:01 +09:00
resources Update syntax for GPO DefaultServerList (#944) 2019-03-08 12:27:19 +01:00
scripts Add eslint-plugin-eslint-comments 2019-03-12 23:31:45 +09:00
src Merge pull request #954 from mattermost/MM-14176 2019-03-26 09:56:45 -04:00
test MM-14446: consider subpath when evaluating if url is internal (#946) 2019-03-15 20:20:41 +01:00
.editorconfig Force to use LF and add editorconfig 2016-02-26 00:07:04 +09:00
.eslintignore Fix tests 2017-03-06 21:31:17 +09:00
.eslintrc-webapp.json Update webapp eslint config 2018-12-25 23:31:14 +09:00
.eslintrc.json MM-14446: consider subpath when evaluating if url is internal (#946) 2019-03-15 20:20:41 +01:00
.gitignore Switch back from yarn to npm 2019-01-07 23:32:01 +09:00
babel.config.js Upgrade babel, webpack and storybook stack 2018-12-04 23:35:14 +09:00
CHANGELOG.md Update CHANGELOG.md 2019-03-20 09:36:44 -04:00
CONTRIBUTING.md Update CONTRIBUTING.md 2018-05-25 00:05:47 +09:00
electron-builder.json GH-848 Add flag to enable MacOS dark mode. 2019-02-16 13:51:51 -08:00
ISSUE_TEMPLATE.md Tweak ISSUE_TEMPLATE.md 2018-03-13 00:50:42 +09:00
LICENSE.txt Change app author to Mattermost 2017-07-10 22:19:37 +09:00
NOTICE.txt Update NOTICE.txt 2018-12-31 23:41:36 -08:00
package-lock.json Add eslint-plugin-eslint-comments 2019-03-12 23:31:45 +09:00
package.json Add eslint-plugin-eslint-comments 2019-03-12 23:31:45 +09:00
PULL_REQUEST_TEMPLATE.md Update PULL_REQUEST_TEMPLATE.md for eslint 2016-11-07 22:00:21 +09:00
README.md Update README.md 2018-07-11 21:14:38 +02:00
TESTING.md Update TESTING.md 2017-11-17 11:31:35 -05:00
webpack.config.base.js Add eslint-plugin-eslint-comments 2019-03-12 23:31:45 +09:00
webpack.config.main.js Add eslint-plugin-eslint-comments 2019-03-12 23:31:45 +09:00
webpack.config.renderer.js Add eslint-plugin-eslint-comments 2019-03-12 23:31:45 +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.

screenshot_20

Circle CI

Features

Desktop integration

  • Tabs for multiple teams across multiple servers
  • Desktop Notifications
    • Windows 10: Toast
    • Windows 7-8.1: Popup like Toast
    • 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. On the first launch, please input name and URL for your Mattermost server. For example, myserver : https://mattermost.example.com.

Quit

Ctrl or Command + Q to quit.

Configuration

You can show the dialog from menu bar.

Configuration will be saved into Electron's userData directory:

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

A custom data directory location can be specified with:

  • Mattermost.exe --args --data-dir C:\my-mattermost-data on Windows
  • open /Applications/Mattermost.app/ --args --data-dir ~/my-mattermost-data/ on macOS
  • ./mattermost-desktop --args --data-dir ~/my-mattermost-data/ 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 a proxy, or you can set up a proxy by the following command line options.

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

On Windows, please make sure to add -- before options. For example, Mattermost.exe -- --proxy-server=....

Contributing

Please see CONTRIBUTING.md.

Development

Please see docs/development.md.