custom mattermost desktop application
Go to file
it33 b7a5b8755b Changing "menubar" to "Menu Bar"
More common phrasing
2016-03-12 09:48:21 -08:00
circle Automate release draft 2015-12-12 01:55:00 +09:00
docker Update Electron to 0.36.2 2015-12-27 00:55:21 +09:00
docs Documenting Windows functionality for testing 2016-03-12 09:46:39 -08:00
resources ディレクトリの整理 2015-11-03 18:39:43 +09:00
src Changing "menubar" to "Menu Bar" 2016-03-12 09:48:21 -08:00
test Use webpack to build 2016-02-09 20:31:37 +09:00
.gitignore Use webpack to build 2016-02-09 20:31:37 +09:00
CHANGELOG.md Minor fix for CHANGELOG.md 2016-03-11 23:50:42 +09:00
circle.yml Cache src/node_modules in CircleCI 2016-02-13 21:25:36 +09:00
CONTRIBUTING.md Introduce the Feature Idea forum 2016-03-12 00:22:06 +09:00
gulpfile.js Don't prettify dist directory 2016-02-14 23:00:19 +09:00
LICENSE READMEとライセンスを追加 2015-10-10 00:40:41 +09:00
package.json Update version to 1.0.7 2016-02-20 21:47:49 +09:00
README.md Merge pull request #69 from mattermost/fixing-gif 2016-03-13 00:37:09 +09:00

Mattermost Desktop (beta)

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/setup.md.

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

Quit

Ctrl or Command + Q to quit.

Configuration

You can show the dialog from menu bar. (On Windows, please press Alt key to show the menu bar.)

Configuration will be saved into Electron's userData directory:

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

Testing and Development

Node.js is required to test this app.

Simple testing

  1. Clone or download the source code.
  2. Run npm install.
  3. Run npm start.

When you edit src/** files, please execute npm run build before npm start.

Development

npm run watch

Reload the app automatically when you have saved source codes.

npm test

Run tests with Mocha.

Packaging

You can package this app with following commands. Packages will be created in release directory.

$ npm run package (for your platform)
$ npm run package:windows (Requires Windows or Wine)
$ npm run package:osx (Requires OS X or Linux)
$ npm run package:linux
$ npm run package:all (Packages for all platform)

Contributing

Please see CONTRIBUTING.md.