mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 04:39:03 +00:00
add discord to tray
This commit is contained in:
parent
bae4c4cc06
commit
4279bbc00d
@ -13,6 +13,8 @@ this package is a mod-loader for the desktop app, with custom colour theming and
|
||||
|
||||
want to contribute? check out the [contribution guidelines](CONTRIBUTING.md) and the [documentation](DOCUMENTATION.md).
|
||||
|
||||
for support, join the [discord server](https://discord.gg/sFWPXtA).
|
||||
|
||||
## installation
|
||||
|
||||
**coming from <= v0.7.0? things are a bit different - have a read of [the update guide](UPDATING.md)**
|
||||
@ -75,6 +77,8 @@ team to take to heart for future improvements."
|
||||
once applied, modules can be configured via the graphical menu, which is opened from
|
||||
the tray/menubar icon or with `CMD/CTRL+E`.
|
||||
|
||||

|
||||
|
||||
currently all modules come pre-installed for technical reasons, security assurance, and ease-of-use.
|
||||
these include:
|
||||
|
||||
|
@ -112,6 +112,25 @@ module.exports = (store, __exports) => {
|
||||
}
|
||||
|
||||
const contextMenu = electron.Menu.buildFromTemplate([
|
||||
{
|
||||
type: 'normal',
|
||||
label: 'GitHub',
|
||||
click: () => {
|
||||
electron.shell.openExternal(
|
||||
'https://github.com/dragonwocky/notion-enhancer/blob/master/DOCUMENTATION.md'
|
||||
);
|
||||
},
|
||||
},
|
||||
{
|
||||
type: 'normal',
|
||||
label: 'Discord',
|
||||
click: () => {
|
||||
electron.shell.openExternal('https://discord.gg/sFWPXtA');
|
||||
},
|
||||
},
|
||||
{
|
||||
type: 'separator',
|
||||
},
|
||||
{
|
||||
type: 'normal',
|
||||
label: 'Bug Report',
|
||||
@ -133,15 +152,6 @@ module.exports = (store, __exports) => {
|
||||
{
|
||||
type: 'separator',
|
||||
},
|
||||
{
|
||||
type: 'normal',
|
||||
label: 'Docs',
|
||||
click: () => {
|
||||
electron.shell.openExternal(
|
||||
'https://github.com/dragonwocky/notion-enhancer/tree/js'
|
||||
);
|
||||
},
|
||||
},
|
||||
{
|
||||
type: 'normal',
|
||||
label: 'Enhancements',
|
||||
|
Loading…
Reference in New Issue
Block a user