Add access to settings through tray menu
This commit is contained in:
@@ -16,6 +16,7 @@ Release date: TBD
|
||||
- Invalidate cache before load, to make server upgrades easy
|
||||
- Removed misleading shortcuts from tray menu, as they didn't work
|
||||
- Ctrl/Command+F puts cursor in search box to search in current channel.
|
||||
- Add access to settings through tray menu
|
||||
|
||||
#### Windows
|
||||
- Added an option to toogle the red dot icon for unread messages (default is on).
|
||||
|
@@ -78,6 +78,7 @@ You have to configure the application to interact with your teams.
|
||||
- Windows: Press `Alt` key to bring up the menu at the top of the window, then click `File -> Settings`.
|
||||
- OS X: Click `Mattermost` from the menu at the top of the screen, then click `Preferences...`.
|
||||
- Linux: Click `File -> Settings` on the menu.
|
||||
- If tray menu : Right-click on tray icon and click `Settings`
|
||||
|
||||
2. Press `+` button next to the "Teams" label.
|
||||
|
||||
|
@@ -28,6 +28,14 @@ function createTemplate(mainWindow, config) {
|
||||
};
|
||||
}), {
|
||||
type: 'separator'
|
||||
}, {
|
||||
label: 'Settings',
|
||||
click: () => {
|
||||
mainWindow.loadURL('file://' + __dirname + '/browser/settings.html');
|
||||
mainWindow.show();
|
||||
}
|
||||
}, {
|
||||
type: 'separator'
|
||||
}, {
|
||||
role: 'quit'
|
||||
}
|
||||
|
Reference in New Issue
Block a user