You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-12-02 22:49:09 +02:00
Desktop: Add support for searching and installing plugins from repository
This commit is contained in:
@@ -619,7 +619,6 @@ class Setting extends BaseModel {
|
||||
section: 'plugins',
|
||||
public: true,
|
||||
appTypes: ['desktop'],
|
||||
label: () => _('Plugins'),
|
||||
needRestart: true,
|
||||
autoSave: true,
|
||||
},
|
||||
@@ -629,6 +628,7 @@ class Setting extends BaseModel {
|
||||
type: SettingItemType.String,
|
||||
section: 'plugins',
|
||||
public: true,
|
||||
advanced: true,
|
||||
appTypes: ['desktop'],
|
||||
label: () => 'Development plugins',
|
||||
description: () => 'You may add multiple plugin paths, each separated by a comma. You will need to restart the application for the changes to take effect.',
|
||||
@@ -1504,7 +1504,7 @@ class Setting extends BaseModel {
|
||||
if (name === 'appearance') return _('Appearance');
|
||||
if (name === 'note') return _('Note');
|
||||
if (name === 'markdownPlugins') return _('Markdown');
|
||||
if (name === 'plugins') return `${_('Plugins')} (Beta)`;
|
||||
if (name === 'plugins') return _('Plugins');
|
||||
if (name === 'application') return _('Application');
|
||||
if (name === 'revisionService') return _('Note History');
|
||||
if (name === 'encryption') return _('Encryption');
|
||||
|
||||
Reference in New Issue
Block a user