2017-04-15 07:06:14 +02:00
|
|
|
Web-based Desktop Client for [Mastodon][]
|
|
|
|
=========================================
|
2017-04-21 04:42:54 +02:00
|
|
|
[![npm version][npm version badge]][npm]
|
2017-04-15 21:38:47 +02:00
|
|
|
|
2017-04-18 13:55:32 +02:00
|
|
|
Mstdn is a desktop application based on mobile version Mastodon page and [Electron][] framework.
|
|
|
|
It basically uses Mastodon's mobile page and provides various desktop application features
|
|
|
|
(such as desktop notification, keybinds, multi-account support).
|
|
|
|
|
2017-04-21 04:42:54 +02:00
|
|
|
<img src="https://github.com/rhysd/ss/blob/master/Mstdn/main.png?raw=true" width="484" alt="screen shot"/>
|
|
|
|
|
2017-04-15 07:06:14 +02:00
|
|
|
Features:
|
|
|
|
|
2017-04-17 07:56:28 +02:00
|
|
|
- [x] Small window on your menubar (or isolated normal window)
|
2017-04-15 21:14:58 +02:00
|
|
|
- [x] Desktop notification
|
2017-04-20 05:06:46 +02:00
|
|
|
- [x] Customizable (and pluggable) shortcut keybinds
|
2017-04-18 13:55:32 +02:00
|
|
|
- [x] Multi-account (switching among accounts)
|
2017-04-20 05:06:46 +02:00
|
|
|
- [x] User CSS
|
2017-04-21 09:50:14 +02:00
|
|
|
- [x] Plugin architecture based on Node.js and Electron APIs
|
2017-04-15 07:06:14 +02:00
|
|
|
|
|
|
|
Mastodon is an open source project. So if you want to make a new UI, you can just fork the project,
|
|
|
|
implement your favorite UI and host it on your place. Then you can participate Mastodon networks from it.
|
|
|
|
|
2017-04-24 15:46:27 +02:00
|
|
|
However, Mastodon is a web application. So we can't go out from a browser. This small tool provides
|
|
|
|
the ability to Mastodon page in desktop application window out of browser.
|
2017-04-15 07:06:14 +02:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
### Via [npm][]
|
|
|
|
|
|
|
|
```
|
|
|
|
$ npm install -g mstdn
|
|
|
|
```
|
|
|
|
|
2017-04-24 23:41:49 +02:00
|
|
|
### Via [yarn][]
|
|
|
|
|
|
|
|
```
|
|
|
|
$ yarn global add mstdn --prefix /usr/local
|
|
|
|
```
|
|
|
|
|
2017-04-15 07:06:14 +02:00
|
|
|
### As an isolated app
|
|
|
|
|
2017-04-16 06:22:44 +02:00
|
|
|
Download a package archive from [Release page][], put unarchived app to proper place, and open it.
|
2017-04-15 07:06:14 +02:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2017-04-24 23:41:49 +02:00
|
|
|
If you installed this app via npm or yarn, below command is available to start app.
|
2017-04-15 21:38:47 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
$ open-mstdn-app
|
|
|
|
```
|
|
|
|
|
2017-04-18 13:55:32 +02:00
|
|
|
At first, a dialog which recommends to write up config is shown and JSON config file will be open in your editor.
|
2017-04-23 11:03:45 +02:00
|
|
|
You need to fill up `"name"` and `"host"` keys in first element of `"accounts"`. Please see below `accounts` section
|
|
|
|
to know how to configure the option.
|
2017-04-15 21:38:47 +02:00
|
|
|
|
2017-04-18 13:55:32 +02:00
|
|
|
Then please try to start app again. Usage is the same as web client on mobile devices.
|
|
|
|
Some shortcuts are available by default (please see below 'Customization' section).
|
2017-04-15 07:06:14 +02:00
|
|
|
|
2017-04-19 11:07:12 +02:00
|
|
|
Supported platforms are macOS (confirmed with 10.12), Linux (hopefully) and Windows (confirmed with Windows 8.1).
|
2017-04-16 16:11:12 +02:00
|
|
|
|
2017-04-24 15:46:27 +02:00
|
|
|
There are two window modes 'menubar mode' and 'normal window mode' in this app. You can switch
|
|
|
|
them with `"normal_window"` option (please see below 'Customization' section for how to configure it).
|
|
|
|
|
|
|
|
- **menubar mode**: Window is attached to menubar. You can toggle the window by clicking menubar icon or typing hot key.
|
|
|
|
Advantage of this mode is that app does not fill any workspace. You can see your timeline on demand anytime.
|
2017-04-26 03:37:58 +02:00
|
|
|
This mode is default on macOS or Linux.
|
2017-04-24 15:46:27 +02:00
|
|
|
- **normal window mode**: App starts with a normal window like a separated browser window. You can put/resize window
|
|
|
|
as you like in your workspace.
|
|
|
|
|
|
|
|
In both modes, app remembers the size and location of its window. So you need to specify window size
|
|
|
|
(or location in normal window mode) only once.
|
|
|
|
|
2017-04-30 07:50:11 +02:00
|
|
|
After starting app, you would see login page of your instance. Some instances allow to login with
|
2017-05-01 11:21:49 +02:00
|
|
|
other web services. However, Mstdn.app cannot fully support it. If you encounter some problem
|
|
|
|
with customized login feature, please try to login with normal flow instead.
|
2017-04-30 07:50:11 +02:00
|
|
|
|
2017-04-15 07:06:14 +02:00
|
|
|
## Customization
|
|
|
|
|
|
|
|
Mstdn can be customized with JSON config file at `{app dir}/config.json`
|
|
|
|
|
|
|
|
The `{app dir}` is:
|
|
|
|
|
|
|
|
- `~/Library/Application\ Support/Mstdn` for macOS
|
|
|
|
- `~/.config/Mstdn` for Linux
|
|
|
|
- `%APPDATA%\Mstdn` for Windows.
|
|
|
|
|
2017-04-15 21:38:47 +02:00
|
|
|
The JSON file can contain below key-values:
|
|
|
|
|
|
|
|
### `hot_key`
|
|
|
|
|
|
|
|
`hot_key` is a key sequence to toggle application window. The shortcut key is defined globally.
|
2017-04-18 13:55:32 +02:00
|
|
|
The format is a [Electron's accelerator](https://github.com/electron/electron/blob/master/docs/api/accelerator.md).
|
|
|
|
Please see the document to know how to configure this value.
|
2017-04-26 03:37:58 +02:00
|
|
|
Default value is `"CmdOrCtrl+Shift+Enter"`. If you want to disable, please set empty string or `null`.
|
2017-04-15 21:38:47 +02:00
|
|
|
|
|
|
|
### `icon_color`
|
|
|
|
|
|
|
|
Color of icon in menubar. `"black"` or `"white"` can be specified.
|
|
|
|
|
|
|
|
### `always_on_top`
|
|
|
|
|
|
|
|
When this value is set to `true`, the window won't be hidden if it loses a focus. Default value is `false`.
|
|
|
|
|
|
|
|
### `normal_window`
|
|
|
|
|
|
|
|
When this value is set to `true`, application will be launched as a normal window application.
|
|
|
|
If menu bar behavior does not work for you, please use set this value to `true` to avoid it.
|
2017-04-20 05:06:46 +02:00
|
|
|
Default value is `false` on macOS or Linux, `true` on Windows because window position is broken
|
|
|
|
in some version of Windows.
|
2017-04-15 21:38:47 +02:00
|
|
|
|
2017-04-19 17:45:45 +02:00
|
|
|
### `hide_menu`
|
2017-04-19 16:39:54 +02:00
|
|
|
|
|
|
|
When this value is set to `true`, the application will be launched with the
|
2017-04-19 17:45:45 +02:00
|
|
|
menubar hidden, assuming `normal_window` is also true. When set to `false`, the
|
|
|
|
menubar will be visible on launch. Default value is `false`.
|
2017-04-19 16:39:54 +02:00
|
|
|
|
2017-04-19 18:30:25 +02:00
|
|
|
On Windows, typing Alt key shows the hidden menubar.
|
|
|
|
|
2017-04-15 21:38:47 +02:00
|
|
|
### `zoom_factor`
|
|
|
|
|
|
|
|
Font zoom factor in application. It should be positive number. For example, `0.7` means `70%` font zooming.
|
2017-04-16 06:22:44 +02:00
|
|
|
Default font size is a bit bigger because the UI is originally for mobile devices. So default value is `0.9`.
|
2017-04-15 21:38:47 +02:00
|
|
|
|
|
|
|
### `accounts`
|
|
|
|
|
2017-04-18 13:55:32 +02:00
|
|
|
Array of your accounts. An element should has `"name"`, `"host"` and `"default_page"` keys.
|
2017-04-23 11:03:45 +02:00
|
|
|
|
|
|
|
`"name"` represents your screen name. If your name is `@foo` then please specify `"foo"` for it.
|
|
|
|
|
|
|
|
`"host"` represents a host part of URL of your mastodon instance. If you belong to
|
|
|
|
`https://mastodon.social`, please specify `mastodon.social`. `https://` is not necessary.
|
|
|
|
|
|
|
|
`"default_page"` is a path of page firstly shown. If `/web/notifications` is specified,
|
|
|
|
`https://{your host}/web/notifications` will be open on app starting.
|
2017-04-15 21:38:47 +02:00
|
|
|
|
|
|
|
You need to write up this config at first.
|
|
|
|
|
2017-04-20 05:06:46 +02:00
|
|
|
### `chromium_sandbox`
|
|
|
|
|
|
|
|
If `true` is specified, Chromium's native sandbox is enabled (and default value is `true`).
|
|
|
|
Sandbox provides some OS level security protection such as resource access control like tabs
|
2017-04-25 10:30:18 +02:00
|
|
|
in Chromium. However, sandbox also blocks plugins for Electron application.
|
2017-04-20 05:06:46 +02:00
|
|
|
|
|
|
|
If `false` is specified, you can use some advanced features (user CSS and key shortcut plugin).
|
|
|
|
Before setting `false` to this value, please read and understand [sandbox documentation in Electron repo][sandbox doc]
|
|
|
|
to know what you're doing.
|
|
|
|
|
2017-04-25 10:30:18 +02:00
|
|
|
Please note that this sandbox feature is different from Node.js integration in Electron. Node.js
|
|
|
|
integration is always disabled.
|
|
|
|
|
2017-04-15 21:38:47 +02:00
|
|
|
### `keymaps`
|
|
|
|
|
|
|
|
Object whose key is a key sequence and whose value is an action name.
|
|
|
|
|
2017-04-20 07:47:48 +02:00
|
|
|
| Action Name | Description | Default Key |
|
|
|
|
|-------------------|---------------------------------|-------------|
|
|
|
|
| `scroll-down` | Scroll down window | `j` |
|
|
|
|
| `scroll-up` | Scroll up window | `k` |
|
|
|
|
| `scroll-top` | Scroll up to top of window | `i` |
|
|
|
|
| `scroll-bottom` | Scroll down to bottom of window | `m` |
|
|
|
|
| `next-account` | Switch to next account | N/A |
|
|
|
|
| `prev-account` | Switch to previous account | N/A |
|
|
|
|
| `open-in-browser` | Open current page in browser | N/A |
|
2017-04-15 21:38:47 +02:00
|
|
|
|
2017-04-18 13:55:32 +02:00
|
|
|
If an action name starts with `/`, it will navigate to the path. For example,
|
|
|
|
if you set `"/web/timelines/home"` to some key shortcut and you input the key,
|
|
|
|
browser will navigate page to `https://{your host}/web/timelines/home`.
|
2017-04-15 21:38:47 +02:00
|
|
|
|
2017-04-21 04:42:54 +02:00
|
|
|
Below is a default path actions. They are corresponding the position of tab items.
|
|
|
|
|
|
|
|
| Path | Description | Default Key |
|
|
|
|
|-------------------------------|-----------------------------------|-------------|
|
|
|
|
| `/web/statuses/new` | Move to 'make a new toot' page | `1` |
|
|
|
|
| `/web/timelines/home` | Move to 'home timeline' page | `2` |
|
|
|
|
| `/web/notifications` | Move to 'notifications' page | `3` |
|
|
|
|
| `/web/timelines/public/local` | Move to 'local timeline' page | `4` |
|
|
|
|
| `/web/timelines/public` | Move to 'federated timeline' page | `5` |
|
|
|
|
| `/web/getting-started` | Move to 'getting started' page | `6` |
|
|
|
|
|
2017-04-20 05:06:46 +02:00
|
|
|
If an action name ends with `.js`, it will run key shortcut plugin (please see below
|
2017-04-21 04:42:54 +02:00
|
|
|
'Key Shortcut Plugin' section). This plugin feature requires `"chromium_sandbox": true`.
|
2017-04-20 05:06:46 +02:00
|
|
|
|
2017-04-17 07:56:28 +02:00
|
|
|
By default, some key shortcuts for tab items are set in addition to above table.
|
2017-04-15 21:38:47 +02:00
|
|
|
|
2017-04-19 10:07:31 +02:00
|
|
|
<details>
|
|
|
|
<summary> Example of configuration </summary>
|
|
|
|
<pre><code>
|
|
|
|
{
|
|
|
|
"hot_key": "F8",
|
|
|
|
"icon_color": "black",
|
|
|
|
"always_on_top": false,
|
|
|
|
"normal_window": false,
|
|
|
|
"zoom_factor": 0.9,
|
2017-04-20 05:06:46 +02:00
|
|
|
"chromium_sandbox": true,
|
2017-04-19 10:07:31 +02:00
|
|
|
"accounts": [
|
|
|
|
{
|
|
|
|
"name": "Linda_pp",
|
|
|
|
"host": "mstdn.jp",
|
|
|
|
"default_page": "/web/timelines/home"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "inudog",
|
|
|
|
"host": "mastodon.social",
|
|
|
|
"default_page": "/web/timelines/home"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"keymaps": {
|
|
|
|
"1": "/web/statuses/new",
|
|
|
|
"2": "/web/timelines/home",
|
|
|
|
"3": "/web/notifications",
|
|
|
|
"4": "/web/timelines/public/local",
|
|
|
|
"5": "/web/timelines/public",
|
|
|
|
"6": "/web/getting-started",
|
|
|
|
"ctrl+1": "/web/statuses/new",
|
|
|
|
"ctrl+2": "/web/timelines/home",
|
|
|
|
"ctrl+3": "/web/notifications",
|
|
|
|
"ctrl+4": "/web/timelines/public/local",
|
|
|
|
"ctrl+5": "/web/timelines/public",
|
|
|
|
"ctrl+6": "/web/getting-started",
|
|
|
|
"j": "scroll-down",
|
|
|
|
"k": "scroll-up",
|
|
|
|
"i": "scroll-top",
|
|
|
|
"m": "scroll-bottom",
|
|
|
|
"n": "next-account",
|
|
|
|
"p": "prev-account"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</code></pre>
|
|
|
|
</details>
|
|
|
|
|
2017-04-15 07:06:14 +02:00
|
|
|
## Multi account
|
|
|
|
|
2017-04-20 05:06:46 +02:00
|
|
|
If you set multiple accounts to `accounts` array in `config.json`, `Accounts` menu item will appear
|
|
|
|
in application menu.
|
2017-04-18 13:55:32 +02:00
|
|
|
|
|
|
|
![multi account menu item](https://github.com/rhysd/ss/blob/master/Mstdn/multi-account.png?raw=true)
|
|
|
|
|
|
|
|
It will show the list of your account. Check mark is added for current user.
|
2017-04-20 05:06:46 +02:00
|
|
|
When you click menu item of non-current user, application window will be recreated and switch page
|
|
|
|
to the account.
|
|
|
|
|
|
|
|
## Key Shortcut Plugin
|
|
|
|
|
|
|
|
By specifying JavaScript file to action name in `keymaps` of `config.json`, you can write your
|
|
|
|
favorite behavior with JavaScript directly. Please note that `"chromium_sandbox" : true`
|
|
|
|
is also required (if you don't know what happens with `"chromium_sandbox" : true`, please read
|
|
|
|
above config section).
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
...
|
|
|
|
|
|
|
|
"chromium_sandbox": false,
|
|
|
|
|
|
|
|
...
|
|
|
|
|
|
|
|
"keymaps": {
|
|
|
|
"r": "hello.js"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
The script file path is a relative path from your `Mstdn` application directory. For example,
|
|
|
|
Specifying `hello.js` will run `/Users/You/Application Support/Mstdn/hello.js` on Mac.
|
|
|
|
|
|
|
|
The plugin script MUST export one function. Function receives configuration object and current
|
|
|
|
account object as its parameters. So above `hello.js` would look like:
|
|
|
|
|
|
|
|
```js
|
|
|
|
module.exports = function (config, account) {
|
|
|
|
alert('Hello, ' + account.name);
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
With above example config, typing `r` will show 'Hello, {your name}' alert dialog. You can use any
|
|
|
|
DOM APIs, Node.js's standard libraries and Electron APIs in plugin script.
|
|
|
|
|
|
|
|
## User CSS
|
|
|
|
|
|
|
|
When `user.css` is put in your `Mstdn` application directory, it will be loaded automatically.
|
|
|
|
To enable this feature, `"chromium_sandbox" : true` is also required (if you don't know what happens
|
|
|
|
with `"chromium_sandbox" : true`, please read above config section).
|
|
|
|
|
|
|
|
For example, below `/Users/You/Application Support/Mstdn/user.css` will change font color to red on Mac.
|
|
|
|
|
|
|
|
```css
|
|
|
|
body {
|
|
|
|
color: red !important;
|
|
|
|
}
|
|
|
|
```
|
2017-04-15 21:38:47 +02:00
|
|
|
|
2017-04-25 10:30:18 +02:00
|
|
|
## Plugin (experimental)
|
2017-04-21 09:50:14 +02:00
|
|
|
|
2017-04-25 10:30:18 +02:00
|
|
|
You can make a Node.js package which is run inner mastodon page.
|
2017-04-21 09:50:14 +02:00
|
|
|
|
2017-04-25 10:30:18 +02:00
|
|
|
Plugin is enabled if `chromium_sandbox` option is set to `false`. Please read above
|
2017-04-21 09:50:14 +02:00
|
|
|
configuration section before using any plugin.
|
|
|
|
|
2017-04-24 11:31:55 +02:00
|
|
|
### How to make a plugin
|
2017-04-21 09:50:14 +02:00
|
|
|
|
|
|
|
Create `node_modules` directory in your application directory at first. And then, please make
|
2017-04-25 10:30:18 +02:00
|
|
|
`mstdn-plugin-hello` directory. It consists a node package.
|
2017-04-21 09:50:14 +02:00
|
|
|
|
2017-04-25 10:30:18 +02:00
|
|
|
Package name must start with `mastdn-plugin-`.
|
2017-04-21 09:50:14 +02:00
|
|
|
|
|
|
|
Make `package.json` manually or by `$ npm init` in the directory.
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
2017-04-25 10:30:18 +02:00
|
|
|
"name": "mstdn-plugin-hello",
|
2017-04-21 09:50:14 +02:00
|
|
|
"version": "0.0.0",
|
2017-04-25 10:30:18 +02:00
|
|
|
"description": "Sample plugin of Mstdn.app",
|
2017-04-21 09:50:14 +02:00
|
|
|
"main": "index.js",
|
|
|
|
"author": "Your name",
|
|
|
|
"license": "Some license"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-04-26 08:52:57 +02:00
|
|
|
And make `index.js` as below:
|
2017-04-21 09:50:14 +02:00
|
|
|
|
|
|
|
```javascript
|
2017-04-25 10:30:18 +02:00
|
|
|
module.exports = {
|
|
|
|
preload(config, account) {
|
|
|
|
console.log('Hello from plugin!', config, account);
|
|
|
|
}
|
|
|
|
};
|
2017-04-21 09:50:14 +02:00
|
|
|
```
|
|
|
|
|
2017-04-25 10:30:18 +02:00
|
|
|
Package must export one object.
|
|
|
|
If the object has a function as a value of `preload` key, it will be called at page being loaded.
|
2017-04-26 08:52:57 +02:00
|
|
|
The function receives two parameters `config` and `account`.
|
|
|
|
|
|
|
|
By defining `keymaps` key you can define plugin-defined key shortcut action.
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
module.exports = {
|
|
|
|
preload(config, account) {
|
|
|
|
console.log('Hello from plugin!', config, account);
|
|
|
|
},
|
|
|
|
keymaps: {
|
|
|
|
'alert-hello'(event, config, account) {
|
|
|
|
event.preventDefault();
|
|
|
|
alert('Hello, ' + account.name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
```
|
|
|
|
|
|
|
|
The object of `keymaps` has keymap action name (key) and its handler (value). Here 'alert-hello'
|
|
|
|
key shortcut action is defined. Key shortcut handler takes 3 arguments. `config` and `account`
|
|
|
|
is the same as `preload`'s. `event` is a `KeyboardEvent` browser event on the key shortcut
|
|
|
|
being called. You can cancel default event behavior by `.preventDefault()` method.
|
|
|
|
|
|
|
|
User can specify the key shortcut as `plugin:{plugin name}:{action name}`. In above example,
|
|
|
|
`plugin:hello:alert-hello` is available in `keymaps` section in config.json.
|
2017-04-21 09:50:14 +02:00
|
|
|
|
|
|
|
Note that you can use below APIs in the script.
|
|
|
|
|
|
|
|
- [Node.js standard libraries][] via `require` (e.g. `require('fs')`)
|
|
|
|
- Dependant node packages listed in `package.json` of the plugin
|
|
|
|
- [Electron Renderer APIs][Electron APIs]
|
|
|
|
- All Web APIs on browser (including DOM API)
|
|
|
|
|
|
|
|
#### !!! Security Notice !!!
|
|
|
|
|
|
|
|
Do not leak Node.js stuff to global namespace like below.
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
// Never do things like this!
|
|
|
|
window.my_require = require;
|
|
|
|
```
|
|
|
|
|
|
|
|
### How to use
|
|
|
|
|
|
|
|
If you didn't try above 'How to make' section, please install plugin package at first.
|
2017-04-25 10:30:18 +02:00
|
|
|
Below will install 'hello' plugin to `{app directory}/node_modules/mstdn-plugin-hello`.
|
2017-04-21 09:50:14 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
$ cd {Your application directory}
|
2017-04-25 10:30:18 +02:00
|
|
|
$ npm install mstdn-plugin-hello
|
2017-04-21 09:50:14 +02:00
|
|
|
```
|
|
|
|
|
2017-04-25 10:30:18 +02:00
|
|
|
And then write what plugin should be loaded to `"plugins"` section of your account in `config.json`.
|
2017-04-21 09:50:14 +02:00
|
|
|
`"hello"` should be added to the list.
|
2017-04-26 08:52:57 +02:00
|
|
|
If listed plugin defines some keymaps, you can specify it in `keymaps` section with
|
|
|
|
`plugin:{name}:{action}` format.
|
2017-04-21 09:50:14 +02:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
...
|
|
|
|
|
2017-04-25 10:30:18 +02:00
|
|
|
"accounts": [
|
|
|
|
{
|
|
|
|
...
|
|
|
|
|
|
|
|
"plugins": [
|
|
|
|
"hello"
|
|
|
|
]
|
|
|
|
}
|
2017-04-21 09:50:14 +02:00
|
|
|
],
|
2017-04-26 08:52:57 +02:00
|
|
|
"keymaps": {
|
|
|
|
...
|
|
|
|
|
|
|
|
"ctrl+h": "plugin:hello:alert-hello"
|
|
|
|
},
|
2017-04-21 09:50:14 +02:00
|
|
|
|
|
|
|
...
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-04-26 08:52:57 +02:00
|
|
|
Note that you can enable different plugin for each your accounts.
|
2017-04-25 10:30:18 +02:00
|
|
|
|
2017-04-21 09:50:14 +02:00
|
|
|
Finally open Mstdn.app and see DevTools via [Menu] -> [View] -> [Developper Tools] -> console.
|
|
|
|
If window is too small to see DevTools, please make window size bigger.
|
|
|
|
|
|
|
|
In console, the message 'Hello from plugin!', config information and account information should be output.
|
|
|
|
|
|
|
|
### List of Plugins
|
|
|
|
|
|
|
|
To be made
|
|
|
|
|
2017-04-23 15:25:15 +02:00
|
|
|
## How to Debug
|
|
|
|
|
|
|
|
By setting `NODE_ENV` environment variable to `development`, Mstdn will start in debug mode.
|
|
|
|
|
|
|
|
In debug mode, app outputs all logs to stdout and opens DevTools for a page rendered in a window
|
|
|
|
automatically. You can also see logs in 'console' tab of DevTools for debugging renderer process.
|
|
|
|
|
|
|
|
```sh
|
2017-04-24 23:41:49 +02:00
|
|
|
# If you installed this app via npm or yarn
|
2017-04-23 15:25:15 +02:00
|
|
|
$ NODE_ENV=development open-mstdn-app
|
|
|
|
|
|
|
|
# Package on macOS
|
|
|
|
$ NODE_ENV=development /path/to/Mstdn.app/Contents/MacOS/Mstdn
|
|
|
|
|
|
|
|
# Package on Linux
|
|
|
|
$ NODE_ENV=development /path/to/Mstdn-linux-xxx-x.y.z/Mstdn
|
|
|
|
|
|
|
|
# Package on cmd.exe on Windows
|
|
|
|
$ set NODE_ENV=development
|
|
|
|
$ \path\to\Mstdn-win32-xxx-x.y.z\Mstdn.exe
|
|
|
|
```
|
|
|
|
|
2017-04-21 04:42:54 +02:00
|
|
|
## Contact to the Author
|
|
|
|
|
|
|
|
Please feel free to make an issue on GitHub or mention on Mastodon/Twitter.
|
|
|
|
|
|
|
|
- [@Linda\_pp@mstdn.jp](https://mstdn.jp/@Linda_pp) (Japanese account. English is also OK)
|
|
|
|
- [@inudog@mastodon.social](https://mastodon.social/@inudog) (English account)
|
|
|
|
|
2017-04-15 07:06:14 +02:00
|
|
|
[Mastodon]: https://github.com/tootsuite/mastodon
|
|
|
|
[npm]: https://www.npmjs.com/package/mstdn
|
2017-04-24 23:41:49 +02:00
|
|
|
[yarn]: https://yarnpkg.com/en/package/mstdn
|
2017-04-16 06:22:44 +02:00
|
|
|
[Release page]: https://github.com/rhysd/Mstdn/releases
|
2017-04-18 13:55:32 +02:00
|
|
|
[Electron]: electron.atom.io
|
2017-04-20 05:06:46 +02:00
|
|
|
[sandbox doc]: https://github.com/electron/electron/blob/master/docs/api/sandbox-option.md
|
2017-04-21 04:42:54 +02:00
|
|
|
[npm version badge]: https://badge.fury.io/js/mstdn.svg
|
2017-04-21 09:50:14 +02:00
|
|
|
[Node.js standard libraries]: https://nodejs.org/api/
|
|
|
|
[Electron APIs]: https://electron.atom.io/docs/api/
|