diff --git a/.eslintignore b/.eslintignore index 145439316c..622fcbda55 100644 --- a/.eslintignore +++ b/.eslintignore @@ -70,6 +70,7 @@ CliClient/tests/services_CommandService.js CliClient/tests/services_InteropService.js CliClient/tests/services_PluginService.js CliClient/tests/services_rest_Api.js +CliClient/tests/services/plugins/api/JoplinSetting.js CliClient/tests/services/plugins/sandboxProxy.js CliClient/tests/synchronizer_LockHandler.js CliClient/tests/synchronizer_MigrationHandler.js @@ -273,11 +274,13 @@ ReactNativeClient/lib/services/plugins/api/JoplinSettings.js ReactNativeClient/lib/services/plugins/api/JoplinViews.js ReactNativeClient/lib/services/plugins/api/JoplinViewsDialogs.js ReactNativeClient/lib/services/plugins/api/JoplinViewsMenuItems.js +ReactNativeClient/lib/services/plugins/api/JoplinViewsMenus.js ReactNativeClient/lib/services/plugins/api/JoplinViewsPanels.js ReactNativeClient/lib/services/plugins/api/JoplinViewsToolbarButtons.js ReactNativeClient/lib/services/plugins/api/JoplinWorkspace.js ReactNativeClient/lib/services/plugins/api/types.js ReactNativeClient/lib/services/plugins/BasePluginRunner.js +ReactNativeClient/lib/services/plugins/MenuController.js ReactNativeClient/lib/services/plugins/MenuItemController.js ReactNativeClient/lib/services/plugins/Plugin.js ReactNativeClient/lib/services/plugins/PluginService.js diff --git a/.gitignore b/.gitignore index 48bd9aae5d..51a8e861e3 100644 --- a/.gitignore +++ b/.gitignore @@ -64,6 +64,7 @@ CliClient/tests/services_CommandService.js CliClient/tests/services_InteropService.js CliClient/tests/services_PluginService.js CliClient/tests/services_rest_Api.js +CliClient/tests/services/plugins/api/JoplinSetting.js CliClient/tests/services/plugins/sandboxProxy.js CliClient/tests/synchronizer_LockHandler.js CliClient/tests/synchronizer_MigrationHandler.js @@ -267,11 +268,13 @@ ReactNativeClient/lib/services/plugins/api/JoplinSettings.js ReactNativeClient/lib/services/plugins/api/JoplinViews.js ReactNativeClient/lib/services/plugins/api/JoplinViewsDialogs.js ReactNativeClient/lib/services/plugins/api/JoplinViewsMenuItems.js +ReactNativeClient/lib/services/plugins/api/JoplinViewsMenus.js ReactNativeClient/lib/services/plugins/api/JoplinViewsPanels.js ReactNativeClient/lib/services/plugins/api/JoplinViewsToolbarButtons.js ReactNativeClient/lib/services/plugins/api/JoplinWorkspace.js ReactNativeClient/lib/services/plugins/api/types.js ReactNativeClient/lib/services/plugins/BasePluginRunner.js +ReactNativeClient/lib/services/plugins/MenuController.js ReactNativeClient/lib/services/plugins/MenuItemController.js ReactNativeClient/lib/services/plugins/Plugin.js ReactNativeClient/lib/services/plugins/PluginService.js diff --git a/CliClient/tests/services/plugins/api/JoplinSetting.ts b/CliClient/tests/services/plugins/api/JoplinSetting.ts new file mode 100644 index 0000000000..8951c50c21 --- /dev/null +++ b/CliClient/tests/services/plugins/api/JoplinSetting.ts @@ -0,0 +1,16 @@ +// import Setting from 'lib/models/Setting'; + +// const { asyncTest, setupDatabaseAndSynchronizer, switchClient, expectThrow, expectNotThrow } = require('../test-utils.js'); + +// describe('plugin_api_JoplinSetting', function() { + +// beforeEach(async (done) => { +// await setupDatabaseAndSynchronizer(1); +// await switchClient(1); +// done(); +// }); + +// it('should get and set plugin-specific values', asyncTest(async () => { +// await +// })); +// }); diff --git a/CliClient/tests/services_PluginService.ts b/CliClient/tests/services_PluginService.ts index 9ab56113a7..0910c429e9 100644 --- a/CliClient/tests/services_PluginService.ts +++ b/CliClient/tests/services_PluginService.ts @@ -2,7 +2,7 @@ import PluginRunner from '../app/services/plugins/PluginRunner'; import PluginService from 'lib/services/plugins/PluginService'; require('app-module-path').addPath(__dirname); -const { asyncTest, setupDatabaseAndSynchronizer, switchClient } = require('test-utils.js'); +const { asyncTest, setupDatabaseAndSynchronizer, switchClient, expectThrow } = require('test-utils.js'); const Note = require('lib/models/Note'); const Folder = require('lib/models/Folder'); @@ -40,8 +40,7 @@ describe('services_PluginService', function() { it('should load and run a simple plugin', asyncTest(async () => { const service = newPluginService(); - const plugin = await service.loadPlugin(`${testPluginDir}/simple`); - await service.runPlugin(plugin); + await service.loadAndRunPlugins([`${testPluginDir}/simple`]); const allFolders = await Folder.all(); expect(allFolders.length).toBe(1); @@ -55,9 +54,9 @@ describe('services_PluginService', function() { it('should load and run a plugin that uses external packages', asyncTest(async () => { const service = newPluginService(); - const plugin = await service.loadPlugin(`${testPluginDir}/withExternalModules`); + await service.loadAndRunPlugins([`${testPluginDir}/withExternalModules`]); + const plugin = service.pluginById('withexternalmodules'); expect(plugin.id).toBe('withexternalmodules'); - await service.runPlugin(plugin); const allFolders = await Folder.all(); expect(allFolders.length).toBe(1); @@ -78,4 +77,75 @@ describe('services_PluginService', function() { expect(allFolders.map((f:any) => f.title).sort().join(', ')).toBe('multi - simple1, multi - simple2'); })); + it('should load plugins from JS bundles', asyncTest(async () => { + const service = newPluginService(); + + const plugin = await service.loadPluginFromString('example', '/tmp', ` + /* joplin-manifest: + { + "manifest_version": 1, + "name": "JS Bundle test", + "description": "JS Bundle Test plugin", + "version": "1.0.0", + "author": "Laurent Cozic", + "homepage_url": "https://joplinapp.org" + } + */ + + joplin.plugins.register({ + onStart: async function() { + await joplin.data.post(['folders'], null, { title: "my plugin folder" }); + }, + }); + `); + + await service.runPlugin(plugin); + + expect(plugin.manifest.manifest_version).toBe(1); + expect(plugin.manifest.name).toBe('JS Bundle test'); + + const allFolders = await Folder.all(); + expect(allFolders.length).toBe(1); + })); + + it('should load plugins from JS bundle files', asyncTest(async () => { + const service = newPluginService(); + await service.loadAndRunPlugins(`${testPluginDir}/jsbundles`); + expect(!!service.pluginById('example')).toBe(true); + expect((await Folder.all()).length).toBe(1); + })); + + it('should validate JS bundles', asyncTest(async () => { + const invalidJsBundles = [ + ` + /* joplin-manifest: + { + "not_a_valid_manifest_at_all": 1 + } + */ + + joplin.plugins.register({ + onStart: async function() {}, + }); + `, ` + /* joplin-manifest: + */ + + joplin.plugins.register({ + onStart: async function() {}, + }); + `, ` + joplin.plugins.register({ + onStart: async function() {}, + }); + `, '', + ]; + + const service = newPluginService(); + + for (const jsBundle of invalidJsBundles) { + await expectThrow(async () => await service.loadPluginFromString('example', '/tmp', jsBundle)); + } + })); + }); diff --git a/CliClient/tests/support/jasmine.json b/CliClient/tests/support/jasmine.json index b4af2c1a9e..361bac445b 100644 --- a/CliClient/tests/support/jasmine.json +++ b/CliClient/tests/support/jasmine.json @@ -3,6 +3,7 @@ "spec_files": [ "*.js", "services/plugins/*.js", + "services/plugins/api/*.js", "!test-utils.js" ], "stopSpecOnExpectationFailure": false, diff --git a/CliClient/tests/support/plugins/jsbundles/example.js b/CliClient/tests/support/plugins/jsbundles/example.js new file mode 100644 index 0000000000..f559d574a8 --- /dev/null +++ b/CliClient/tests/support/plugins/jsbundles/example.js @@ -0,0 +1,16 @@ +/* joplin-manifest: +{ + "manifest_version": 1, + "name": "JS Bundle test", + "description": "JS Bundle Test plugin", + "version": "1.0.0", + "author": "Laurent Cozic", + "homepage_url": "https://joplinapp.org" +} +*/ + +joplin.plugins.register({ + onStart: async function() { + await joplin.data.post(['folders'], null, { title: "my plugin folder" }); + }, +}); diff --git a/CliClient/tests/support/plugins/menu/.gitignore b/CliClient/tests/support/plugins/menu/.gitignore new file mode 100644 index 0000000000..2195be3d80 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/.gitignore @@ -0,0 +1,2 @@ +dist/* +node_modules/ \ No newline at end of file diff --git a/CliClient/tests/support/plugins/menu/README.md b/CliClient/tests/support/plugins/menu/README.md new file mode 100644 index 0000000000..afbea1bd18 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/README.md @@ -0,0 +1,14 @@ +# Joplin Plugin + +This is a template to create a new Joplin plugin. + +The main two files you will want to look at are: + +- `/src/index.ts`, which contains the entry point for the plugin source code. +- `/src/manifest.json`, which is the plugin manifest. It contains information such as the plugin a name, version, etc. + +The plugin is built using webpack, which create the compiled code in `/dist`. The project is setup to use TypeScript, although you can change the configuration to use plain JavaScript. + +## Building the plugin + +To build the plugin, simply run `npm run dist`. diff --git a/CliClient/tests/support/plugins/menu/api/Global.d.ts b/CliClient/tests/support/plugins/menu/api/Global.d.ts new file mode 100644 index 0000000000..011fe0dafd --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/Global.d.ts @@ -0,0 +1,15 @@ +import Plugin from '../Plugin'; +import Joplin from './Joplin'; +import Logger from 'lib/Logger'; +/** + * @ignore + */ +export default class Global { + private joplin_; + private requireWhiteList_; + constructor(logger: Logger, implementation: any, plugin: Plugin, store: any); + get joplin(): Joplin; + private requireWhiteList; + require(filePath: string): any; + get process(): any; +} diff --git a/CliClient/tests/support/plugins/menu/api/Joplin.d.ts b/CliClient/tests/support/plugins/menu/api/Joplin.d.ts new file mode 100644 index 0000000000..e12babda23 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/Joplin.d.ts @@ -0,0 +1,38 @@ +import Plugin from '../Plugin'; +import JoplinData from './JoplinData'; +import JoplinPlugins from './JoplinPlugins'; +import JoplinWorkspace from './JoplinWorkspace'; +import JoplinFilters from './JoplinFilters'; +import JoplinCommands from './JoplinCommands'; +import JoplinViews from './JoplinViews'; +import JoplinInterop from './JoplinInterop'; +import JoplinSettings from './JoplinSettings'; +import Logger from 'lib/Logger'; +/** + * This is the main entry point to the Joplin API. You can access various services using the provided accessors. + */ +export default class Joplin { + private data_; + private plugins_; + private workspace_; + private filters_; + private commands_; + private views_; + private interop_; + private settings_; + constructor(logger: Logger, implementation: any, plugin: Plugin, store: any); + get data(): JoplinData; + get plugins(): JoplinPlugins; + get workspace(): JoplinWorkspace; + /** + * @ignore + * + * Not sure if it's the best way to hook into the app + * so for now disable filters. + */ + get filters(): JoplinFilters; + get commands(): JoplinCommands; + get views(): JoplinViews; + get interop(): JoplinInterop; + get settings(): JoplinSettings; +} diff --git a/CliClient/tests/support/plugins/menu/api/JoplinCommands.d.ts b/CliClient/tests/support/plugins/menu/api/JoplinCommands.d.ts new file mode 100644 index 0000000000..677e6d5b0f --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/JoplinCommands.d.ts @@ -0,0 +1,51 @@ +import { Command } from './types'; +/** + * This class allows executing or registering new Joplin commands. Commands can be executed or associated with + * {@link JoplinViewsToolbarButtons | toolbar buttons} or {@link JoplinViewsMenuItems | menu items}. + * + * [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/register_command) + * + * ## Executing Joplin's internal commands + * + * It is also possible to execute internal Joplin's commands which, as of now, are not well documented. + * You can find the list directly on GitHub though at the following locations: + * + * https://github.com/laurent22/joplin/tree/dev/ElectronClient/gui/MainScreen/commands + * https://github.com/laurent22/joplin/tree/dev/ElectronClient/commands + * https://github.com/laurent22/joplin/tree/dev/ElectronClient/gui/NoteEditor/commands/editorCommandDeclarations.ts + * + * To view what arguments are supported, you can open any of these files and look at the `execute()` command. + */ +export default class JoplinCommands { + /** + * desktop Executes the given command. + * The `props` are the arguments passed to the command, and they vary based on the command + * + * ```typescript + * // Create a new note in the current notebook: + * await joplin.commands.execute('newNote'); + * + * // Create a new sub-notebook under the provided notebook + * // Note: internally, notebooks are called "folders". + * await joplin.commands.execute('newFolder', { parent_id: "SOME_FOLDER_ID" }); + * ``` + */ + execute(commandName: string, props?: any): Promise; + /** + * desktop Registers a new command. + * + * ```typescript + * // Register a new commmand called "testCommand1" + * + * await joplin.commands.register({ + * name: 'testCommand1', + * label: 'My Test Command 1', + * iconName: 'fas fa-music', + * execute: () => { + * alert('Testing plugin command 1'); + * }, + * }); + * ``` + */ + register(command: Command): Promise; +} diff --git a/CliClient/tests/support/plugins/menu/api/JoplinData.d.ts b/CliClient/tests/support/plugins/menu/api/JoplinData.d.ts new file mode 100644 index 0000000000..213d576ed8 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/JoplinData.d.ts @@ -0,0 +1,47 @@ +import { Path } from './types'; +/** + * This module provides access to the Joplin data API: https://joplinapp.org/api/references/rest_api/ + * This is the main way to retrieve data, such as notes, notebooks, tags, etc. + * or to update them or delete them. + * + * This is also what you would use to search notes, via the `search` endpoint. + * + * [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/simple) + * + * In general you would use the methods in this class as if you were using a REST API. There are four methods that map to GET, POST, PUT and DELETE calls. + * And each method takes these parameters: + * + * * `path`: This is an array that represents the path to the resource in the form `["resouceName", "resourceId", "resourceLink"]` (eg. ["tags", ":id", "notes"]). The "resources" segment is the name of the resources you want to access (eg. "notes", "folders", etc.). If not followed by anything, it will refer to all the resources in that collection. The optional "resourceId" points to a particular resources within the collection. Finally, an optional "link" can be present, which links the resource to a collection of resources. This can be used in the API for example to retrieve all the notes associated with a tag. + * * `query`: (Optional) The query parameters. In a URL, this is the part after the question mark "?". In this case, it should be an object with key/value pairs. + * * `data`: (Optional) Applies to PUT and POST calls only. The request body contains the data you want to create or modify, for example the content of a note or folder. + * * `files`: (Optional) Used to create new resources and associate them with files. + * + * Please refer to the [Joplin API documentation](https://joplinapp.org/api/references/rest_api/) for complete details about each call. As the plugin runs within the Joplin application **you do not need an authorisation token** to use this API. + * + * For example: + * + * ```typescript + * // Get a note ID, title and body + * const noteId = 'some_note_id'; + * const note = await joplin.data.get(['notes', noteId], { fields: ['id', 'title', 'body'] }); + * + * // Get all folders + * const folders = await joplin.data.get(['folders']); + * + * // Set the note body + * await joplin.data.put(['notes', noteId], null, { body: "New note body" }); + * + * // Create a new note under one of the folders + * await joplin.data.post(['notes'], null, { body: "my new note", title: "some title", parent_id: folders[0].id }); + * ``` + */ +export default class JoplinData { + private api_; + private pathSegmentRegex_; + private serializeApiBody; + private pathToString; + get(path: Path, query?: any): Promise; + post(path: Path, query?: any, body?: any, files?: any[]): Promise; + put(path: Path, query?: any, body?: any, files?: any[]): Promise; + delete(path: Path, query?: any): Promise; +} diff --git a/CliClient/tests/support/plugins/menu/api/JoplinFilters.d.ts b/CliClient/tests/support/plugins/menu/api/JoplinFilters.d.ts new file mode 100644 index 0000000000..43bc1b2b70 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/JoplinFilters.d.ts @@ -0,0 +1,10 @@ +/** + * @ignore + * + * Not sure if it's the best way to hook into the app + * so for now disable filters. + */ +export default class JoplinFilters { + on(name: string, callback: Function): Promise; + off(name: string, callback: Function): Promise; +} diff --git a/CliClient/tests/support/plugins/menu/api/JoplinInterop.d.ts b/CliClient/tests/support/plugins/menu/api/JoplinInterop.d.ts new file mode 100644 index 0000000000..142c01ddfc --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/JoplinInterop.d.ts @@ -0,0 +1,17 @@ +import { ExportModule, ImportModule } from './types'; +/** + * Provides a way to create modules to import external data into Joplin or to export notes into any arbitrary format. + * + * [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/json_export) + * + * To implement an import or export module, you would simply define an object with various event handlers that are called + * by the application during the import/export process. + * + * See the documentation of the [[ExportModule]] and [[ImportModule]] for more information. + * + * You may also want to refer to the Joplin API documentation to see the list of properties for each item (note, notebook, etc.) - https://joplinapp.org/api/references/rest_api/ + */ +export default class JoplinInterop { + registerExportModule(module: ExportModule): Promise; + registerImportModule(module: ImportModule): Promise; +} diff --git a/CliClient/tests/support/plugins/menu/api/JoplinPlugins.d.ts b/CliClient/tests/support/plugins/menu/api/JoplinPlugins.d.ts new file mode 100644 index 0000000000..aa561f1dac --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/JoplinPlugins.d.ts @@ -0,0 +1,24 @@ +import Plugin from '../Plugin'; +import Logger from 'lib/Logger'; +import { Script } from './types'; +/** + * This class provides access to plugin-related features. + */ +export default class JoplinPlugins { + private logger; + private plugin; + constructor(logger: Logger, plugin: Plugin); + /** + * Registers a new plugin. This is the entry point when creating a plugin. You should pass a simple object with an `onStart` method to it. + * That `onStart` method will be executed as soon as the plugin is loaded. + * + * ```typescript + * joplin.plugins.register({ + * onStart: async function() { + * // Run your plugin code here + * } + * }); + * ``` + */ + register(script: Script): Promise; +} diff --git a/CliClient/tests/support/plugins/menu/api/JoplinSettings.d.ts b/CliClient/tests/support/plugins/menu/api/JoplinSettings.d.ts new file mode 100644 index 0000000000..4deaae636c --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/JoplinSettings.d.ts @@ -0,0 +1,43 @@ +import Plugin from '../Plugin'; +import { SettingItem, SettingSection } from './types'; +/** + * This API allows registering new settings and setting sections, as well as getting and setting settings. Once a setting has been registered it will appear in the config screen and be editable by the user. + * + * Settings are essentially key/value pairs. + * + * Note: Currently this API does **not** provide access to Joplin's built-in settings. This is by design as plugins that modify user settings could give unexpected results + * + * [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/settings) + */ +export default class JoplinSettings { + private plugin_; + constructor(plugin: Plugin); + private namespacedKey; + /** + * Registers a new setting. Note that registering a setting item is dynamic and will be gone next time Joplin starts. + * What it means is that you need to register the setting every time the plugin starts (for example in the onStart event). + * The setting value however will be preserved from one launch to the next so there is no risk that it will be lost even if for some + * reason the plugin fails to start at some point. + */ + registerSetting(key: string, settingItem: SettingItem): Promise; + /** + * Registers a new setting section. Like for registerSetting, it is dynamic and needs to be done every time the plugin starts. + */ + registerSection(name: string, section: SettingSection): Promise; + /** + * Gets a setting value (only applies to setting you registered from your plugin) + */ + value(key: string): Promise; + /** + * Sets a setting value (only applies to setting you registered from your plugin) + */ + setValue(key: string, value: any): Promise; + /** + * Gets a global setting value, including app-specific settings and those set by other plugins. + * + * The list of available settings is not documented yet, but can be found by looking at the source code: + * + * https://github.com/laurent22/joplin/blob/3539a452a359162c461d2849829d2d42973eab50/ReactNativeClient/lib/models/Setting.ts#L142 + */ + globalValue(key: string): Promise; +} diff --git a/CliClient/tests/support/plugins/menu/api/JoplinViews.d.ts b/CliClient/tests/support/plugins/menu/api/JoplinViews.d.ts new file mode 100644 index 0000000000..235eabfe11 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/JoplinViews.d.ts @@ -0,0 +1,28 @@ +import Plugin from '../Plugin'; +import JoplinViewsDialogs from './JoplinViewsDialogs'; +import JoplinViewsMenuItems from './JoplinViewsMenuItems'; +import JoplinViewsMenus from './JoplinViewsMenus'; +import JoplinViewsToolbarButtons from './JoplinViewsToolbarButtons'; +import JoplinViewsPanels from './JoplinViewsPanels'; +/** + * This namespace provides access to view-related services. + * + * All view services provide a `create()` method which you would use to create the view object, whether it's a dialog, a toolbar button or a menu item. + * In some cases, the `create()` method will return a [[ViewHandle]], which you would use to act on the view, for example to set certain properties or call some methods. + */ +export default class JoplinViews { + private store; + private plugin; + private dialogs_; + private panels_; + private menuItems_; + private menus_; + private toolbarButtons_; + private implementation_; + constructor(implementation: any, plugin: Plugin, store: any); + get dialogs(): JoplinViewsDialogs; + get panels(): JoplinViewsPanels; + get menuItems(): JoplinViewsMenuItems; + get menus(): JoplinViewsMenus; + get toolbarButtons(): JoplinViewsToolbarButtons; +} diff --git a/CliClient/tests/support/plugins/menu/api/JoplinViewsDialogs.d.ts b/CliClient/tests/support/plugins/menu/api/JoplinViewsDialogs.d.ts new file mode 100644 index 0000000000..e76f8a41bc --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/JoplinViewsDialogs.d.ts @@ -0,0 +1,36 @@ +import Plugin from '../Plugin'; +import { ButtonSpec, ViewHandle, ButtonId } from './types'; +/** + * Allows creating and managing dialogs. A dialog is modal window that contains a webview and a row of buttons. You can update the update the webview using the `setHtml` method. + * Dialogs are hidden by default and you need to call `open()` to open them. Once the user clicks on a button, the `open` call will return and provide the button ID that was + * clicked on. There is currently no "close" method since the dialog should be thought as a modal one and thus can only be closed by clicking on one of the buttons. + * + * [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/dialog) + */ +export default class JoplinViewsDialogs { + private store; + private plugin; + private implementation_; + constructor(implementation: any, plugin: Plugin, store: any); + private controller; + /** + * Creates a new dialog + */ + create(): Promise; + /** + * Displays a message box with OK/Cancel buttons. Returns the button index that was clicked - "0" for OK and "1" for "Cancel" + */ + showMessageBox(message: string): Promise; + /** + * Sets the dialog HTML content + */ + setHtml(handle: ViewHandle, html: string): Promise; + /** + * Sets the dialog buttons. + */ + setButtons(handle: ViewHandle, buttons: ButtonSpec[]): Promise; + /** + * Opens the dialog + */ + open(handle: ViewHandle): Promise; +} diff --git a/CliClient/tests/support/plugins/menu/api/JoplinViewsMenuItems.d.ts b/CliClient/tests/support/plugins/menu/api/JoplinViewsMenuItems.d.ts new file mode 100644 index 0000000000..d2fb8d9949 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/JoplinViewsMenuItems.d.ts @@ -0,0 +1,16 @@ +import { CreateMenuItemOptions, MenuItemLocation } from './types'; +import Plugin from '../Plugin'; +/** + * Allows creating and managing menu items. + * + * [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/register_command) + */ +export default class JoplinViewsMenuItems { + private store; + private plugin; + constructor(plugin: Plugin, store: any); + /** + * Creates a new menu item and associate it with the given command. You can specify under which menu the item should appear using the `location` parameter. + */ + create(commandName: string, location?: MenuItemLocation, options?: CreateMenuItemOptions): Promise; +} diff --git a/CliClient/tests/support/plugins/menu/api/JoplinViewsMenus.d.ts b/CliClient/tests/support/plugins/menu/api/JoplinViewsMenus.d.ts new file mode 100644 index 0000000000..866486a080 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/JoplinViewsMenus.d.ts @@ -0,0 +1,18 @@ +import { MenuItem, MenuItemLocation } from './types'; +import Plugin from '../Plugin'; +/** + * Allows creating menus. + * + * [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/menu) + */ +export default class JoplinViewsMenus { + private store; + private plugin; + constructor(plugin: Plugin, store: any); + private registerCommandAccelerators; + /** + * Creates a new menu from the provided menu items and place it at the given location. As of now, it is only possible to place the + * menu as a sub-menu of the application build-in menus. + */ + create(label: string, menuItems: MenuItem[], location?: MenuItemLocation): Promise; +} diff --git a/CliClient/tests/support/plugins/menu/api/JoplinViewsPanels.d.ts b/CliClient/tests/support/plugins/menu/api/JoplinViewsPanels.d.ts new file mode 100644 index 0000000000..98458e401d --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/JoplinViewsPanels.d.ts @@ -0,0 +1,30 @@ +import Plugin from '../Plugin'; +import { ViewHandle } from './types'; +/** + * Allows creating and managing view panels. View panels currently are displayed at the right of the sidebar and allows displaying any HTML content (within a webview) and update it in real-time. For example + * it could be used to display a table of content for the active note, or display various metadata or graph. + * + * [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/toc) + */ +export default class JoplinViewsPanels { + private store; + private plugin; + constructor(plugin: Plugin, store: any); + private controller; + /** + * Creates a new panel + */ + create(): Promise; + /** + * Sets the panel webview HTML + */ + setHtml(handle: ViewHandle, html: string): Promise; + /** + * Adds and loads a new JS or CSS files into the panel. + */ + addScript(handle: ViewHandle, scriptPath: string): Promise; + /** + * Called when a message is sent from the webview (using postMessage). + */ + onMessage(handle: ViewHandle, callback: Function): Promise; +} diff --git a/CliClient/tests/support/plugins/menu/api/JoplinViewsToolbarButtons.d.ts b/CliClient/tests/support/plugins/menu/api/JoplinViewsToolbarButtons.d.ts new file mode 100644 index 0000000000..d937b50b43 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/JoplinViewsToolbarButtons.d.ts @@ -0,0 +1,16 @@ +import { ToolbarButtonLocation } from './types'; +import Plugin from '../Plugin'; +/** + * Allows creating and managing toolbar buttons. + * + * [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/register_command) + */ +export default class JoplinViewsToolbarButtons { + private store; + private plugin; + constructor(plugin: Plugin, store: any); + /** + * Creates a new toolbar button and associate it with the given command. + */ + create(commandName: string, location: ToolbarButtonLocation): Promise; +} diff --git a/CliClient/tests/support/plugins/menu/api/JoplinWorkspace.d.ts b/CliClient/tests/support/plugins/menu/api/JoplinWorkspace.d.ts new file mode 100644 index 0000000000..361eb3a675 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/JoplinWorkspace.d.ts @@ -0,0 +1,34 @@ +/** + * The workspace service provides access to all the parts of Joplin that are being worked on - i.e. the currently selected notes or notebooks as well + * as various related events, such as when a new note is selected, or when the note content changes. + * + * [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins) + */ +export default class JoplinWorkspace { + private store; + constructor(_implementation: any, store: any); + /** + * Called when a new note or notes are selected. + */ + onNoteSelectionChange(callback: Function): Promise; + /** + * Called when the content of a note changes. + */ + onNoteContentChange(callback: Function): Promise; + /** + * Called when an alarm associated with a to-do is triggered. + */ + onNoteAlarmTrigger(callback: Function): Promise; + /** + * Called when the synchronisation process has finished. + */ + onSyncComplete(callback: Function): Promise; + /** + * Gets the currently selected note + */ + selectedNote(): Promise; + /** + * Gets the IDs of the selected notes (can be zero, one, or many). Use the data API to retrieve information about these notes. + */ + selectedNoteIds(): Promise; +} diff --git a/CliClient/tests/support/plugins/menu/api/index.ts b/CliClient/tests/support/plugins/menu/api/index.ts new file mode 100644 index 0000000000..1158f1ed4d --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/index.ts @@ -0,0 +1,5 @@ +import type Joplin from './Joplin'; + +declare const joplin:Joplin; + +export default joplin; diff --git a/CliClient/tests/support/plugins/menu/api/types.ts b/CliClient/tests/support/plugins/menu/api/types.ts new file mode 100644 index 0000000000..ef16847f68 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/api/types.ts @@ -0,0 +1,263 @@ +// ================================================================= +// Command API types +// ================================================================= + +export interface Command { + name: string + label: string + iconName?: string, + execute(props:any):Promise + isEnabled?(props:any):boolean + mapStateToProps?(state:any):any +} + +// ================================================================= +// Interop API types +// ================================================================= + +export enum FileSystemItem { + File = 'file', + Directory = 'directory', +} + +export enum ImportModuleOutputFormat { + Markdown = 'md', + Html = 'html', +} + +/** + * Used to implement a module to export data from Joplin. [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/json_export) for an example. + * + * In general, all the event handlers you'll need to implement take a `context` object as a first argument. This object will contain the export or import path as well as various optional properties, such as which notes or notebooks need to be exported. + * + * To get a better sense of what it will contain it can be useful to print it using `console.info(context)`. + */ +export interface ExportModule { + /** + * The format to be exported, eg "enex", "jex", "json", etc. + */ + format: string, + + /** + * The description that will appear in the UI, for example in the menu item. + */ + description: string, + + /** + * Whether the module will export a single file or multiple files in a directory. It affects the open dialog that will be presented to the user when using your exporter. + */ + target: FileSystemItem, + + /** + * Only applies to single file exporters or importers + * It tells whether the format can package multiple notes into one file. + * For example JEX or ENEX can, but HTML cannot. + */ + isNoteArchive: boolean, + + /** + * The extensions of the files exported by your module. For example, it is `["htm", "html"]` for the HTML module, and just `["jex"]` for the JEX module. + */ + fileExtensions?: string[], + + /** + * Called when the export process starts. + */ + onInit(context:ExportContext): Promise; + + /** + * Called when an item needs to be processed. An "item" can be any Joplin object, such as a note, a folder, a notebook, etc. + */ + onProcessItem(context:ExportContext, itemType:number, item:any):Promise; + + /** + * Called when a resource file needs to be exported. + */ + onProcessResource(context:ExportContext, resource:any, filePath:string):Promise; + + /** + * Called when the export process is done. + */ + onClose(context:ExportContext):Promise; +} + +export interface ImportModule { + /** + * The format to be exported, eg "enex", "jex", "json", etc. + */ + format: string, + + /** + * The description that will appear in the UI, for example in the menu item. + */ + description: string, + + /** + * Only applies to single file exporters or importers + * It tells whether the format can package multiple notes into one file. + * For example JEX or ENEX can, but HTML cannot. + */ + isNoteArchive: boolean, + + /** + * The type of sources that are supported by the module. Tells whether the module can import files or directories or both. + */ + sources: FileSystemItem[], + + /** + * Tells the file extensions of the exported files. + */ + fileExtensions?: string[], + + /** + * Tells the type of notes that will be generated, either HTML or Markdown (default). + */ + outputFormat?: ImportModuleOutputFormat, + + /** + * Called when the import process starts. There is only one event handler within which you should import the complete data. + */ + onExec(context:ImportContext): Promise; +} + +export interface ExportOptions { + format?: string, + path?:string, + sourceFolderIds?: string[], + sourceNoteIds?: string[], + modulePath?:string, + target?:FileSystemItem, +} + +export interface ExportContext { + destPath: string, + options: ExportOptions, + + /** + * You can attach your own custom data using this propery - it will then be passed to each event handler, allowing you to keep state from one event to the next. + */ + userData?: any, +} + +export interface ImportContext { + sourcePath: string, + options: any, + warnings: string[], +} + +// ================================================================= +// Misc types +// ================================================================= + +export interface Script { + onStart?(event:any):Promise, +} + +// ================================================================= +// Menu types +// ================================================================= + +export interface CreateMenuItemOptions { + accelerator: string, +} + +export enum MenuItemLocation { + File = 'file', + Edit = 'edit', + View = 'view', + Note = 'note', + Tools = 'tools', + Help = 'help', + Context = 'context', +} + +export interface MenuItem { + commandName?: string, + accelerator?: string, + submenu?: MenuItem[], + label?: string, +} + +// ================================================================= +// View API types +// ================================================================= + +export interface ButtonSpec { + id: ButtonId, + title?: string, + onClick?():void, +} + +export type ButtonId = string; + +export enum ToolbarButtonLocation { + /** + * This toolbar in the top right corner of the application. It applies to the note as a whole, including its metadata. + */ + NoteToolbar = 'noteToolbar', + + /** + * This toolbar is right above the text editor. It applies to the note body only. + */ + EditorToolbar = 'editorToolbar', +} + +export type ViewHandle = string; + +export interface EditorCommand { + name: string; + value?: any; +} + +// ================================================================= +// Settings types +// ================================================================= + +export enum SettingItemType { + Int = 1, + String = 2, + Bool = 3, + Array = 4, + Object = 5, + Button = 6, +} + +// Redefine a simplified interface to mask internal details +// and to remove function calls as they would have to be async. +export interface SettingItem { + value: any, + type: SettingItemType, + public: boolean, + label:string, + + description?:string, + isEnum?: boolean, + section?: string, + options?:any, + appTypes?:string[], + secure?: boolean, + advanced?: boolean, + minimum?: number, + maximum?: number, + step?: number, +} + +export interface SettingSection { + label: string, + iconName?: string, + description?: string, + name?: string, +} + +// ================================================================= +// Data API types +// ================================================================= + +/** + * An array of at least one element and at most three elements. + * + * [0]: Resource name (eg. "notes", "folders", "tags", etc.) + * [1]: (Optional) Resource ID. + * [2]: (Optional) Resource link. + */ +export type Path = string[]; diff --git a/CliClient/tests/support/plugins/menu/package-lock.json b/CliClient/tests/support/plugins/menu/package-lock.json new file mode 100644 index 0000000000..92d68d2699 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/package-lock.json @@ -0,0 +1,4524 @@ +{ + "name": "joplin_plugin", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@nodelib/fs.scandir": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz", + "integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.3", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz", + "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz", + "integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.3", + "fastq": "^1.6.0" + } + }, + "@npmcli/move-file": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.0.1.tgz", + "integrity": "sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==", + "dev": true, + "requires": { + "mkdirp": "^1.0.4" + } + }, + "@types/json-schema": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz", + "integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==", + "dev": true + }, + "@types/node": { + "version": "14.11.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.11.8.tgz", + "integrity": "sha512-KPcKqKm5UKDkaYPTuXSx8wEP7vE9GnuaXIZKijwRYcePpZFDVuy2a57LarFKiORbHOuTOOwYzxVxcUzsh2P2Pw==", + "dev": true + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dev": true, + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", + "dev": true + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dev": true, + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", + "dev": true + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "dev": true, + "optional": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true, + "optional": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "base64-js": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", + "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary-extensions": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz", + "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==", + "dev": true, + "optional": true + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "bn.js": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz", + "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "randombytes": "^2.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "requires": { + "pako": "~1.0.5" + } + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dev": true, + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "dev": true + }, + "cacache": { + "version": "15.0.5", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.0.5.tgz", + "integrity": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==", + "dev": true, + "requires": { + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.0", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "chokidar": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.2.tgz", + "integrity": "sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==", + "dev": true, + "optional": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.1.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.4.0" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "chrome-trace-event": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", + "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", + "dev": true, + "requires": { + "tslib": "^1.9.0" + } + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "dev": true + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + }, + "dependencies": { + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "copy-webpack-plugin": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-6.2.1.tgz", + "integrity": "sha512-VH2ZTMIBsx4p++Lmpg77adZ0KUyM5gFR/9cuTrbneNnJlcQXUFvsNariPqq2dq2kV3F2skHiDGPQCyKWy1+U0Q==", + "dev": true, + "requires": { + "cacache": "^15.0.5", + "fast-glob": "^3.2.4", + "find-cache-dir": "^3.3.1", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "webpack-sources": "^1.4.3" + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", + "dev": true + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "elliptic": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz", + "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==", + "dev": true, + "requires": { + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz", + "integrity": "sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + } + }, + "errno": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", + "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dev": true, + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "events": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.2.0.tgz", + "integrity": "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==", + "dev": true + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz", + "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fastq": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.8.0.tgz", + "integrity": "sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", + "dev": true + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", + "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", + "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", + "dev": true, + "optional": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "requires": { + "global-prefix": "^3.0.0" + }, + "dependencies": { + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + } + } + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + } + }, + "globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dev": true, + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "dev": true + }, + "ieee754": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", + "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==", + "dev": true + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", + "dev": true + }, + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "dev": true + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + } + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", + "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "dev": true + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "optional": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "dev": true + }, + "loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dev": true, + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": { + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", + "dev": true + }, + "p-limit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.0.2.tgz", + "integrity": "sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + } + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dev": true, + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dev": true, + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true, + "optional": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "pbkdf2": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", + "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "dev": true + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, + "readdirp": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz", + "integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==", + "dev": true, + "optional": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true, + "optional": true + }, + "repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "dependencies": { + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + } + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "run-parallel": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz", + "integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==", + "dev": true + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "dev": true, + "requires": { + "aproba": "^1.1.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "source-map-url": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "dev": true + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "ssri": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.0.tgz", + "integrity": "sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==", + "dev": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true + }, + "tar": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.0.5.tgz", + "integrity": "sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==", + "dev": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + } + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + } + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dev": true, + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "dependencies": { + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dev": true, + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "ssri": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "dev": true, + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "timers-browserify": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz", + "integrity": "sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==", + "dev": true, + "requires": { + "setimmediate": "^1.0.4" + } + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "dev": true + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "ts-loader": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-7.0.5.tgz", + "integrity": "sha512-zXypEIT6k3oTc+OZNx/cqElrsbBtYqDknf48OZos0NQ3RTt045fBIU8RRSu+suObBzYB355aIPGOe/3kj9h7Ig==", + "dev": true, + "requires": { + "chalk": "^2.3.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^1.0.2", + "micromatch": "^4.0.0", + "semver": "^6.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "dev": true + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "typescript": { + "version": "3.9.7", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.7.tgz", + "integrity": "sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true, + "optional": true + }, + "uri-js": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz", + "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + } + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "v8-compile-cache": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz", + "integrity": "sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==", + "dev": true + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true + }, + "watchpack": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.4.tgz", + "integrity": "sha512-aWAgTW4MoSJzZPAicljkO1hsi1oKj/RRq/OJQh2PKI2UKL04c2Bs+MBOB+BBABHTXJpf9mCwHN7ANCvYsvY2sg==", + "dev": true, + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.0" + } + }, + "watchpack-chokidar2": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz", + "integrity": "sha512-9TyfOyN/zLUbA288wZ8IsMZ+6cbzvsNyEzSBp6e/zkifi6xxbl8SmQ/CxQq32k8NNqrdVEVUVSEf56L4rQ/ZxA==", + "dev": true, + "optional": true, + "requires": { + "chokidar": "^2.1.8" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "optional": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "optional": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "optional": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "optional": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "optional": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "optional": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "optional": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "optional": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "optional": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "optional": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "optional": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "optional": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "optional": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "optional": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "webpack": { + "version": "4.44.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", + "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.3.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "webpack-cli": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.12.tgz", + "integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "cross-spawn": "^6.0.5", + "enhanced-resolve": "^4.1.1", + "findup-sync": "^3.0.0", + "global-modules": "^2.0.0", + "import-local": "^2.0.0", + "interpret": "^1.4.0", + "loader-utils": "^1.4.0", + "supports-color": "^6.1.0", + "v8-compile-cache": "^2.1.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dev": true, + "requires": { + "errno": "~0.1.7" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + } + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } +} diff --git a/CliClient/tests/support/plugins/menu/package.json b/CliClient/tests/support/plugins/menu/package.json new file mode 100644 index 0000000000..2d9b8a3e83 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/package.json @@ -0,0 +1,20 @@ +{ + "name": "joplin_plugin", + "version": "1.0.0", + "description": "", + "scripts": { + "dist": "webpack", + "postinstall": "npm run dist" + }, + "keywords": [], + "author": "", + "license": "MIT", + "devDependencies": { + "@types/node": "^14.0.14", + "copy-webpack-plugin": "^6.1.0", + "ts-loader": "^7.0.5", + "typescript": "^3.9.3", + "webpack": "^4.43.0", + "webpack-cli": "^3.3.11" + } +} diff --git a/CliClient/tests/support/plugins/menu/src/index.ts b/CliClient/tests/support/plugins/menu/src/index.ts new file mode 100644 index 0000000000..f59055909f --- /dev/null +++ b/CliClient/tests/support/plugins/menu/src/index.ts @@ -0,0 +1,25 @@ +import joplin from 'api'; + +joplin.plugins.register({ + onStart: async function() { + await joplin.views.menus.create('My Menu', [ + { + commandName: "newNote", + }, + { + commandName: "newFolder", + }, + { + label: 'My sub-menu', + submenu: [ + { + commandName: 'print', + }, + { + commandName: 'setTags', + }, + ], + }, + ]); + }, +}); diff --git a/CliClient/tests/support/plugins/menu/src/manifest.json b/CliClient/tests/support/plugins/menu/src/manifest.json new file mode 100644 index 0000000000..19cdb83d1a --- /dev/null +++ b/CliClient/tests/support/plugins/menu/src/manifest.json @@ -0,0 +1,8 @@ +{ + "manifest_version": 1, + "name": "Menu Test", + "description": "", + "version": "1.0.0", + "author": "", + "homepage_url": "" +} diff --git a/CliClient/tests/support/plugins/menu/tsconfig.json b/CliClient/tests/support/plugins/menu/tsconfig.json new file mode 100644 index 0000000000..4474cab3d9 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/tsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "outDir": "./dist/", + "module": "commonjs", + "target": "es2015", + "jsx": "react", + "allowJs": true, + "baseUrl": "." + } +} diff --git a/CliClient/tests/support/plugins/menu/webpack.config.js b/CliClient/tests/support/plugins/menu/webpack.config.js new file mode 100644 index 0000000000..c3d740c885 --- /dev/null +++ b/CliClient/tests/support/plugins/menu/webpack.config.js @@ -0,0 +1,44 @@ +const path = require('path'); +const CopyPlugin = require('copy-webpack-plugin'); + +module.exports = { + mode: 'production', + entry: './src/index.ts', + target: 'node', + module: { + rules: [ + { + test: /\.tsx?$/, + use: 'ts-loader', + exclude: /node_modules/, + }, + ], + }, + resolve: { + alias: { + api: path.resolve(__dirname, 'api') + }, + extensions: [ '.tsx', '.ts', '.js' ], + }, + output: { + filename: 'index.js', + path: path.resolve(__dirname, 'dist'), + }, + plugins: [ + new CopyPlugin({ + patterns: [ + { + from: "**/*", + context: path.resolve(__dirname, 'src'), + to: path.resolve(__dirname, 'dist'), + globOptions: { + ignore: [ + '**/*.ts', + '**/*.tsx', + ], + }, + }, + ], + }), + ], +}; diff --git a/ElectronClient/app.ts b/ElectronClient/app.ts index 9fa09bffcf..4221389989 100644 --- a/ElectronClient/app.ts +++ b/ElectronClient/app.ts @@ -466,14 +466,14 @@ class Application extends BaseApplication { async start(argv:string[]):Promise { const electronIsDev = require('electron-is-dev'); - await fs.mkdirp(Setting.value('templateDir'), 0o755); - // If running inside a package, the command line, instead of being "node.exe " is "joplin.exe " so // insert an extra argument so that they can be processed in a consistent way everywhere. if (!electronIsDev) argv.splice(1, 0, '.'); argv = await super.start(argv); + await fs.mkdirp(Setting.value('templateDir'), 0o755); + await this.applySettingsSideEffects(); if (Setting.value('sync.upgradeState') === Setting.SYNC_UPGRADE_STATE_MUST_DO) { diff --git a/ElectronClient/gui/MainScreen/commands/toggleNoteList.ts b/ElectronClient/gui/MainScreen/commands/toggleNoteList.ts index 0dce9694db..fa95e07889 100644 --- a/ElectronClient/gui/MainScreen/commands/toggleNoteList.ts +++ b/ElectronClient/gui/MainScreen/commands/toggleNoteList.ts @@ -4,7 +4,7 @@ import { _ } from 'lib/locale'; export const declaration:CommandDeclaration = { name: 'toggleNoteList', label: () => _('Toggle note list'), - iconName: 'fa-align-justify', + iconName: 'fas fa-align-justify', }; export const runtime = (comp:any):CommandRuntime => { @@ -14,8 +14,5 @@ export const runtime = (comp:any):CommandRuntime => { type: 'NOTELIST_VISIBILITY_TOGGLE', }); }, - title: () => { - return _('Toggle note list'); - }, }; }; diff --git a/ElectronClient/gui/MainScreen/commands/toggleSidebar.ts b/ElectronClient/gui/MainScreen/commands/toggleSidebar.ts index 77ab6ea6b4..b5c96cdc44 100644 --- a/ElectronClient/gui/MainScreen/commands/toggleSidebar.ts +++ b/ElectronClient/gui/MainScreen/commands/toggleSidebar.ts @@ -4,7 +4,7 @@ import { _ } from 'lib/locale'; export const declaration:CommandDeclaration = { name: 'toggleSidebar', label: () => _('Toggle sidebar'), - iconName: 'fa-bars', + iconName: 'fas fa-bars', }; export const runtime = (comp:any):CommandRuntime => { @@ -14,8 +14,5 @@ export const runtime = (comp:any):CommandRuntime => { type: 'SIDEBAR_VISIBILITY_TOGGLE', }); }, - title: () => { - return _('Toggle sidebar'); - }, }; }; diff --git a/ElectronClient/gui/MenuBar.tsx b/ElectronClient/gui/MenuBar.tsx index 85d56610d2..bf99b62abc 100644 --- a/ElectronClient/gui/MenuBar.tsx +++ b/ElectronClient/gui/MenuBar.tsx @@ -5,14 +5,14 @@ import { stateUtils } from 'lib/reducer'; import CommandService from 'lib/services/CommandService'; import MenuUtils from 'lib/services/commands/MenuUtils'; import KeymapService from 'lib/services/KeymapService'; -import { utils as pluginUtils, ViewInfo } from 'lib/services/plugins/reducer'; +import { PluginStates, utils as pluginUtils } from 'lib/services/plugins/reducer'; import shim from 'lib/shim'; import Setting from 'lib/models/Setting'; import versionInfo from 'lib/versionInfo'; import { Module } from 'lib/services/interop/types'; import InteropServiceHelper from '../InteropServiceHelper'; import { _ } from 'lib/locale'; -import { MenuItemLocation } from 'lib/services/plugins/api/types'; +import { MenuItem, MenuItemLocation } from 'lib/services/plugins/api/types'; const { connect } = require('react-redux'); const { reg } = require('lib/registry.js'); @@ -23,6 +23,51 @@ const Menu = bridge().Menu; const PluginManager = require('lib/services/PluginManager'); const TemplateUtils = require('lib/TemplateUtils'); +const menuUtils = new MenuUtils(CommandService.instance()); + +function pluginMenuItemsCommandNames(menuItems:MenuItem[]):string[] { + let output:string[] = []; + for (const menuItem of menuItems) { + if (menuItem.submenu) { + output = output.concat(pluginMenuItemsCommandNames(menuItem.submenu)); + } else { + if (menuItem.commandName) output.push(menuItem.commandName); + } + } + return output; +} + +function pluginCommandNames(plugins:PluginStates):string[] { + let output:string[] = []; + + for (const view of pluginUtils.viewsByType(plugins, 'menu')) { + output = output.concat(pluginMenuItemsCommandNames(view.menuItems)); + } + + for (const view of pluginUtils.viewsByType(plugins, 'menuItem')) { + if (view.commandName) output.push(view.commandName); + } + + return output; +} + +function createPluginMenuTree(label:string, menuItems:MenuItem[], onMenuItemClick:Function) { + const output:any = { + label: label, + submenu: [], + }; + + for (const menuItem of menuItems) { + if (menuItem.submenu) { + output.submenu.push(createPluginMenuTree(menuItem.label, menuItem.submenu, onMenuItemClick)); + } else { + output.submenu.push(menuUtils.commandToMenuItem(menuItem.commandName, onMenuItemClick)); + } + } + + return output; +} + interface Props { dispatch: Function, menuItemProps: any, @@ -36,7 +81,8 @@ interface Props { showNoteCounts: boolean, uncompletedTodosOnTop: boolean, showCompletedTodos: boolean, - pluginMenuItemInfos: ViewInfo[], + pluginMenuItems: any[], + pluginMenus: any[], } const commandNames:string[] = [ @@ -85,8 +131,6 @@ function menuItemSetEnabled(id:string, enabled:boolean) { menuItem.enabled = enabled; } -const menuUtils = new MenuUtils(CommandService.instance()); - function useMenu(props:Props) { const [menu, setMenu] = useState(null); const [keymapLastChangeTime, setKeymapLastChangeTime] = useState(Date.now()); @@ -143,7 +187,7 @@ function useMenu(props:Props) { useEffect(() => { const keymapService = KeymapService.instance(); - const pluginCommandNames = props.pluginMenuItemInfos.map((viewInfo:ViewInfo) => viewInfo.view.commandName); + const pluginCommandNames = props.pluginMenuItems.map((view:any) => view.commandName); const menuItemDic = menuUtils.commandsToMenuItems(commandNames.concat(pluginCommandNames), (commandName:string) => onMenuItemClickRef.current(commandName)); const quitMenuItem = { @@ -397,12 +441,16 @@ function useMenu(props:Props) { }, shim.isMac() ? noItem : printItem, { type: 'separator', platforms: ['darwin'], - }, { + }, + + shim.isMac() ? { label: _('Hide %s', 'Joplin'), platforms: ['darwin'], accelerator: shim.isMac() && keymapService.getAccelerator('hideApp'), click: () => { bridge().electronApp().hide(); }, - }, { + } : noItem, + + { type: 'separator', }, quitMenuItem], @@ -641,26 +689,36 @@ function useMenu(props:Props) { rootMenus[key].submenu = cleanUpSeparators(rootMenus[key].submenu); } - const pluginMenuItems = PluginManager.instance().menuItems(); - for (const item of pluginMenuItems) { - const itemParent = rootMenus[item.parent] ? rootMenus[item.parent] : 'tools'; - itemParent.submenu.push(item); + { + // This is for GotoAnything only - should be refactored since this plugin manager is not used otherwise + const pluginMenuItems = PluginManager.instance().menuItems(); + for (const item of pluginMenuItems) { + const itemParent = rootMenus[item.parent] ? rootMenus[item.parent] : 'tools'; + itemParent.submenu.push(item); + } } - // TODO: test - - const pluginViewInfos = props.pluginMenuItemInfos; - - for (const info of pluginViewInfos) { - const location:MenuItemLocation = info.view.location; + for (const view of props.pluginMenuItems) { + const location:MenuItemLocation = view.location; if (location === MenuItemLocation.Context) continue; const itemParent = rootMenus[location]; if (!itemParent) { - reg.logger().error('Menu item location does not exist: ', location, info); + reg.logger().error('Menu item location does not exist: ', location, view); } else { - itemParent.submenu.push(menuItemDic[info.view.commandName]); + itemParent.submenu.push(menuItemDic[view.commandName]); + } + } + + for (const view of props.pluginMenus) { + if (view.location === MenuItemLocation.Context) continue; + const itemParent = rootMenus[view.location]; + + if (!itemParent) { + reg.logger().error('Menu location does not exist: ', location, view); + } else { + itemParent.submenu.push(createPluginMenuTree(view.label, view.menuItems, (commandName:string) => onMenuItemClickRef.current(commandName))); } } @@ -725,7 +783,7 @@ function useMenu(props:Props) { } else { setMenu(Menu.buildFromTemplate(template)); } - }, [props.routeName, props.pluginMenuItemInfos, keymapLastChangeTime, modulesLastChangeTime]); + }, [props.routeName, props.pluginMenuItems, props.pluginMenus, keymapLastChangeTime, modulesLastChangeTime]); useEffect(() => { for (const commandName in props.menuItemProps) { @@ -735,7 +793,7 @@ function useMenu(props:Props) { const layoutButtonSequenceOptions = Setting.enumOptions('layoutButtonSequence'); for (const value in layoutButtonSequenceOptions) { - menuItemSetEnabled(`layoutButtonSequence_${value}`, props.layoutButtonSequence === Number(value)); + menuItemSetChecked(`layoutButtonSequence_${value}`, props.layoutButtonSequence === Number(value)); } function applySortItemCheckState(type:string) { @@ -801,7 +859,7 @@ function MenuBar(props:Props):JSX.Element { const mapStateToProps = (state:AppState) => { return { - menuItemProps: menuUtils.commandsToMenuItemProps(state, commandNames), + menuItemProps: menuUtils.commandsToMenuItemProps(state, commandNames.concat(pluginCommandNames(state.pluginService.plugins))), routeName: state.route.routeName, selectedFolderId: state.selectedFolderId, layoutButtonSequence: state.settings.layoutButtonSequence, @@ -812,7 +870,8 @@ const mapStateToProps = (state:AppState) => { showNoteCounts: state.settings.showNoteCounts, uncompletedTodosOnTop: state.settings.uncompletedTodosOnTop, showCompletedTodos: state.settings.showCompletedTodos, - pluginMenuItemInfos: stateUtils.selectArrayShallow({ array: pluginUtils.viewInfosByType(state.pluginService.plugins, 'menuItem') }, 'menuBar.pluginMenuItemInfos'), + pluginMenuItems: stateUtils.selectArrayShallow({ array: pluginUtils.viewsByType(state.pluginService.plugins, 'menuItem') }, 'menuBar.pluginMenuItems'), + pluginMenus: stateUtils.selectArrayShallow({ array: pluginUtils.viewsByType(state.pluginService.plugins, 'menu') }, 'menuBar.pluginMenus'), }; }; diff --git a/ElectronClient/package-lock.json b/ElectronClient/package-lock.json index acf022c93c..7c98b7e26c 100644 --- a/ElectronClient/package-lock.json +++ b/ElectronClient/package-lock.json @@ -1,6 +1,6 @@ { "name": "Joplin", - "version": "1.3.1", + "version": "1.3.2", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -1535,8 +1535,7 @@ }, "mkdirp": { "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "resolved": "", "dev": true, "optional": true, "requires": { @@ -1701,8 +1700,7 @@ "dependencies": { "minimist": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "resolved": "", "dev": true, "optional": true } @@ -1817,8 +1815,7 @@ }, "tar": { "version": "4.4.8", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.8.tgz", - "integrity": "sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ==", + "resolved": "", "dev": true, "optional": true, "requires": { @@ -5924,9 +5921,7 @@ "minimist": { "version": "0.0.8", "resolved": false, - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", - "dev": true, - "optional": true + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" }, "minipass": { "version": "2.9.0", @@ -5950,14 +5945,9 @@ } }, "mkdirp": { - "version": "0.5.1", - "resolved": false, - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "version": "0.5.5", "dev": true, - "optional": true, - "requires": { - "minimist": "0.0.8" - } + "optional": true }, "ms": { "version": "2.1.2", @@ -6127,8 +6117,7 @@ "dependencies": { "minimist": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "resolved": "", "dev": true, "optional": true } diff --git a/ElectronClient/package.json b/ElectronClient/package.json index 73c287cf26..4638933040 100644 --- a/ElectronClient/package.json +++ b/ElectronClient/package.json @@ -1,6 +1,6 @@ { "name": "Joplin", - "version": "1.3.1", + "version": "1.3.2", "description": "Joplin for Desktop", "main": "main.js", "scripts": { diff --git a/Joplin_install_and_update.sh b/Joplin_install_and_update.sh index 828a7f11bd..8cbb38ab64 100755 --- a/Joplin_install_and_update.sh +++ b/Joplin_install_and_update.sh @@ -1,4 +1,5 @@ -#!/bin/bash +#!/usr/bin/env bash + set -e #----------------------------------------------------- diff --git a/README.md b/README.md index cec6763279..66bc8a480f 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ The Web Clipper is a browser extension that allows you to save web pages and scr - [Note History spec](https://github.com/laurent22/joplin/blob/dev/readme/spec/history.md) - [Sync Lock spec](https://github.com/laurent22/joplin/blob/dev/readme/spec/sync_lock.md) - [Plugin Architecture spec](https://github.com/laurent22/joplin/blob/dev/readme/spec/plugins.md) - - [Search Sorting spec](https://github.com/laurent22/joplin/blob/dev/readme/spec/search_sorting.md) + - [Search Sorting spec](https://github.com/laurent22/joplin/blob/dev/readme/spec/search_sorting.md) - Google Summer of Code 2020 diff --git a/ReactNativeClient/lib/services/CommandService.ts b/ReactNativeClient/lib/services/CommandService.ts index c2b7c12878..e4c200b029 100644 --- a/ReactNativeClient/lib/services/CommandService.ts +++ b/ReactNativeClient/lib/services/CommandService.ts @@ -25,7 +25,6 @@ export interface CommandRuntime { // Used for the (optional) toolbar button title title?(props:any):string, - // props?:any } export interface CommandDeclaration { diff --git a/ReactNativeClient/lib/services/KeymapService.ts b/ReactNativeClient/lib/services/KeymapService.ts index 0a4394cfda..fd9d174944 100644 --- a/ReactNativeClient/lib/services/KeymapService.ts +++ b/ReactNativeClient/lib/services/KeymapService.ts @@ -172,12 +172,14 @@ export default class KeymapService extends BaseService { .replace(/Alt/g, this.platform === 'darwin' ? 'Option' : 'Alt'); } - registerCommandAccelerator(commandName:string, accelerator:string) { + public registerCommandAccelerator(commandName:string, accelerator:string) { // If the command is already registered, we don't register it again and // we don't update the accelerator. This is because it might have been // modified by the user and we don't want the plugin to overwrite this. if (this.keymap[commandName]) return; + if (!commandName) throw new Error('Cannot register an accelerator without a command name'); + const validatedAccelerator = this.convertToPlatform(accelerator); this.validateAccelerator(validatedAccelerator); diff --git a/ReactNativeClient/lib/services/commands/MenuUtils.ts b/ReactNativeClient/lib/services/commands/MenuUtils.ts index a1153fd9a9..465e0df68f 100644 --- a/ReactNativeClient/lib/services/commands/MenuUtils.ts +++ b/ReactNativeClient/lib/services/commands/MenuUtils.ts @@ -69,7 +69,7 @@ export default class MenuUtils { return KeymapService.instance(); } - private commandToMenuItem(commandName:string, onClick:Function):MenuItem { + public commandToMenuItem(commandName:string, onClick:Function):MenuItem { const command = this.service.commandByName(commandName); const item:MenuItem = { @@ -88,10 +88,9 @@ export default class MenuUtils { } public commandToStatefulMenuItem(commandName:string, props:any = null):MenuItem { - const output = this.commandsToMenuItems([commandName], () => { + return this.commandToMenuItem(commandName, () => { return this.service.execute(commandName, props ? props : {}); }); - return output[commandName]; } public commandsToMenuItems(commandNames:string[], onClick:Function):MenuItems { diff --git a/ReactNativeClient/lib/services/interop/InteropService_Exporter_Html.ts b/ReactNativeClient/lib/services/interop/InteropService_Exporter_Html.ts index 1c448bc601..6d6463a21e 100644 --- a/ReactNativeClient/lib/services/interop/InteropService_Exporter_Html.ts +++ b/ReactNativeClient/lib/services/interop/InteropService_Exporter_Html.ts @@ -103,7 +103,7 @@ export default class InteropService_Exporter_Html extends InteropService_Exporte // The source path is a bit hard-coded but shouldn't change. for (let i = 0; i < result.pluginAssets.length; i++) { const asset = result.pluginAssets[i]; - const filePath = `${dirname(dirname(__dirname))}/gui/note-viewer/pluginAssets/${asset.name}`; + const filePath = `${dirname(dirname(dirname(__dirname)))}/gui/note-viewer/pluginAssets/${asset.name}`; const destPath = `${dirname(noteFilePath)}/pluginAssets/${asset.name}`; await shim.fsDriver().mkdir(dirname(destPath)); await shim.fsDriver().copy(filePath, destPath); diff --git a/ReactNativeClient/lib/services/plugins/MenuController.ts b/ReactNativeClient/lib/services/plugins/MenuController.ts new file mode 100644 index 0000000000..65201ce8b5 --- /dev/null +++ b/ReactNativeClient/lib/services/plugins/MenuController.ts @@ -0,0 +1,26 @@ +import { MenuItem, MenuItemLocation } from './api/types'; +import ViewController from './ViewController'; + +export default class MenuController extends ViewController { + + constructor(id:string, pluginId:string, store:any, label:string, menuItems: MenuItem[], location:MenuItemLocation) { + super(id, pluginId, store); + + this.store.dispatch({ + type: 'PLUGIN_VIEW_ADD', + pluginId: pluginId, + view: { + id: this.handle, + type: this.type, + label: label, + menuItems: menuItems, + location: location, + }, + }); + } + + public get type():string { + return 'menu'; + } + +} diff --git a/ReactNativeClient/lib/services/plugins/PluginService.ts b/ReactNativeClient/lib/services/plugins/PluginService.ts index 9dfa8c899c..89d19c566b 100644 --- a/ReactNativeClient/lib/services/plugins/PluginService.ts +++ b/ReactNativeClient/lib/services/plugins/PluginService.ts @@ -4,7 +4,7 @@ import Global from 'lib/services/plugins/api/Global'; import BasePluginRunner from 'lib/services/plugins/BasePluginRunner'; import BaseService from '../BaseService'; import shim from 'lib/shim'; -const { filename } = require('lib/path-utils'); +const { filename, dirname } = require('lib/path-utils'); const nodeSlug = require('slug'); interface Plugins { @@ -49,9 +49,52 @@ export default class PluginService extends BaseService { return this.plugins_[id]; } - async loadPlugin(path:string):Promise { + private async parsePluginJsBundle(jsBundleString:string) { + const scriptText = jsBundleString; + const lines = scriptText.split('\n'); + const manifestText:string[] = []; + + const StateStarted = 1; + const StateInManifest = 2; + let state:number = StateStarted; + + for (let line of lines) { + line = line.trim(); + + if (state !== StateInManifest) { + if (line === '/* joplin-manifest:') { + state = StateInManifest; + } + continue; + } + + if (state === StateInManifest) { + if (line.indexOf('*/') === 0) { + break; + } else { + manifestText.push(line); + } + } + } + + if (!manifestText.length) throw new Error('Could not find manifest'); + + return { + scriptText: scriptText, + manifestText: manifestText.join('\n'), + }; + } + + public async loadPluginFromString(pluginId:string, baseDir:string, jsBundleString:string):Promise { + const r = await this.parsePluginJsBundle(jsBundleString); + return this.loadPlugin(pluginId, baseDir, r.manifestText, r.scriptText); + } + + private async loadPluginFromPath(path:string):Promise { const fsDriver = shim.fsDriver(); + if (path.toLowerCase().endsWith('.js')) return this.loadPluginFromString(filename(path), dirname(path), await fsDriver.readFile(path)); + let distPath = path; if (!(await fsDriver.exists(`${distPath}/manifest.json`))) { distPath = `${path}/dist`; @@ -59,19 +102,22 @@ export default class PluginService extends BaseService { this.logger().info(`PluginService: Loading plugin from ${path}`); - const manifestPath = `${distPath}/manifest.json`; - const indexPath = `${distPath}/index.js`; - const manifestContent = await fsDriver.readFile(manifestPath); - const manifest = manifestFromObject(JSON.parse(manifestContent)); - const scriptText = await fsDriver.readFile(indexPath); + const scriptText = await fsDriver.readFile(`${distPath}/index.js`); + const manifestText = await fsDriver.readFile(`${distPath}/manifest.json`); const pluginId = makePluginId(filename(path)); + return this.loadPlugin(pluginId, distPath, manifestText, scriptText); + } + + private async loadPlugin(pluginId:string, baseDir:string, manifestText:string, scriptText:string):Promise { + const manifest = manifestFromObject(JSON.parse(manifestText)); + // After transforming the plugin path to an ID, multiple plugins might end up with the same ID. For // example "MyPlugin" and "myplugin" would have the same ID. Technically it's possible to have two // such folders but to keep things sane we disallow it. if (this.plugins_[pluginId]) throw new Error(`There is already a plugin with this ID: ${pluginId}`); - const plugin = new Plugin(pluginId, distPath, manifest, scriptText, this.logger()); + const plugin = new Plugin(pluginId, baseDir, manifest, scriptText, this.logger()); this.store_.dispatch({ type: 'PLUGIN_ADD', @@ -84,14 +130,14 @@ export default class PluginService extends BaseService { return plugin; } - async loadAndRunPlugins(pluginDirOrPaths:string | string[]) { + public async loadAndRunPlugins(pluginDirOrPaths:string | string[]) { let pluginPaths = []; if (Array.isArray(pluginDirOrPaths)) { pluginPaths = pluginDirOrPaths; } else { pluginPaths = (await shim.fsDriver().readDirStats(pluginDirOrPaths)) - .filter((stat:any) => stat.isDirectory()) + .filter((stat:any) => (stat.isDirectory() || stat.path.toLowerCase().endsWith('.js'))) .map((stat:any) => `${pluginDirOrPaths}/${stat.path}`); } @@ -102,7 +148,7 @@ export default class PluginService extends BaseService { } try { - const plugin = await this.loadPlugin(pluginPath); + const plugin = await this.loadPluginFromPath(pluginPath); await this.runPlugin(plugin); } catch (error) { this.logger().error(`PluginService: Could not load plugin: ${pluginPath}`, error); @@ -110,7 +156,7 @@ export default class PluginService extends BaseService { } } - async runPlugin(plugin:Plugin) { + public async runPlugin(plugin:Plugin) { this.plugins_[plugin.id] = plugin; const pluginApi = new Global(this.logger(), this.platformImplementation_, plugin, this.store_); return this.runner_.run(plugin, pluginApi); diff --git a/ReactNativeClient/lib/services/plugins/api/JoplinSettings.ts b/ReactNativeClient/lib/services/plugins/api/JoplinSettings.ts index 9981ed7e17..f72fd21771 100644 --- a/ReactNativeClient/lib/services/plugins/api/JoplinSettings.ts +++ b/ReactNativeClient/lib/services/plugins/api/JoplinSettings.ts @@ -73,4 +73,15 @@ export default class JoplinSettings { async setValue(key:string, value:any) { return Setting.setValue(this.namespacedKey(key), value); } + + /** + * Gets a global setting value, including app-specific settings and those set by other plugins. + * + * The list of available settings is not documented yet, but can be found by looking at the source code: + * + * https://github.com/laurent22/joplin/blob/3539a452a359162c461d2849829d2d42973eab50/ReactNativeClient/lib/models/Setting.ts#L142 + */ + async globalValue(key:string):Promise { + return Setting.value(key); + } } diff --git a/ReactNativeClient/lib/services/plugins/api/JoplinViews.ts b/ReactNativeClient/lib/services/plugins/api/JoplinViews.ts index 7befe41d58..4d8f4ed23f 100644 --- a/ReactNativeClient/lib/services/plugins/api/JoplinViews.ts +++ b/ReactNativeClient/lib/services/plugins/api/JoplinViews.ts @@ -1,6 +1,7 @@ import Plugin from '../Plugin'; import JoplinViewsDialogs from './JoplinViewsDialogs'; import JoplinViewsMenuItems from './JoplinViewsMenuItems'; +import JoplinViewsMenus from './JoplinViewsMenus'; import JoplinViewsToolbarButtons from './JoplinViewsToolbarButtons'; import JoplinViewsPanels from './JoplinViewsPanels'; @@ -18,6 +19,7 @@ export default class JoplinViews { private dialogs_:JoplinViewsDialogs = null; private panels_:JoplinViewsPanels = null; private menuItems_:JoplinViewsMenuItems = null; + private menus_:JoplinViewsMenus = null; private toolbarButtons_:JoplinViewsToolbarButtons = null; private implementation_:any = null; @@ -42,6 +44,11 @@ export default class JoplinViews { return this.menuItems_; } + public get menus():JoplinViewsMenus { + if (!this.menus_) this.menus_ = new JoplinViewsMenus(this.plugin, this.store); + return this.menus_; + } + public get toolbarButtons():JoplinViewsToolbarButtons { if (!this.toolbarButtons_) this.toolbarButtons_ = new JoplinViewsToolbarButtons(this.plugin, this.store); return this.toolbarButtons_; diff --git a/ReactNativeClient/lib/services/plugins/api/JoplinViewsMenus.ts b/ReactNativeClient/lib/services/plugins/api/JoplinViewsMenus.ts new file mode 100644 index 0000000000..04ba930631 --- /dev/null +++ b/ReactNativeClient/lib/services/plugins/api/JoplinViewsMenus.ts @@ -0,0 +1,45 @@ +import KeymapService from 'lib/services/KeymapService'; +import { MenuItem, MenuItemLocation } from './types'; +import MenuController from '../MenuController'; +import Plugin from '../Plugin'; +import createViewHandle from '../utils/createViewHandle'; + +/** + * Allows creating menus. + * + * [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/menu) + */ +export default class JoplinViewsMenus { + + private store: any; + private plugin: Plugin; + + constructor(plugin: Plugin, store: any) { + this.store = store; + this.plugin = plugin; + } + + private registerCommandAccelerators(menuItems:MenuItem[]) { + for (const menuItem of menuItems) { + if (menuItem.accelerator) { + KeymapService.instance().registerCommandAccelerator(menuItem.commandName, menuItem.accelerator); + } + + if (menuItem.submenu) { + this.registerCommandAccelerators(menuItem.submenu); + } + } + } + + /** + * Creates a new menu from the provided menu items and place it at the given location. As of now, it is only possible to place the + * menu as a sub-menu of the application build-in menus. + */ + public async create(label:string, menuItems:MenuItem[], location:MenuItemLocation = MenuItemLocation.Tools) { + const handle = createViewHandle(this.plugin); + const controller = new MenuController(handle, this.plugin.id, this.store, label, menuItems, location); + this.plugin.addViewController(controller); + this.registerCommandAccelerators(menuItems); + } + +} diff --git a/ReactNativeClient/lib/services/plugins/api/types.ts b/ReactNativeClient/lib/services/plugins/api/types.ts index 2164e6c407..71bc6d1f74 100644 --- a/ReactNativeClient/lib/services/plugins/api/types.ts +++ b/ReactNativeClient/lib/services/plugins/api/types.ts @@ -154,17 +154,9 @@ export interface Script { } // ================================================================= -// View API types +// Menu types // ================================================================= -export type ButtonId = string; - -export interface ButtonSpec { - id: ButtonId, - title?: string, - onClick?():void, -} - export interface CreateMenuItemOptions { accelerator: string, } @@ -179,6 +171,41 @@ export enum MenuItemLocation { Context = 'context', } +export interface MenuItem { + /** + * Command that should be associated with the menu item. All menu item should + * have a command associated with them unless they are a sub-menu. + */ + commandName?: string, + + /** + * Accelerator associated with the menu item + */ + accelerator?: string, + + /** + * Menu items that should appear below this menu item. Allows creating a menu tree. + */ + submenu?: MenuItem[], + + /** + * Menu item label. If not specified, the command label will be used instead. + */ + label?: string, +} + +// ================================================================= +// View API types +// ================================================================= + +export interface ButtonSpec { + id: ButtonId, + title?: string, + onClick?():void, +} + +export type ButtonId = string; + export enum ToolbarButtonLocation { /** * This toolbar in the top right corner of the application. It applies to the note as a whole, including its metadata. diff --git a/ReactNativeClient/lib/services/plugins/reducer.ts b/ReactNativeClient/lib/services/plugins/reducer.ts index d5a7339908..e592d0cf0f 100644 --- a/ReactNativeClient/lib/services/plugins/reducer.ts +++ b/ReactNativeClient/lib/services/plugins/reducer.ts @@ -34,6 +34,9 @@ export const defaultState:State = { }; export const utils = { + + // It is best to use viewsByType instead as this method creates new objects + // which might trigger unecessary renders even when plugin and views haven't changed. viewInfosByType: function(plugins:PluginStates, type:string):ViewInfo[] { const output:ViewInfo[] = []; @@ -53,6 +56,22 @@ export const utils = { return output; }, + viewsByType: function(plugins:PluginStates, type:string):any[] { + const output:any[] = []; + + for (const pluginId in plugins) { + const plugin = plugins[pluginId]; + for (const viewId in plugin.views) { + const view = plugin.views[viewId]; + if (view.type !== type) continue; + + output.push(view); + } + } + + return output; + }, + commandNamesFromViews: function(plugins:PluginStates, toolbarType:string):string[] { const infos = utils.viewInfosByType(plugins, 'toolbarButton'); diff --git a/ReactNativeClient/lib/services/plugins/utils/manifestFromObject.ts b/ReactNativeClient/lib/services/plugins/utils/manifestFromObject.ts index 55b837a98f..45f9d47dbd 100644 --- a/ReactNativeClient/lib/services/plugins/utils/manifestFromObject.ts +++ b/ReactNativeClient/lib/services/plugins/utils/manifestFromObject.ts @@ -23,7 +23,7 @@ export default function manifestFromObject(o:any):PluginManifest { name: getString('name', true), version: getString('version', true), description: getString('description', false), - homepage_url: getString('homepage_url'), + homepage_url: getString('homepage_url', false), permissions: permissions, }; diff --git a/Tools/build-website.js b/Tools/build-website.js index 6f2ecc10fe..e5d9f8fd39 100644 --- a/Tools/build-website.js +++ b/Tools/build-website.js @@ -33,6 +33,15 @@ https://github.com/laurent22/joplin/blob/dev/{{{sourceMarkdownFile}}} background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -77,6 +86,7 @@ https://github.com/laurent22/joplin/blob/dev/{{{sourceMarkdownFile}}} background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -189,8 +199,9 @@ https://github.com/laurent22/joplin/blob/dev/{{{sourceMarkdownFile}}} } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -207,9 +218,8 @@ https://github.com/laurent22/joplin/blob/dev/{{{sourceMarkdownFile}}} padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -220,11 +230,11 @@ https://github.com/laurent22/joplin/blob/dev/{{{sourceMarkdownFile}}} font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -233,7 +243,7 @@ https://github.com/laurent22/joplin/blob/dev/{{{sourceMarkdownFile}}} display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -259,6 +269,23 @@ https://github.com/laurent22/joplin/blob/dev/{{{sourceMarkdownFile}}} opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -280,7 +307,7 @@ https://github.com/laurent22/joplin/blob/dev/{{{sourceMarkdownFile}}} -
+
@@ -308,11 +335,15 @@ https://github.com/laurent22/joplin/blob/dev/{{{sourceMarkdownFile}}}
{{{tocHtml}}} + +
`; const footerHtmlTemplate = ` +
+ diff --git a/docs/api/get_started/plugins/index.html b/docs/api/get_started/plugins/index.html index a2a9428738..2f8cae75a4 100644 --- a/docs/api/get_started/plugins/index.html +++ b/docs/api/get_started/plugins/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/api/get_started/plugins.md and any manu made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/api/get_started/plugins.md +https://github.com/laurent22/joplin/blob/dev/readme/api/get_started/plugins.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/api/get_started/plugins.m background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/get_started/plugins.m background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/api/get_started/plugins.m } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/api/get_started/plugins.m padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/api/get_started/plugins.m font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/get_started/plugins.m display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/api/get_started/plugins.m opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/get_started/plugins.m -
+
@@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/get_started/plugins.m
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,9 +389,11 @@ https://github.com/laurent22/joplin/blob/master/readme/api/get_started/plugins.m
  • + +

    Getting started with plugin development🔗

    In this article you will learn the basic steps to build and test a plugin in Joplin.

    -

    ## Setting up your environment

    +

    Setting up your environment🔗

    First you need to setup your environment:

    • Make sure you have Node.js and git installed.
    • @@ -391,12 +420,12 @@ https://github.com/laurent22/joplin/blob/master/readme/api/get_started/plugins.m

      Restart the app, and Joplin should load the plugin and execute its onStart handler. If all went well you should see the test message in the plugin console: "Test plugin started!".

      Next steps🔗

        -
      • You might want to check the plugin tutorial to get a good overview of how to create a complete plugin and how to use the plugin API.
      • +
      • You might want to check the plugin tutorial to get a good overview of how to create a complete plugin and how to use the plugin API.
      • For more information about the plugin API, check the Plugin API reference.
      @@ -430,8 +459,10 @@ https://github.com/laurent22/joplin/blob/master/readme/api/get_started/plugins.m ga('send', 'pageview'); +
    + diff --git a/docs/api/overview/index.html b/docs/api/overview/index.html index 18826d31f6..405462a2bf 100644 --- a/docs/api/overview/index.html +++ b/docs/api/overview/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/api/overview.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/api/overview.md +https://github.com/laurent22/joplin/blob/dev/readme/api/overview.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/api/overview.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/overview.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/api/overview.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/api/overview.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/api/overview.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/overview.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/api/overview.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/overview.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/overview.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/api/overview.md
  • + +

    Extending Joplin🔗

    Joplin provides a number of extension points to allow third-party applications to access its data, or to develop plugins.

    The two main extension points are:

    @@ -370,7 +399,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/overview.md

    The data API, which is a server that provides access to Joplin data to external applications. It is possible, using standard HTTP calls, to create, modify or delete notes, notebooks, tags, etc. as well as attach files to notes and retrieve these files. This is for example how the web clipper communicates with Joplin.

  • -

    The plugin API, which allows directly modifying Joplin by adding new features to the application. Using this API, you can:

    +

    The plugin API, which allows directly modifying Joplin by adding new features to the application. Using this API, you can:

    • Access notes, folders, etc. via the data API
    • Add a view to display custom data using HTML/CSS/JS
    • @@ -386,7 +415,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/overview.md
    @@ -420,8 +449,10 @@ https://github.com/laurent22/joplin/blob/master/readme/api/overview.md ga('send', 'pageview'); +
  • + diff --git a/docs/api/references/development_mode/index.html b/docs/api/references/development_mode/index.html index 20314ca587..a134192d4b 100644 --- a/docs/api/references/development_mode/index.html +++ b/docs/api/references/development_mode/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/api/references/development_mode.md and made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/api/references/development_mode.md +https://github.com/laurent22/joplin/blob/dev/readme/api/references/development_mode.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/developmen background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/developmen background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/developmen } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/developmen padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/developmen font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/developmen display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/developmen opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/developmen -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/developmen
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,12 +389,14 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/developmen
  • + +

    Development mode🔗

    When experimenting with Joplin, for example when developing a plugin or trying a theme, you might want to run Joplin in development mode. Doing so means that Joplin will run using a different profile, so you can experiment without risking to accidentally change or delete your data.

    To enable Development Mode, open Joplin as normal, then go to Help => Copy dev mode command to clipboard. This will copy a command to the clipboard. Now close Joplin, and start it again in dev mode using the command you've just copied.

    @@ -401,8 +430,10 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/developmen ga('send', 'pageview'); +
    + diff --git a/docs/api/references/plugin_api/assets/js/search.json b/docs/api/references/plugin_api/assets/js/search.json index aea86ee1d0..09d5245d66 100644 --- a/docs/api/references/plugin_api/assets/js/search.json +++ b/docs/api/references/plugin_api/assets/js/search.json @@ -1 +1 @@ -{"kinds":{"4":"Enumeration","16":"Enumeration member","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","262144":"Accessor","4194304":"Type alias"},"rows":[{"id":0,"kind":256,"name":"Command","url":"interfaces/command.html","classes":"tsd-kind-interface"},{"id":1,"kind":1024,"name":"name","url":"interfaces/command.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Command"},{"id":2,"kind":1024,"name":"label","url":"interfaces/command.html#label","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Command"},{"id":3,"kind":1024,"name":"iconName","url":"interfaces/command.html#iconname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Command"},{"id":4,"kind":2048,"name":"execute","url":"interfaces/command.html#execute","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Command"},{"id":5,"kind":2048,"name":"isEnabled","url":"interfaces/command.html#isenabled","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Command"},{"id":6,"kind":2048,"name":"mapStateToProps","url":"interfaces/command.html#mapstatetoprops","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Command"},{"id":7,"kind":4,"name":"FileSystemItem","url":"enums/filesystemitem.html","classes":"tsd-kind-enum"},{"id":8,"kind":16,"name":"File","url":"enums/filesystemitem.html#file","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FileSystemItem"},{"id":9,"kind":16,"name":"Directory","url":"enums/filesystemitem.html#directory","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FileSystemItem"},{"id":10,"kind":4,"name":"ImportModuleOutputFormat","url":"enums/importmoduleoutputformat.html","classes":"tsd-kind-enum"},{"id":11,"kind":16,"name":"Markdown","url":"enums/importmoduleoutputformat.html#markdown","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ImportModuleOutputFormat"},{"id":12,"kind":16,"name":"Html","url":"enums/importmoduleoutputformat.html#html","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ImportModuleOutputFormat"},{"id":13,"kind":256,"name":"ExportModule","url":"interfaces/exportmodule.html","classes":"tsd-kind-interface"},{"id":14,"kind":1024,"name":"format","url":"interfaces/exportmodule.html#format","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportModule"},{"id":15,"kind":1024,"name":"description","url":"interfaces/exportmodule.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportModule"},{"id":16,"kind":1024,"name":"target","url":"interfaces/exportmodule.html#target","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportModule"},{"id":17,"kind":1024,"name":"isNoteArchive","url":"interfaces/exportmodule.html#isnotearchive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportModule"},{"id":18,"kind":1024,"name":"fileExtensions","url":"interfaces/exportmodule.html#fileextensions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportModule"},{"id":19,"kind":2048,"name":"onInit","url":"interfaces/exportmodule.html#oninit","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"ExportModule"},{"id":20,"kind":2048,"name":"onProcessItem","url":"interfaces/exportmodule.html#onprocessitem","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"ExportModule"},{"id":21,"kind":2048,"name":"onProcessResource","url":"interfaces/exportmodule.html#onprocessresource","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"ExportModule"},{"id":22,"kind":2048,"name":"onClose","url":"interfaces/exportmodule.html#onclose","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"ExportModule"},{"id":23,"kind":256,"name":"ImportModule","url":"interfaces/importmodule.html","classes":"tsd-kind-interface"},{"id":24,"kind":1024,"name":"format","url":"interfaces/importmodule.html#format","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportModule"},{"id":25,"kind":1024,"name":"description","url":"interfaces/importmodule.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportModule"},{"id":26,"kind":1024,"name":"isNoteArchive","url":"interfaces/importmodule.html#isnotearchive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportModule"},{"id":27,"kind":1024,"name":"sources","url":"interfaces/importmodule.html#sources","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportModule"},{"id":28,"kind":1024,"name":"fileExtensions","url":"interfaces/importmodule.html#fileextensions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportModule"},{"id":29,"kind":1024,"name":"outputFormat","url":"interfaces/importmodule.html#outputformat","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportModule"},{"id":30,"kind":2048,"name":"onExec","url":"interfaces/importmodule.html#onexec","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"ImportModule"},{"id":31,"kind":256,"name":"ExportOptions","url":"interfaces/exportoptions.html","classes":"tsd-kind-interface"},{"id":32,"kind":1024,"name":"format","url":"interfaces/exportoptions.html#format","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportOptions"},{"id":33,"kind":1024,"name":"path","url":"interfaces/exportoptions.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportOptions"},{"id":34,"kind":1024,"name":"sourceFolderIds","url":"interfaces/exportoptions.html#sourcefolderids","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportOptions"},{"id":35,"kind":1024,"name":"sourceNoteIds","url":"interfaces/exportoptions.html#sourcenoteids","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportOptions"},{"id":36,"kind":1024,"name":"modulePath","url":"interfaces/exportoptions.html#modulepath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportOptions"},{"id":37,"kind":1024,"name":"target","url":"interfaces/exportoptions.html#target","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportOptions"},{"id":38,"kind":256,"name":"ExportContext","url":"interfaces/exportcontext.html","classes":"tsd-kind-interface"},{"id":39,"kind":1024,"name":"destPath","url":"interfaces/exportcontext.html#destpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportContext"},{"id":40,"kind":1024,"name":"options","url":"interfaces/exportcontext.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportContext"},{"id":41,"kind":1024,"name":"userData","url":"interfaces/exportcontext.html#userdata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportContext"},{"id":42,"kind":256,"name":"ImportContext","url":"interfaces/importcontext.html","classes":"tsd-kind-interface"},{"id":43,"kind":1024,"name":"sourcePath","url":"interfaces/importcontext.html#sourcepath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportContext"},{"id":44,"kind":1024,"name":"options","url":"interfaces/importcontext.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportContext"},{"id":45,"kind":1024,"name":"warnings","url":"interfaces/importcontext.html#warnings","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportContext"},{"id":46,"kind":256,"name":"Script","url":"interfaces/script.html","classes":"tsd-kind-interface"},{"id":47,"kind":2048,"name":"onStart","url":"interfaces/script.html#onstart","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Script"},{"id":48,"kind":256,"name":"ButtonSpec","url":"interfaces/buttonspec.html","classes":"tsd-kind-interface"},{"id":49,"kind":1024,"name":"id","url":"interfaces/buttonspec.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ButtonSpec"},{"id":50,"kind":1024,"name":"title","url":"interfaces/buttonspec.html#title","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ButtonSpec"},{"id":51,"kind":2048,"name":"onClick","url":"interfaces/buttonspec.html#onclick","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"ButtonSpec"},{"id":52,"kind":256,"name":"CreateMenuItemOptions","url":"interfaces/createmenuitemoptions.html","classes":"tsd-kind-interface"},{"id":53,"kind":1024,"name":"accelerator","url":"interfaces/createmenuitemoptions.html#accelerator","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateMenuItemOptions"},{"id":54,"kind":4,"name":"MenuItemLocation","url":"enums/menuitemlocation.html","classes":"tsd-kind-enum"},{"id":55,"kind":16,"name":"File","url":"enums/menuitemlocation.html#file","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":56,"kind":16,"name":"Edit","url":"enums/menuitemlocation.html#edit","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":57,"kind":16,"name":"View","url":"enums/menuitemlocation.html#view","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":58,"kind":16,"name":"Note","url":"enums/menuitemlocation.html#note","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":59,"kind":16,"name":"Tools","url":"enums/menuitemlocation.html#tools","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":60,"kind":16,"name":"Help","url":"enums/menuitemlocation.html#help","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":61,"kind":16,"name":"Context","url":"enums/menuitemlocation.html#context","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":62,"kind":4,"name":"ToolbarButtonLocation","url":"enums/toolbarbuttonlocation.html","classes":"tsd-kind-enum"},{"id":63,"kind":16,"name":"NoteToolbar","url":"enums/toolbarbuttonlocation.html#notetoolbar","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ToolbarButtonLocation"},{"id":64,"kind":16,"name":"EditorToolbar","url":"enums/toolbarbuttonlocation.html#editortoolbar","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ToolbarButtonLocation"},{"id":65,"kind":256,"name":"EditorCommand","url":"interfaces/editorcommand.html","classes":"tsd-kind-interface"},{"id":66,"kind":1024,"name":"name","url":"interfaces/editorcommand.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EditorCommand"},{"id":67,"kind":1024,"name":"value","url":"interfaces/editorcommand.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EditorCommand"},{"id":68,"kind":4,"name":"SettingItemType","url":"enums/settingitemtype.html","classes":"tsd-kind-enum"},{"id":69,"kind":16,"name":"Int","url":"enums/settingitemtype.html#int","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SettingItemType"},{"id":70,"kind":16,"name":"String","url":"enums/settingitemtype.html#string","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SettingItemType"},{"id":71,"kind":16,"name":"Bool","url":"enums/settingitemtype.html#bool","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SettingItemType"},{"id":72,"kind":16,"name":"Array","url":"enums/settingitemtype.html#array","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SettingItemType"},{"id":73,"kind":16,"name":"Object","url":"enums/settingitemtype.html#object","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SettingItemType"},{"id":74,"kind":16,"name":"Button","url":"enums/settingitemtype.html#button","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SettingItemType"},{"id":75,"kind":256,"name":"SettingItem","url":"interfaces/settingitem.html","classes":"tsd-kind-interface"},{"id":76,"kind":1024,"name":"value","url":"interfaces/settingitem.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":77,"kind":1024,"name":"type","url":"interfaces/settingitem.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":78,"kind":1024,"name":"public","url":"interfaces/settingitem.html#public","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":79,"kind":1024,"name":"label","url":"interfaces/settingitem.html#label","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":80,"kind":1024,"name":"description","url":"interfaces/settingitem.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":81,"kind":1024,"name":"isEnum","url":"interfaces/settingitem.html#isenum","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":82,"kind":1024,"name":"section","url":"interfaces/settingitem.html#section","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":83,"kind":1024,"name":"options","url":"interfaces/settingitem.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":84,"kind":1024,"name":"appTypes","url":"interfaces/settingitem.html#apptypes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":85,"kind":1024,"name":"secure","url":"interfaces/settingitem.html#secure","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":86,"kind":1024,"name":"advanced","url":"interfaces/settingitem.html#advanced","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":87,"kind":1024,"name":"minimum","url":"interfaces/settingitem.html#minimum","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":88,"kind":1024,"name":"maximum","url":"interfaces/settingitem.html#maximum","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":89,"kind":1024,"name":"step","url":"interfaces/settingitem.html#step","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":90,"kind":256,"name":"SettingSection","url":"interfaces/settingsection.html","classes":"tsd-kind-interface"},{"id":91,"kind":1024,"name":"label","url":"interfaces/settingsection.html#label","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingSection"},{"id":92,"kind":1024,"name":"iconName","url":"interfaces/settingsection.html#iconname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingSection"},{"id":93,"kind":1024,"name":"description","url":"interfaces/settingsection.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingSection"},{"id":94,"kind":1024,"name":"name","url":"interfaces/settingsection.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingSection"},{"id":95,"kind":4194304,"name":"ButtonId","url":"globals.html#buttonid","classes":"tsd-kind-type-alias"},{"id":96,"kind":4194304,"name":"ViewHandle","url":"globals.html#viewhandle","classes":"tsd-kind-type-alias"},{"id":97,"kind":4194304,"name":"Path","url":"globals.html#path","classes":"tsd-kind-type-alias"},{"id":98,"kind":128,"name":"JoplinData","url":"classes/joplindata.html","classes":"tsd-kind-class"},{"id":99,"kind":2048,"name":"get","url":"classes/joplindata.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinData"},{"id":100,"kind":2048,"name":"post","url":"classes/joplindata.html#post","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinData"},{"id":101,"kind":2048,"name":"put","url":"classes/joplindata.html#put","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinData"},{"id":102,"kind":2048,"name":"delete","url":"classes/joplindata.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinData"},{"id":103,"kind":128,"name":"JoplinPlugins","url":"classes/joplinplugins.html","classes":"tsd-kind-class"},{"id":104,"kind":512,"name":"constructor","url":"classes/joplinplugins.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinPlugins"},{"id":105,"kind":2048,"name":"register","url":"classes/joplinplugins.html#register","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinPlugins"},{"id":106,"kind":128,"name":"JoplinWorkspace","url":"classes/joplinworkspace.html","classes":"tsd-kind-class"},{"id":107,"kind":512,"name":"constructor","url":"classes/joplinworkspace.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":108,"kind":2048,"name":"onNoteSelectionChange","url":"classes/joplinworkspace.html#onnoteselectionchange","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":109,"kind":2048,"name":"onNoteContentChange","url":"classes/joplinworkspace.html#onnotecontentchange","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":110,"kind":2048,"name":"onNoteAlarmTrigger","url":"classes/joplinworkspace.html#onnotealarmtrigger","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":111,"kind":2048,"name":"onSyncComplete","url":"classes/joplinworkspace.html#onsynccomplete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":112,"kind":2048,"name":"selectedNote","url":"classes/joplinworkspace.html#selectednote","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":113,"kind":2048,"name":"selectedNoteIds","url":"classes/joplinworkspace.html#selectednoteids","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":114,"kind":128,"name":"JoplinCommands","url":"classes/joplincommands.html","classes":"tsd-kind-class"},{"id":115,"kind":2048,"name":"execute","url":"classes/joplincommands.html#execute","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinCommands"},{"id":116,"kind":2048,"name":"register","url":"classes/joplincommands.html#register","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinCommands"},{"id":117,"kind":128,"name":"JoplinViewsDialogs","url":"classes/joplinviewsdialogs.html","classes":"tsd-kind-class"},{"id":118,"kind":512,"name":"constructor","url":"classes/joplinviewsdialogs.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinViewsDialogs"},{"id":119,"kind":2048,"name":"create","url":"classes/joplinviewsdialogs.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsDialogs"},{"id":120,"kind":2048,"name":"showMessageBox","url":"classes/joplinviewsdialogs.html#showmessagebox","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsDialogs"},{"id":121,"kind":2048,"name":"setHtml","url":"classes/joplinviewsdialogs.html#sethtml","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsDialogs"},{"id":122,"kind":2048,"name":"setButtons","url":"classes/joplinviewsdialogs.html#setbuttons","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsDialogs"},{"id":123,"kind":2048,"name":"open","url":"classes/joplinviewsdialogs.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsDialogs"},{"id":124,"kind":128,"name":"JoplinViewsMenuItems","url":"classes/joplinviewsmenuitems.html","classes":"tsd-kind-class"},{"id":125,"kind":512,"name":"constructor","url":"classes/joplinviewsmenuitems.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinViewsMenuItems"},{"id":126,"kind":2048,"name":"create","url":"classes/joplinviewsmenuitems.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsMenuItems"},{"id":127,"kind":128,"name":"JoplinViewsToolbarButtons","url":"classes/joplinviewstoolbarbuttons.html","classes":"tsd-kind-class"},{"id":128,"kind":512,"name":"constructor","url":"classes/joplinviewstoolbarbuttons.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinViewsToolbarButtons"},{"id":129,"kind":2048,"name":"create","url":"classes/joplinviewstoolbarbuttons.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsToolbarButtons"},{"id":130,"kind":128,"name":"JoplinViewsPanels","url":"classes/joplinviewspanels.html","classes":"tsd-kind-class"},{"id":131,"kind":512,"name":"constructor","url":"classes/joplinviewspanels.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinViewsPanels"},{"id":132,"kind":2048,"name":"create","url":"classes/joplinviewspanels.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsPanels"},{"id":133,"kind":2048,"name":"setHtml","url":"classes/joplinviewspanels.html#sethtml","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsPanels"},{"id":134,"kind":2048,"name":"addScript","url":"classes/joplinviewspanels.html#addscript","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsPanels"},{"id":135,"kind":2048,"name":"onMessage","url":"classes/joplinviewspanels.html#onmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsPanels"},{"id":136,"kind":128,"name":"JoplinViews","url":"classes/joplinviews.html","classes":"tsd-kind-class"},{"id":137,"kind":512,"name":"constructor","url":"classes/joplinviews.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinViews"},{"id":138,"kind":262144,"name":"dialogs","url":"classes/joplinviews.html#dialogs","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"JoplinViews"},{"id":139,"kind":262144,"name":"panels","url":"classes/joplinviews.html#panels","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"JoplinViews"},{"id":140,"kind":262144,"name":"menuItems","url":"classes/joplinviews.html#menuitems","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"JoplinViews"},{"id":141,"kind":262144,"name":"toolbarButtons","url":"classes/joplinviews.html#toolbarbuttons","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"JoplinViews"},{"id":142,"kind":128,"name":"JoplinInterop","url":"classes/joplininterop.html","classes":"tsd-kind-class"},{"id":143,"kind":2048,"name":"registerExportModule","url":"classes/joplininterop.html#registerexportmodule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinInterop"},{"id":144,"kind":2048,"name":"registerImportModule","url":"classes/joplininterop.html#registerimportmodule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinInterop"},{"id":145,"kind":128,"name":"JoplinSettings","url":"classes/joplinsettings.html","classes":"tsd-kind-class"},{"id":146,"kind":512,"name":"constructor","url":"classes/joplinsettings.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinSettings"},{"id":147,"kind":2048,"name":"registerSetting","url":"classes/joplinsettings.html#registersetting","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinSettings"},{"id":148,"kind":2048,"name":"registerSection","url":"classes/joplinsettings.html#registersection","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinSettings"},{"id":149,"kind":2048,"name":"value","url":"classes/joplinsettings.html#value","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinSettings"},{"id":150,"kind":2048,"name":"setValue","url":"classes/joplinsettings.html#setvalue","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinSettings"},{"id":151,"kind":128,"name":"Joplin","url":"classes/joplin.html","classes":"tsd-kind-class"},{"id":152,"kind":512,"name":"constructor","url":"classes/joplin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Joplin"},{"id":153,"kind":262144,"name":"data","url":"classes/joplin.html#data","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"},{"id":154,"kind":262144,"name":"plugins","url":"classes/joplin.html#plugins","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"},{"id":155,"kind":262144,"name":"workspace","url":"classes/joplin.html#workspace","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"},{"id":156,"kind":262144,"name":"commands","url":"classes/joplin.html#commands","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"},{"id":157,"kind":262144,"name":"views","url":"classes/joplin.html#views","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"},{"id":158,"kind":262144,"name":"interop","url":"classes/joplin.html#interop","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"},{"id":159,"kind":262144,"name":"settings","url":"classes/joplin.html#settings","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"}],"index":{"version":"2.3.8","fields":["name","parent"],"fieldVectors":[["name/0",[0,30.665]],["parent/0",[]],["name/1",[1,38.286]],["parent/1",[0,2.782]],["name/2",[2,38.286]],["parent/2",[0,2.782]],["name/3",[3,41.651]],["parent/3",[0,2.782]],["name/4",[4,41.651]],["parent/4",[0,2.782]],["name/5",[5,46.759]],["parent/5",[0,2.782]],["name/6",[6,46.759]],["parent/6",[0,2.782]],["name/7",[7,38.286]],["parent/7",[]],["name/8",[8,41.651]],["parent/8",[7,3.473]],["name/9",[9,46.759]],["parent/9",[7,3.473]],["name/10",[10,38.286]],["parent/10",[]],["name/11",[11,46.759]],["parent/11",[10,3.473]],["name/12",[12,46.759]],["parent/12",[10,3.473]],["name/13",[13,27.3]],["parent/13",[]],["name/14",[14,38.286]],["parent/14",[13,2.477]],["name/15",[15,35.773]],["parent/15",[13,2.477]],["name/16",[16,41.651]],["parent/16",[13,2.477]],["name/17",[17,41.651]],["parent/17",[13,2.477]],["name/18",[18,41.651]],["parent/18",[13,2.477]],["name/19",[19,46.759]],["parent/19",[13,2.477]],["name/20",[20,46.759]],["parent/20",[13,2.477]],["name/21",[21,46.759]],["parent/21",[13,2.477]],["name/22",[22,46.759]],["parent/22",[13,2.477]],["name/23",[23,29.413]],["parent/23",[]],["name/24",[14,38.286]],["parent/24",[23,2.668]],["name/25",[15,35.773]],["parent/25",[23,2.668]],["name/26",[17,41.651]],["parent/26",[23,2.668]],["name/27",[24,46.759]],["parent/27",[23,2.668]],["name/28",[18,41.651]],["parent/28",[23,2.668]],["name/29",[25,46.759]],["parent/29",[23,2.668]],["name/30",[26,46.759]],["parent/30",[23,2.668]],["name/31",[27,30.665]],["parent/31",[]],["name/32",[14,38.286]],["parent/32",[27,2.782]],["name/33",[28,41.651]],["parent/33",[27,2.782]],["name/34",[29,46.759]],["parent/34",[27,2.782]],["name/35",[30,46.759]],["parent/35",[27,2.782]],["name/36",[31,46.759]],["parent/36",[27,2.782]],["name/37",[16,41.651]],["parent/37",[27,2.782]],["name/38",[32,35.773]],["parent/38",[]],["name/39",[33,46.759]],["parent/39",[32,3.245]],["name/40",[34,38.286]],["parent/40",[32,3.245]],["name/41",[35,46.759]],["parent/41",[32,3.245]],["name/42",[36,35.773]],["parent/42",[]],["name/43",[37,46.759]],["parent/43",[36,3.245]],["name/44",[34,38.286]],["parent/44",[36,3.245]],["name/45",[38,46.759]],["parent/45",[36,3.245]],["name/46",[39,41.651]],["parent/46",[]],["name/47",[40,46.759]],["parent/47",[39,3.779]],["name/48",[41,35.773]],["parent/48",[]],["name/49",[42,46.759]],["parent/49",[41,3.245]],["name/50",[43,46.759]],["parent/50",[41,3.245]],["name/51",[44,46.759]],["parent/51",[41,3.245]],["name/52",[45,41.651]],["parent/52",[]],["name/53",[46,46.759]],["parent/53",[45,3.779]],["name/54",[47,29.413]],["parent/54",[]],["name/55",[8,41.651]],["parent/55",[47,2.668]],["name/56",[48,46.759]],["parent/56",[47,2.668]],["name/57",[49,46.759]],["parent/57",[47,2.668]],["name/58",[50,46.759]],["parent/58",[47,2.668]],["name/59",[51,46.759]],["parent/59",[47,2.668]],["name/60",[52,46.759]],["parent/60",[47,2.668]],["name/61",[53,46.759]],["parent/61",[47,2.668]],["name/62",[54,38.286]],["parent/62",[]],["name/63",[55,46.759]],["parent/63",[54,3.473]],["name/64",[56,46.759]],["parent/64",[54,3.473]],["name/65",[57,38.286]],["parent/65",[]],["name/66",[1,38.286]],["parent/66",[57,3.473]],["name/67",[58,38.286]],["parent/67",[57,3.473]],["name/68",[59,30.665]],["parent/68",[]],["name/69",[60,46.759]],["parent/69",[59,2.782]],["name/70",[61,46.759]],["parent/70",[59,2.782]],["name/71",[62,46.759]],["parent/71",[59,2.782]],["name/72",[63,46.759]],["parent/72",[59,2.782]],["name/73",[64,46.759]],["parent/73",[59,2.782]],["name/74",[65,46.759]],["parent/74",[59,2.782]],["name/75",[66,23.406]],["parent/75",[]],["name/76",[58,38.286]],["parent/76",[66,2.123]],["name/77",[67,46.759]],["parent/77",[66,2.123]],["name/78",[68,46.759]],["parent/78",[66,2.123]],["name/79",[2,38.286]],["parent/79",[66,2.123]],["name/80",[15,35.773]],["parent/80",[66,2.123]],["name/81",[69,46.759]],["parent/81",[66,2.123]],["name/82",[70,46.759]],["parent/82",[66,2.123]],["name/83",[34,38.286]],["parent/83",[66,2.123]],["name/84",[71,46.759]],["parent/84",[66,2.123]],["name/85",[72,46.759]],["parent/85",[66,2.123]],["name/86",[73,46.759]],["parent/86",[66,2.123]],["name/87",[74,46.759]],["parent/87",[66,2.123]],["name/88",[75,46.759]],["parent/88",[66,2.123]],["name/89",[76,46.759]],["parent/89",[66,2.123]],["name/90",[77,33.767]],["parent/90",[]],["name/91",[2,38.286]],["parent/91",[77,3.063]],["name/92",[3,41.651]],["parent/92",[77,3.063]],["name/93",[15,35.773]],["parent/93",[77,3.063]],["name/94",[1,38.286]],["parent/94",[77,3.063]],["name/95",[78,46.759]],["parent/95",[]],["name/96",[79,46.759]],["parent/96",[]],["name/97",[28,41.651]],["parent/97",[]],["name/98",[80,33.767]],["parent/98",[]],["name/99",[81,46.759]],["parent/99",[80,3.063]],["name/100",[82,46.759]],["parent/100",[80,3.063]],["name/101",[83,46.759]],["parent/101",[80,3.063]],["name/102",[84,46.759]],["parent/102",[80,3.063]],["name/103",[85,38.286]],["parent/103",[]],["name/104",[86,28.301]],["parent/104",[85,3.473]],["name/105",[87,41.651]],["parent/105",[85,3.473]],["name/106",[88,29.413]],["parent/106",[]],["name/107",[86,28.301]],["parent/107",[88,2.668]],["name/108",[89,46.759]],["parent/108",[88,2.668]],["name/109",[90,46.759]],["parent/109",[88,2.668]],["name/110",[91,46.759]],["parent/110",[88,2.668]],["name/111",[92,46.759]],["parent/111",[88,2.668]],["name/112",[93,46.759]],["parent/112",[88,2.668]],["name/113",[94,46.759]],["parent/113",[88,2.668]],["name/114",[95,38.286]],["parent/114",[]],["name/115",[4,41.651]],["parent/115",[95,3.473]],["name/116",[87,41.651]],["parent/116",[95,3.473]],["name/117",[96,30.665]],["parent/117",[]],["name/118",[86,28.301]],["parent/118",[96,2.782]],["name/119",[97,35.773]],["parent/119",[96,2.782]],["name/120",[98,46.759]],["parent/120",[96,2.782]],["name/121",[99,41.651]],["parent/121",[96,2.782]],["name/122",[100,46.759]],["parent/122",[96,2.782]],["name/123",[101,46.759]],["parent/123",[96,2.782]],["name/124",[102,38.286]],["parent/124",[]],["name/125",[86,28.301]],["parent/125",[102,3.473]],["name/126",[97,35.773]],["parent/126",[102,3.473]],["name/127",[103,38.286]],["parent/127",[]],["name/128",[86,28.301]],["parent/128",[103,3.473]],["name/129",[97,35.773]],["parent/129",[103,3.473]],["name/130",[104,32.096]],["parent/130",[]],["name/131",[86,28.301]],["parent/131",[104,2.912]],["name/132",[97,35.773]],["parent/132",[104,2.912]],["name/133",[99,41.651]],["parent/133",[104,2.912]],["name/134",[105,46.759]],["parent/134",[104,2.912]],["name/135",[106,46.759]],["parent/135",[104,2.912]],["name/136",[107,32.096]],["parent/136",[]],["name/137",[86,28.301]],["parent/137",[107,2.912]],["name/138",[108,46.759]],["parent/138",[107,2.912]],["name/139",[109,46.759]],["parent/139",[107,2.912]],["name/140",[110,46.759]],["parent/140",[107,2.912]],["name/141",[111,46.759]],["parent/141",[107,2.912]],["name/142",[112,38.286]],["parent/142",[]],["name/143",[113,46.759]],["parent/143",[112,3.473]],["name/144",[114,46.759]],["parent/144",[112,3.473]],["name/145",[115,32.096]],["parent/145",[]],["name/146",[86,28.301]],["parent/146",[115,2.912]],["name/147",[116,46.759]],["parent/147",[115,2.912]],["name/148",[117,46.759]],["parent/148",[115,2.912]],["name/149",[58,38.286]],["parent/149",[115,2.912]],["name/150",[118,46.759]],["parent/150",[115,2.912]],["name/151",[119,28.301]],["parent/151",[]],["name/152",[86,28.301]],["parent/152",[119,2.568]],["name/153",[120,46.759]],["parent/153",[119,2.568]],["name/154",[121,46.759]],["parent/154",[119,2.568]],["name/155",[122,46.759]],["parent/155",[119,2.568]],["name/156",[123,46.759]],["parent/156",[119,2.568]],["name/157",[124,46.759]],["parent/157",[119,2.568]],["name/158",[125,46.759]],["parent/158",[119,2.568]],["name/159",[126,46.759]],["parent/159",[119,2.568]]],"invertedIndex":[["accelerator",{"_index":46,"name":{"53":{}},"parent":{}}],["addscript",{"_index":105,"name":{"134":{}},"parent":{}}],["advanced",{"_index":73,"name":{"86":{}},"parent":{}}],["apptypes",{"_index":71,"name":{"84":{}},"parent":{}}],["array",{"_index":63,"name":{"72":{}},"parent":{}}],["bool",{"_index":62,"name":{"71":{}},"parent":{}}],["button",{"_index":65,"name":{"74":{}},"parent":{}}],["buttonid",{"_index":78,"name":{"95":{}},"parent":{}}],["buttonspec",{"_index":41,"name":{"48":{}},"parent":{"49":{},"50":{},"51":{}}}],["command",{"_index":0,"name":{"0":{}},"parent":{"1":{},"2":{},"3":{},"4":{},"5":{},"6":{}}}],["commands",{"_index":123,"name":{"156":{}},"parent":{}}],["constructor",{"_index":86,"name":{"104":{},"107":{},"118":{},"125":{},"128":{},"131":{},"137":{},"146":{},"152":{}},"parent":{}}],["context",{"_index":53,"name":{"61":{}},"parent":{}}],["create",{"_index":97,"name":{"119":{},"126":{},"129":{},"132":{}},"parent":{}}],["createmenuitemoptions",{"_index":45,"name":{"52":{}},"parent":{"53":{}}}],["data",{"_index":120,"name":{"153":{}},"parent":{}}],["delete",{"_index":84,"name":{"102":{}},"parent":{}}],["description",{"_index":15,"name":{"15":{},"25":{},"80":{},"93":{}},"parent":{}}],["destpath",{"_index":33,"name":{"39":{}},"parent":{}}],["dialogs",{"_index":108,"name":{"138":{}},"parent":{}}],["directory",{"_index":9,"name":{"9":{}},"parent":{}}],["edit",{"_index":48,"name":{"56":{}},"parent":{}}],["editorcommand",{"_index":57,"name":{"65":{}},"parent":{"66":{},"67":{}}}],["editortoolbar",{"_index":56,"name":{"64":{}},"parent":{}}],["execute",{"_index":4,"name":{"4":{},"115":{}},"parent":{}}],["exportcontext",{"_index":32,"name":{"38":{}},"parent":{"39":{},"40":{},"41":{}}}],["exportmodule",{"_index":13,"name":{"13":{}},"parent":{"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{}}}],["exportoptions",{"_index":27,"name":{"31":{}},"parent":{"32":{},"33":{},"34":{},"35":{},"36":{},"37":{}}}],["file",{"_index":8,"name":{"8":{},"55":{}},"parent":{}}],["fileextensions",{"_index":18,"name":{"18":{},"28":{}},"parent":{}}],["filesystemitem",{"_index":7,"name":{"7":{}},"parent":{"8":{},"9":{}}}],["format",{"_index":14,"name":{"14":{},"24":{},"32":{}},"parent":{}}],["get",{"_index":81,"name":{"99":{}},"parent":{}}],["help",{"_index":52,"name":{"60":{}},"parent":{}}],["html",{"_index":12,"name":{"12":{}},"parent":{}}],["iconname",{"_index":3,"name":{"3":{},"92":{}},"parent":{}}],["id",{"_index":42,"name":{"49":{}},"parent":{}}],["importcontext",{"_index":36,"name":{"42":{}},"parent":{"43":{},"44":{},"45":{}}}],["importmodule",{"_index":23,"name":{"23":{}},"parent":{"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{}}}],["importmoduleoutputformat",{"_index":10,"name":{"10":{}},"parent":{"11":{},"12":{}}}],["int",{"_index":60,"name":{"69":{}},"parent":{}}],["interop",{"_index":125,"name":{"158":{}},"parent":{}}],["isenabled",{"_index":5,"name":{"5":{}},"parent":{}}],["isenum",{"_index":69,"name":{"81":{}},"parent":{}}],["isnotearchive",{"_index":17,"name":{"17":{},"26":{}},"parent":{}}],["joplin",{"_index":119,"name":{"151":{}},"parent":{"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{}}}],["joplincommands",{"_index":95,"name":{"114":{}},"parent":{"115":{},"116":{}}}],["joplindata",{"_index":80,"name":{"98":{}},"parent":{"99":{},"100":{},"101":{},"102":{}}}],["joplininterop",{"_index":112,"name":{"142":{}},"parent":{"143":{},"144":{}}}],["joplinplugins",{"_index":85,"name":{"103":{}},"parent":{"104":{},"105":{}}}],["joplinsettings",{"_index":115,"name":{"145":{}},"parent":{"146":{},"147":{},"148":{},"149":{},"150":{}}}],["joplinviews",{"_index":107,"name":{"136":{}},"parent":{"137":{},"138":{},"139":{},"140":{},"141":{}}}],["joplinviewsdialogs",{"_index":96,"name":{"117":{}},"parent":{"118":{},"119":{},"120":{},"121":{},"122":{},"123":{}}}],["joplinviewsmenuitems",{"_index":102,"name":{"124":{}},"parent":{"125":{},"126":{}}}],["joplinviewspanels",{"_index":104,"name":{"130":{}},"parent":{"131":{},"132":{},"133":{},"134":{},"135":{}}}],["joplinviewstoolbarbuttons",{"_index":103,"name":{"127":{}},"parent":{"128":{},"129":{}}}],["joplinworkspace",{"_index":88,"name":{"106":{}},"parent":{"107":{},"108":{},"109":{},"110":{},"111":{},"112":{},"113":{}}}],["label",{"_index":2,"name":{"2":{},"79":{},"91":{}},"parent":{}}],["mapstatetoprops",{"_index":6,"name":{"6":{}},"parent":{}}],["markdown",{"_index":11,"name":{"11":{}},"parent":{}}],["maximum",{"_index":75,"name":{"88":{}},"parent":{}}],["menuitemlocation",{"_index":47,"name":{"54":{}},"parent":{"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{}}}],["menuitems",{"_index":110,"name":{"140":{}},"parent":{}}],["minimum",{"_index":74,"name":{"87":{}},"parent":{}}],["modulepath",{"_index":31,"name":{"36":{}},"parent":{}}],["name",{"_index":1,"name":{"1":{},"66":{},"94":{}},"parent":{}}],["note",{"_index":50,"name":{"58":{}},"parent":{}}],["notetoolbar",{"_index":55,"name":{"63":{}},"parent":{}}],["object",{"_index":64,"name":{"73":{}},"parent":{}}],["onclick",{"_index":44,"name":{"51":{}},"parent":{}}],["onclose",{"_index":22,"name":{"22":{}},"parent":{}}],["onexec",{"_index":26,"name":{"30":{}},"parent":{}}],["oninit",{"_index":19,"name":{"19":{}},"parent":{}}],["onmessage",{"_index":106,"name":{"135":{}},"parent":{}}],["onnotealarmtrigger",{"_index":91,"name":{"110":{}},"parent":{}}],["onnotecontentchange",{"_index":90,"name":{"109":{}},"parent":{}}],["onnoteselectionchange",{"_index":89,"name":{"108":{}},"parent":{}}],["onprocessitem",{"_index":20,"name":{"20":{}},"parent":{}}],["onprocessresource",{"_index":21,"name":{"21":{}},"parent":{}}],["onstart",{"_index":40,"name":{"47":{}},"parent":{}}],["onsynccomplete",{"_index":92,"name":{"111":{}},"parent":{}}],["open",{"_index":101,"name":{"123":{}},"parent":{}}],["options",{"_index":34,"name":{"40":{},"44":{},"83":{}},"parent":{}}],["outputformat",{"_index":25,"name":{"29":{}},"parent":{}}],["panels",{"_index":109,"name":{"139":{}},"parent":{}}],["path",{"_index":28,"name":{"33":{},"97":{}},"parent":{}}],["plugins",{"_index":121,"name":{"154":{}},"parent":{}}],["post",{"_index":82,"name":{"100":{}},"parent":{}}],["public",{"_index":68,"name":{"78":{}},"parent":{}}],["put",{"_index":83,"name":{"101":{}},"parent":{}}],["register",{"_index":87,"name":{"105":{},"116":{}},"parent":{}}],["registerexportmodule",{"_index":113,"name":{"143":{}},"parent":{}}],["registerimportmodule",{"_index":114,"name":{"144":{}},"parent":{}}],["registersection",{"_index":117,"name":{"148":{}},"parent":{}}],["registersetting",{"_index":116,"name":{"147":{}},"parent":{}}],["script",{"_index":39,"name":{"46":{}},"parent":{"47":{}}}],["section",{"_index":70,"name":{"82":{}},"parent":{}}],["secure",{"_index":72,"name":{"85":{}},"parent":{}}],["selectednote",{"_index":93,"name":{"112":{}},"parent":{}}],["selectednoteids",{"_index":94,"name":{"113":{}},"parent":{}}],["setbuttons",{"_index":100,"name":{"122":{}},"parent":{}}],["sethtml",{"_index":99,"name":{"121":{},"133":{}},"parent":{}}],["settingitem",{"_index":66,"name":{"75":{}},"parent":{"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{},"89":{}}}],["settingitemtype",{"_index":59,"name":{"68":{}},"parent":{"69":{},"70":{},"71":{},"72":{},"73":{},"74":{}}}],["settings",{"_index":126,"name":{"159":{}},"parent":{}}],["settingsection",{"_index":77,"name":{"90":{}},"parent":{"91":{},"92":{},"93":{},"94":{}}}],["setvalue",{"_index":118,"name":{"150":{}},"parent":{}}],["showmessagebox",{"_index":98,"name":{"120":{}},"parent":{}}],["sourcefolderids",{"_index":29,"name":{"34":{}},"parent":{}}],["sourcenoteids",{"_index":30,"name":{"35":{}},"parent":{}}],["sourcepath",{"_index":37,"name":{"43":{}},"parent":{}}],["sources",{"_index":24,"name":{"27":{}},"parent":{}}],["step",{"_index":76,"name":{"89":{}},"parent":{}}],["string",{"_index":61,"name":{"70":{}},"parent":{}}],["target",{"_index":16,"name":{"16":{},"37":{}},"parent":{}}],["title",{"_index":43,"name":{"50":{}},"parent":{}}],["toolbarbuttonlocation",{"_index":54,"name":{"62":{}},"parent":{"63":{},"64":{}}}],["toolbarbuttons",{"_index":111,"name":{"141":{}},"parent":{}}],["tools",{"_index":51,"name":{"59":{}},"parent":{}}],["type",{"_index":67,"name":{"77":{}},"parent":{}}],["userdata",{"_index":35,"name":{"41":{}},"parent":{}}],["value",{"_index":58,"name":{"67":{},"76":{},"149":{}},"parent":{}}],["view",{"_index":49,"name":{"57":{}},"parent":{}}],["viewhandle",{"_index":79,"name":{"96":{}},"parent":{}}],["views",{"_index":124,"name":{"157":{}},"parent":{}}],["warnings",{"_index":38,"name":{"45":{}},"parent":{}}],["workspace",{"_index":122,"name":{"155":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file +{"kinds":{"4":"Enumeration","16":"Enumeration member","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","262144":"Accessor","4194304":"Type alias"},"rows":[{"id":0,"kind":256,"name":"Command","url":"interfaces/command.html","classes":"tsd-kind-interface"},{"id":1,"kind":1024,"name":"name","url":"interfaces/command.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Command"},{"id":2,"kind":1024,"name":"label","url":"interfaces/command.html#label","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Command"},{"id":3,"kind":1024,"name":"iconName","url":"interfaces/command.html#iconname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Command"},{"id":4,"kind":2048,"name":"execute","url":"interfaces/command.html#execute","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Command"},{"id":5,"kind":2048,"name":"isEnabled","url":"interfaces/command.html#isenabled","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Command"},{"id":6,"kind":2048,"name":"mapStateToProps","url":"interfaces/command.html#mapstatetoprops","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Command"},{"id":7,"kind":4,"name":"FileSystemItem","url":"enums/filesystemitem.html","classes":"tsd-kind-enum"},{"id":8,"kind":16,"name":"File","url":"enums/filesystemitem.html#file","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FileSystemItem"},{"id":9,"kind":16,"name":"Directory","url":"enums/filesystemitem.html#directory","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"FileSystemItem"},{"id":10,"kind":4,"name":"ImportModuleOutputFormat","url":"enums/importmoduleoutputformat.html","classes":"tsd-kind-enum"},{"id":11,"kind":16,"name":"Markdown","url":"enums/importmoduleoutputformat.html#markdown","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ImportModuleOutputFormat"},{"id":12,"kind":16,"name":"Html","url":"enums/importmoduleoutputformat.html#html","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ImportModuleOutputFormat"},{"id":13,"kind":256,"name":"ExportModule","url":"interfaces/exportmodule.html","classes":"tsd-kind-interface"},{"id":14,"kind":1024,"name":"format","url":"interfaces/exportmodule.html#format","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportModule"},{"id":15,"kind":1024,"name":"description","url":"interfaces/exportmodule.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportModule"},{"id":16,"kind":1024,"name":"target","url":"interfaces/exportmodule.html#target","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportModule"},{"id":17,"kind":1024,"name":"isNoteArchive","url":"interfaces/exportmodule.html#isnotearchive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportModule"},{"id":18,"kind":1024,"name":"fileExtensions","url":"interfaces/exportmodule.html#fileextensions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportModule"},{"id":19,"kind":2048,"name":"onInit","url":"interfaces/exportmodule.html#oninit","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"ExportModule"},{"id":20,"kind":2048,"name":"onProcessItem","url":"interfaces/exportmodule.html#onprocessitem","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"ExportModule"},{"id":21,"kind":2048,"name":"onProcessResource","url":"interfaces/exportmodule.html#onprocessresource","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"ExportModule"},{"id":22,"kind":2048,"name":"onClose","url":"interfaces/exportmodule.html#onclose","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"ExportModule"},{"id":23,"kind":256,"name":"ImportModule","url":"interfaces/importmodule.html","classes":"tsd-kind-interface"},{"id":24,"kind":1024,"name":"format","url":"interfaces/importmodule.html#format","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportModule"},{"id":25,"kind":1024,"name":"description","url":"interfaces/importmodule.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportModule"},{"id":26,"kind":1024,"name":"isNoteArchive","url":"interfaces/importmodule.html#isnotearchive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportModule"},{"id":27,"kind":1024,"name":"sources","url":"interfaces/importmodule.html#sources","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportModule"},{"id":28,"kind":1024,"name":"fileExtensions","url":"interfaces/importmodule.html#fileextensions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportModule"},{"id":29,"kind":1024,"name":"outputFormat","url":"interfaces/importmodule.html#outputformat","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportModule"},{"id":30,"kind":2048,"name":"onExec","url":"interfaces/importmodule.html#onexec","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"ImportModule"},{"id":31,"kind":256,"name":"ExportOptions","url":"interfaces/exportoptions.html","classes":"tsd-kind-interface"},{"id":32,"kind":1024,"name":"format","url":"interfaces/exportoptions.html#format","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportOptions"},{"id":33,"kind":1024,"name":"path","url":"interfaces/exportoptions.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportOptions"},{"id":34,"kind":1024,"name":"sourceFolderIds","url":"interfaces/exportoptions.html#sourcefolderids","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportOptions"},{"id":35,"kind":1024,"name":"sourceNoteIds","url":"interfaces/exportoptions.html#sourcenoteids","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportOptions"},{"id":36,"kind":1024,"name":"modulePath","url":"interfaces/exportoptions.html#modulepath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportOptions"},{"id":37,"kind":1024,"name":"target","url":"interfaces/exportoptions.html#target","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportOptions"},{"id":38,"kind":256,"name":"ExportContext","url":"interfaces/exportcontext.html","classes":"tsd-kind-interface"},{"id":39,"kind":1024,"name":"destPath","url":"interfaces/exportcontext.html#destpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportContext"},{"id":40,"kind":1024,"name":"options","url":"interfaces/exportcontext.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportContext"},{"id":41,"kind":1024,"name":"userData","url":"interfaces/exportcontext.html#userdata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportContext"},{"id":42,"kind":256,"name":"ImportContext","url":"interfaces/importcontext.html","classes":"tsd-kind-interface"},{"id":43,"kind":1024,"name":"sourcePath","url":"interfaces/importcontext.html#sourcepath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportContext"},{"id":44,"kind":1024,"name":"options","url":"interfaces/importcontext.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportContext"},{"id":45,"kind":1024,"name":"warnings","url":"interfaces/importcontext.html#warnings","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ImportContext"},{"id":46,"kind":256,"name":"Script","url":"interfaces/script.html","classes":"tsd-kind-interface"},{"id":47,"kind":2048,"name":"onStart","url":"interfaces/script.html#onstart","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Script"},{"id":48,"kind":256,"name":"CreateMenuItemOptions","url":"interfaces/createmenuitemoptions.html","classes":"tsd-kind-interface"},{"id":49,"kind":1024,"name":"accelerator","url":"interfaces/createmenuitemoptions.html#accelerator","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateMenuItemOptions"},{"id":50,"kind":4,"name":"MenuItemLocation","url":"enums/menuitemlocation.html","classes":"tsd-kind-enum"},{"id":51,"kind":16,"name":"File","url":"enums/menuitemlocation.html#file","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":52,"kind":16,"name":"Edit","url":"enums/menuitemlocation.html#edit","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":53,"kind":16,"name":"View","url":"enums/menuitemlocation.html#view","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":54,"kind":16,"name":"Note","url":"enums/menuitemlocation.html#note","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":55,"kind":16,"name":"Tools","url":"enums/menuitemlocation.html#tools","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":56,"kind":16,"name":"Help","url":"enums/menuitemlocation.html#help","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":57,"kind":16,"name":"Context","url":"enums/menuitemlocation.html#context","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MenuItemLocation"},{"id":58,"kind":256,"name":"MenuItem","url":"interfaces/menuitem.html","classes":"tsd-kind-interface"},{"id":59,"kind":1024,"name":"commandName","url":"interfaces/menuitem.html#commandname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MenuItem"},{"id":60,"kind":1024,"name":"accelerator","url":"interfaces/menuitem.html#accelerator","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MenuItem"},{"id":61,"kind":1024,"name":"submenu","url":"interfaces/menuitem.html#submenu","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MenuItem"},{"id":62,"kind":1024,"name":"label","url":"interfaces/menuitem.html#label","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"MenuItem"},{"id":63,"kind":256,"name":"ButtonSpec","url":"interfaces/buttonspec.html","classes":"tsd-kind-interface"},{"id":64,"kind":1024,"name":"id","url":"interfaces/buttonspec.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ButtonSpec"},{"id":65,"kind":1024,"name":"title","url":"interfaces/buttonspec.html#title","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ButtonSpec"},{"id":66,"kind":2048,"name":"onClick","url":"interfaces/buttonspec.html#onclick","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"ButtonSpec"},{"id":67,"kind":4,"name":"ToolbarButtonLocation","url":"enums/toolbarbuttonlocation.html","classes":"tsd-kind-enum"},{"id":68,"kind":16,"name":"NoteToolbar","url":"enums/toolbarbuttonlocation.html#notetoolbar","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ToolbarButtonLocation"},{"id":69,"kind":16,"name":"EditorToolbar","url":"enums/toolbarbuttonlocation.html#editortoolbar","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ToolbarButtonLocation"},{"id":70,"kind":256,"name":"EditorCommand","url":"interfaces/editorcommand.html","classes":"tsd-kind-interface"},{"id":71,"kind":1024,"name":"name","url":"interfaces/editorcommand.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EditorCommand"},{"id":72,"kind":1024,"name":"value","url":"interfaces/editorcommand.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EditorCommand"},{"id":73,"kind":4,"name":"SettingItemType","url":"enums/settingitemtype.html","classes":"tsd-kind-enum"},{"id":74,"kind":16,"name":"Int","url":"enums/settingitemtype.html#int","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SettingItemType"},{"id":75,"kind":16,"name":"String","url":"enums/settingitemtype.html#string","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SettingItemType"},{"id":76,"kind":16,"name":"Bool","url":"enums/settingitemtype.html#bool","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SettingItemType"},{"id":77,"kind":16,"name":"Array","url":"enums/settingitemtype.html#array","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SettingItemType"},{"id":78,"kind":16,"name":"Object","url":"enums/settingitemtype.html#object","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SettingItemType"},{"id":79,"kind":16,"name":"Button","url":"enums/settingitemtype.html#button","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SettingItemType"},{"id":80,"kind":256,"name":"SettingItem","url":"interfaces/settingitem.html","classes":"tsd-kind-interface"},{"id":81,"kind":1024,"name":"value","url":"interfaces/settingitem.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":82,"kind":1024,"name":"type","url":"interfaces/settingitem.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":83,"kind":1024,"name":"public","url":"interfaces/settingitem.html#public","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":84,"kind":1024,"name":"label","url":"interfaces/settingitem.html#label","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":85,"kind":1024,"name":"description","url":"interfaces/settingitem.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":86,"kind":1024,"name":"isEnum","url":"interfaces/settingitem.html#isenum","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":87,"kind":1024,"name":"section","url":"interfaces/settingitem.html#section","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":88,"kind":1024,"name":"options","url":"interfaces/settingitem.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":89,"kind":1024,"name":"appTypes","url":"interfaces/settingitem.html#apptypes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":90,"kind":1024,"name":"secure","url":"interfaces/settingitem.html#secure","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":91,"kind":1024,"name":"advanced","url":"interfaces/settingitem.html#advanced","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":92,"kind":1024,"name":"minimum","url":"interfaces/settingitem.html#minimum","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":93,"kind":1024,"name":"maximum","url":"interfaces/settingitem.html#maximum","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":94,"kind":1024,"name":"step","url":"interfaces/settingitem.html#step","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingItem"},{"id":95,"kind":256,"name":"SettingSection","url":"interfaces/settingsection.html","classes":"tsd-kind-interface"},{"id":96,"kind":1024,"name":"label","url":"interfaces/settingsection.html#label","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingSection"},{"id":97,"kind":1024,"name":"iconName","url":"interfaces/settingsection.html#iconname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingSection"},{"id":98,"kind":1024,"name":"description","url":"interfaces/settingsection.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingSection"},{"id":99,"kind":1024,"name":"name","url":"interfaces/settingsection.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SettingSection"},{"id":100,"kind":4194304,"name":"ButtonId","url":"globals.html#buttonid","classes":"tsd-kind-type-alias"},{"id":101,"kind":4194304,"name":"ViewHandle","url":"globals.html#viewhandle","classes":"tsd-kind-type-alias"},{"id":102,"kind":4194304,"name":"Path","url":"globals.html#path","classes":"tsd-kind-type-alias"},{"id":103,"kind":128,"name":"JoplinData","url":"classes/joplindata.html","classes":"tsd-kind-class"},{"id":104,"kind":2048,"name":"get","url":"classes/joplindata.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinData"},{"id":105,"kind":2048,"name":"post","url":"classes/joplindata.html#post","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinData"},{"id":106,"kind":2048,"name":"put","url":"classes/joplindata.html#put","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinData"},{"id":107,"kind":2048,"name":"delete","url":"classes/joplindata.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinData"},{"id":108,"kind":128,"name":"JoplinPlugins","url":"classes/joplinplugins.html","classes":"tsd-kind-class"},{"id":109,"kind":512,"name":"constructor","url":"classes/joplinplugins.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinPlugins"},{"id":110,"kind":2048,"name":"register","url":"classes/joplinplugins.html#register","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinPlugins"},{"id":111,"kind":128,"name":"JoplinWorkspace","url":"classes/joplinworkspace.html","classes":"tsd-kind-class"},{"id":112,"kind":512,"name":"constructor","url":"classes/joplinworkspace.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":113,"kind":2048,"name":"onNoteSelectionChange","url":"classes/joplinworkspace.html#onnoteselectionchange","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":114,"kind":2048,"name":"onNoteContentChange","url":"classes/joplinworkspace.html#onnotecontentchange","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":115,"kind":2048,"name":"onNoteAlarmTrigger","url":"classes/joplinworkspace.html#onnotealarmtrigger","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":116,"kind":2048,"name":"onSyncComplete","url":"classes/joplinworkspace.html#onsynccomplete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":117,"kind":2048,"name":"selectedNote","url":"classes/joplinworkspace.html#selectednote","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":118,"kind":2048,"name":"selectedNoteIds","url":"classes/joplinworkspace.html#selectednoteids","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinWorkspace"},{"id":119,"kind":128,"name":"JoplinCommands","url":"classes/joplincommands.html","classes":"tsd-kind-class"},{"id":120,"kind":2048,"name":"execute","url":"classes/joplincommands.html#execute","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinCommands"},{"id":121,"kind":2048,"name":"register","url":"classes/joplincommands.html#register","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinCommands"},{"id":122,"kind":128,"name":"JoplinViewsDialogs","url":"classes/joplinviewsdialogs.html","classes":"tsd-kind-class"},{"id":123,"kind":512,"name":"constructor","url":"classes/joplinviewsdialogs.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinViewsDialogs"},{"id":124,"kind":2048,"name":"create","url":"classes/joplinviewsdialogs.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsDialogs"},{"id":125,"kind":2048,"name":"showMessageBox","url":"classes/joplinviewsdialogs.html#showmessagebox","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsDialogs"},{"id":126,"kind":2048,"name":"setHtml","url":"classes/joplinviewsdialogs.html#sethtml","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsDialogs"},{"id":127,"kind":2048,"name":"setButtons","url":"classes/joplinviewsdialogs.html#setbuttons","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsDialogs"},{"id":128,"kind":2048,"name":"open","url":"classes/joplinviewsdialogs.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsDialogs"},{"id":129,"kind":128,"name":"JoplinViewsMenuItems","url":"classes/joplinviewsmenuitems.html","classes":"tsd-kind-class"},{"id":130,"kind":512,"name":"constructor","url":"classes/joplinviewsmenuitems.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinViewsMenuItems"},{"id":131,"kind":2048,"name":"create","url":"classes/joplinviewsmenuitems.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsMenuItems"},{"id":132,"kind":128,"name":"JoplinViewsMenus","url":"classes/joplinviewsmenus.html","classes":"tsd-kind-class"},{"id":133,"kind":512,"name":"constructor","url":"classes/joplinviewsmenus.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinViewsMenus"},{"id":134,"kind":2048,"name":"create","url":"classes/joplinviewsmenus.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsMenus"},{"id":135,"kind":128,"name":"JoplinViewsToolbarButtons","url":"classes/joplinviewstoolbarbuttons.html","classes":"tsd-kind-class"},{"id":136,"kind":512,"name":"constructor","url":"classes/joplinviewstoolbarbuttons.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinViewsToolbarButtons"},{"id":137,"kind":2048,"name":"create","url":"classes/joplinviewstoolbarbuttons.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsToolbarButtons"},{"id":138,"kind":128,"name":"JoplinViewsPanels","url":"classes/joplinviewspanels.html","classes":"tsd-kind-class"},{"id":139,"kind":512,"name":"constructor","url":"classes/joplinviewspanels.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinViewsPanels"},{"id":140,"kind":2048,"name":"create","url":"classes/joplinviewspanels.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsPanels"},{"id":141,"kind":2048,"name":"setHtml","url":"classes/joplinviewspanels.html#sethtml","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsPanels"},{"id":142,"kind":2048,"name":"addScript","url":"classes/joplinviewspanels.html#addscript","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsPanels"},{"id":143,"kind":2048,"name":"onMessage","url":"classes/joplinviewspanels.html#onmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinViewsPanels"},{"id":144,"kind":128,"name":"JoplinViews","url":"classes/joplinviews.html","classes":"tsd-kind-class"},{"id":145,"kind":512,"name":"constructor","url":"classes/joplinviews.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinViews"},{"id":146,"kind":262144,"name":"dialogs","url":"classes/joplinviews.html#dialogs","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"JoplinViews"},{"id":147,"kind":262144,"name":"panels","url":"classes/joplinviews.html#panels","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"JoplinViews"},{"id":148,"kind":262144,"name":"menuItems","url":"classes/joplinviews.html#menuitems","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"JoplinViews"},{"id":149,"kind":262144,"name":"menus","url":"classes/joplinviews.html#menus","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"JoplinViews"},{"id":150,"kind":262144,"name":"toolbarButtons","url":"classes/joplinviews.html#toolbarbuttons","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"JoplinViews"},{"id":151,"kind":128,"name":"JoplinInterop","url":"classes/joplininterop.html","classes":"tsd-kind-class"},{"id":152,"kind":2048,"name":"registerExportModule","url":"classes/joplininterop.html#registerexportmodule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinInterop"},{"id":153,"kind":2048,"name":"registerImportModule","url":"classes/joplininterop.html#registerimportmodule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinInterop"},{"id":154,"kind":128,"name":"JoplinSettings","url":"classes/joplinsettings.html","classes":"tsd-kind-class"},{"id":155,"kind":512,"name":"constructor","url":"classes/joplinsettings.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"JoplinSettings"},{"id":156,"kind":2048,"name":"registerSetting","url":"classes/joplinsettings.html#registersetting","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinSettings"},{"id":157,"kind":2048,"name":"registerSection","url":"classes/joplinsettings.html#registersection","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinSettings"},{"id":158,"kind":2048,"name":"value","url":"classes/joplinsettings.html#value","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinSettings"},{"id":159,"kind":2048,"name":"setValue","url":"classes/joplinsettings.html#setvalue","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinSettings"},{"id":160,"kind":2048,"name":"globalValue","url":"classes/joplinsettings.html#globalvalue","classes":"tsd-kind-method tsd-parent-kind-class","parent":"JoplinSettings"},{"id":161,"kind":128,"name":"Joplin","url":"classes/joplin.html","classes":"tsd-kind-class"},{"id":162,"kind":512,"name":"constructor","url":"classes/joplin.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Joplin"},{"id":163,"kind":262144,"name":"data","url":"classes/joplin.html#data","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"},{"id":164,"kind":262144,"name":"plugins","url":"classes/joplin.html#plugins","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"},{"id":165,"kind":262144,"name":"workspace","url":"classes/joplin.html#workspace","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"},{"id":166,"kind":262144,"name":"commands","url":"classes/joplin.html#commands","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"},{"id":167,"kind":262144,"name":"views","url":"classes/joplin.html#views","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"},{"id":168,"kind":262144,"name":"interop","url":"classes/joplin.html#interop","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"},{"id":169,"kind":262144,"name":"settings","url":"classes/joplin.html#settings","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Joplin"}],"index":{"version":"2.3.8","fields":["name","parent"],"fieldVectors":[["name/0",[0,31.268]],["parent/0",[]],["name/1",[1,38.889]],["parent/1",[0,2.837]],["name/2",[2,36.376]],["parent/2",[0,2.837]],["name/3",[3,42.254]],["parent/3",[0,2.837]],["name/4",[4,42.254]],["parent/4",[0,2.837]],["name/5",[5,47.362]],["parent/5",[0,2.837]],["name/6",[6,47.362]],["parent/6",[0,2.837]],["name/7",[7,38.889]],["parent/7",[]],["name/8",[8,42.254]],["parent/8",[7,3.528]],["name/9",[9,47.362]],["parent/9",[7,3.528]],["name/10",[10,38.889]],["parent/10",[]],["name/11",[11,47.362]],["parent/11",[10,3.528]],["name/12",[12,47.362]],["parent/12",[10,3.528]],["name/13",[13,27.903]],["parent/13",[]],["name/14",[14,38.889]],["parent/14",[13,2.531]],["name/15",[15,36.376]],["parent/15",[13,2.531]],["name/16",[16,42.254]],["parent/16",[13,2.531]],["name/17",[17,42.254]],["parent/17",[13,2.531]],["name/18",[18,42.254]],["parent/18",[13,2.531]],["name/19",[19,47.362]],["parent/19",[13,2.531]],["name/20",[20,47.362]],["parent/20",[13,2.531]],["name/21",[21,47.362]],["parent/21",[13,2.531]],["name/22",[22,47.362]],["parent/22",[13,2.531]],["name/23",[23,30.016]],["parent/23",[]],["name/24",[14,38.889]],["parent/24",[23,2.723]],["name/25",[15,36.376]],["parent/25",[23,2.723]],["name/26",[17,42.254]],["parent/26",[23,2.723]],["name/27",[24,47.362]],["parent/27",[23,2.723]],["name/28",[18,42.254]],["parent/28",[23,2.723]],["name/29",[25,47.362]],["parent/29",[23,2.723]],["name/30",[26,47.362]],["parent/30",[23,2.723]],["name/31",[27,31.268]],["parent/31",[]],["name/32",[14,38.889]],["parent/32",[27,2.837]],["name/33",[28,42.254]],["parent/33",[27,2.837]],["name/34",[29,47.362]],["parent/34",[27,2.837]],["name/35",[30,47.362]],["parent/35",[27,2.837]],["name/36",[31,47.362]],["parent/36",[27,2.837]],["name/37",[16,42.254]],["parent/37",[27,2.837]],["name/38",[32,36.376]],["parent/38",[]],["name/39",[33,47.362]],["parent/39",[32,3.3]],["name/40",[34,38.889]],["parent/40",[32,3.3]],["name/41",[35,47.362]],["parent/41",[32,3.3]],["name/42",[36,36.376]],["parent/42",[]],["name/43",[37,47.362]],["parent/43",[36,3.3]],["name/44",[34,38.889]],["parent/44",[36,3.3]],["name/45",[38,47.362]],["parent/45",[36,3.3]],["name/46",[39,42.254]],["parent/46",[]],["name/47",[40,47.362]],["parent/47",[39,3.833]],["name/48",[41,42.254]],["parent/48",[]],["name/49",[42,42.254]],["parent/49",[41,3.833]],["name/50",[43,30.016]],["parent/50",[]],["name/51",[8,42.254]],["parent/51",[43,2.723]],["name/52",[44,47.362]],["parent/52",[43,2.723]],["name/53",[45,47.362]],["parent/53",[43,2.723]],["name/54",[46,47.362]],["parent/54",[43,2.723]],["name/55",[47,47.362]],["parent/55",[43,2.723]],["name/56",[48,47.362]],["parent/56",[43,2.723]],["name/57",[49,47.362]],["parent/57",[43,2.723]],["name/58",[50,34.369]],["parent/58",[]],["name/59",[51,47.362]],["parent/59",[50,3.118]],["name/60",[42,42.254]],["parent/60",[50,3.118]],["name/61",[52,47.362]],["parent/61",[50,3.118]],["name/62",[2,36.376]],["parent/62",[50,3.118]],["name/63",[53,36.376]],["parent/63",[]],["name/64",[54,47.362]],["parent/64",[53,3.3]],["name/65",[55,47.362]],["parent/65",[53,3.3]],["name/66",[56,47.362]],["parent/66",[53,3.3]],["name/67",[57,38.889]],["parent/67",[]],["name/68",[58,47.362]],["parent/68",[57,3.528]],["name/69",[59,47.362]],["parent/69",[57,3.528]],["name/70",[60,38.889]],["parent/70",[]],["name/71",[1,38.889]],["parent/71",[60,3.528]],["name/72",[61,38.889]],["parent/72",[60,3.528]],["name/73",[62,31.268]],["parent/73",[]],["name/74",[63,47.362]],["parent/74",[62,2.837]],["name/75",[64,47.362]],["parent/75",[62,2.837]],["name/76",[65,47.362]],["parent/76",[62,2.837]],["name/77",[66,47.362]],["parent/77",[62,2.837]],["name/78",[67,47.362]],["parent/78",[62,2.837]],["name/79",[68,47.362]],["parent/79",[62,2.837]],["name/80",[69,24.008]],["parent/80",[]],["name/81",[61,38.889]],["parent/81",[69,2.178]],["name/82",[70,47.362]],["parent/82",[69,2.178]],["name/83",[71,47.362]],["parent/83",[69,2.178]],["name/84",[2,36.376]],["parent/84",[69,2.178]],["name/85",[15,36.376]],["parent/85",[69,2.178]],["name/86",[72,47.362]],["parent/86",[69,2.178]],["name/87",[73,47.362]],["parent/87",[69,2.178]],["name/88",[34,38.889]],["parent/88",[69,2.178]],["name/89",[74,47.362]],["parent/89",[69,2.178]],["name/90",[75,47.362]],["parent/90",[69,2.178]],["name/91",[76,47.362]],["parent/91",[69,2.178]],["name/92",[77,47.362]],["parent/92",[69,2.178]],["name/93",[78,47.362]],["parent/93",[69,2.178]],["name/94",[79,47.362]],["parent/94",[69,2.178]],["name/95",[80,34.369]],["parent/95",[]],["name/96",[2,36.376]],["parent/96",[80,3.118]],["name/97",[3,42.254]],["parent/97",[80,3.118]],["name/98",[15,36.376]],["parent/98",[80,3.118]],["name/99",[1,38.889]],["parent/99",[80,3.118]],["name/100",[81,47.362]],["parent/100",[]],["name/101",[82,47.362]],["parent/101",[]],["name/102",[28,42.254]],["parent/102",[]],["name/103",[83,34.369]],["parent/103",[]],["name/104",[84,47.362]],["parent/104",[83,3.118]],["name/105",[85,47.362]],["parent/105",[83,3.118]],["name/106",[86,47.362]],["parent/106",[83,3.118]],["name/107",[87,47.362]],["parent/107",[83,3.118]],["name/108",[88,38.889]],["parent/108",[]],["name/109",[89,27.903]],["parent/109",[88,3.528]],["name/110",[90,42.254]],["parent/110",[88,3.528]],["name/111",[91,30.016]],["parent/111",[]],["name/112",[89,27.903]],["parent/112",[91,2.723]],["name/113",[92,47.362]],["parent/113",[91,2.723]],["name/114",[93,47.362]],["parent/114",[91,2.723]],["name/115",[94,47.362]],["parent/115",[91,2.723]],["name/116",[95,47.362]],["parent/116",[91,2.723]],["name/117",[96,47.362]],["parent/117",[91,2.723]],["name/118",[97,47.362]],["parent/118",[91,2.723]],["name/119",[98,38.889]],["parent/119",[]],["name/120",[4,42.254]],["parent/120",[98,3.528]],["name/121",[90,42.254]],["parent/121",[98,3.528]],["name/122",[99,31.268]],["parent/122",[]],["name/123",[89,27.903]],["parent/123",[99,2.837]],["name/124",[100,34.369]],["parent/124",[99,2.837]],["name/125",[101,47.362]],["parent/125",[99,2.837]],["name/126",[102,42.254]],["parent/126",[99,2.837]],["name/127",[103,47.362]],["parent/127",[99,2.837]],["name/128",[104,47.362]],["parent/128",[99,2.837]],["name/129",[105,38.889]],["parent/129",[]],["name/130",[89,27.903]],["parent/130",[105,3.528]],["name/131",[100,34.369]],["parent/131",[105,3.528]],["name/132",[106,38.889]],["parent/132",[]],["name/133",[89,27.903]],["parent/133",[106,3.528]],["name/134",[100,34.369]],["parent/134",[106,3.528]],["name/135",[107,38.889]],["parent/135",[]],["name/136",[89,27.903]],["parent/136",[107,3.528]],["name/137",[100,34.369]],["parent/137",[107,3.528]],["name/138",[108,32.699]],["parent/138",[]],["name/139",[89,27.903]],["parent/139",[108,2.966]],["name/140",[100,34.369]],["parent/140",[108,2.966]],["name/141",[102,42.254]],["parent/141",[108,2.966]],["name/142",[109,47.362]],["parent/142",[108,2.966]],["name/143",[110,47.362]],["parent/143",[108,2.966]],["name/144",[111,31.268]],["parent/144",[]],["name/145",[89,27.903]],["parent/145",[111,2.837]],["name/146",[112,47.362]],["parent/146",[111,2.837]],["name/147",[113,47.362]],["parent/147",[111,2.837]],["name/148",[114,47.362]],["parent/148",[111,2.837]],["name/149",[115,47.362]],["parent/149",[111,2.837]],["name/150",[116,47.362]],["parent/150",[111,2.837]],["name/151",[117,38.889]],["parent/151",[]],["name/152",[118,47.362]],["parent/152",[117,3.528]],["name/153",[119,47.362]],["parent/153",[117,3.528]],["name/154",[120,31.268]],["parent/154",[]],["name/155",[89,27.903]],["parent/155",[120,2.837]],["name/156",[121,47.362]],["parent/156",[120,2.837]],["name/157",[122,47.362]],["parent/157",[120,2.837]],["name/158",[61,38.889]],["parent/158",[120,2.837]],["name/159",[123,47.362]],["parent/159",[120,2.837]],["name/160",[124,47.362]],["parent/160",[120,2.837]],["name/161",[125,28.904]],["parent/161",[]],["name/162",[89,27.903]],["parent/162",[125,2.622]],["name/163",[126,47.362]],["parent/163",[125,2.622]],["name/164",[127,47.362]],["parent/164",[125,2.622]],["name/165",[128,47.362]],["parent/165",[125,2.622]],["name/166",[129,47.362]],["parent/166",[125,2.622]],["name/167",[130,47.362]],["parent/167",[125,2.622]],["name/168",[131,47.362]],["parent/168",[125,2.622]],["name/169",[132,47.362]],["parent/169",[125,2.622]]],"invertedIndex":[["accelerator",{"_index":42,"name":{"49":{},"60":{}},"parent":{}}],["addscript",{"_index":109,"name":{"142":{}},"parent":{}}],["advanced",{"_index":76,"name":{"91":{}},"parent":{}}],["apptypes",{"_index":74,"name":{"89":{}},"parent":{}}],["array",{"_index":66,"name":{"77":{}},"parent":{}}],["bool",{"_index":65,"name":{"76":{}},"parent":{}}],["button",{"_index":68,"name":{"79":{}},"parent":{}}],["buttonid",{"_index":81,"name":{"100":{}},"parent":{}}],["buttonspec",{"_index":53,"name":{"63":{}},"parent":{"64":{},"65":{},"66":{}}}],["command",{"_index":0,"name":{"0":{}},"parent":{"1":{},"2":{},"3":{},"4":{},"5":{},"6":{}}}],["commandname",{"_index":51,"name":{"59":{}},"parent":{}}],["commands",{"_index":129,"name":{"166":{}},"parent":{}}],["constructor",{"_index":89,"name":{"109":{},"112":{},"123":{},"130":{},"133":{},"136":{},"139":{},"145":{},"155":{},"162":{}},"parent":{}}],["context",{"_index":49,"name":{"57":{}},"parent":{}}],["create",{"_index":100,"name":{"124":{},"131":{},"134":{},"137":{},"140":{}},"parent":{}}],["createmenuitemoptions",{"_index":41,"name":{"48":{}},"parent":{"49":{}}}],["data",{"_index":126,"name":{"163":{}},"parent":{}}],["delete",{"_index":87,"name":{"107":{}},"parent":{}}],["description",{"_index":15,"name":{"15":{},"25":{},"85":{},"98":{}},"parent":{}}],["destpath",{"_index":33,"name":{"39":{}},"parent":{}}],["dialogs",{"_index":112,"name":{"146":{}},"parent":{}}],["directory",{"_index":9,"name":{"9":{}},"parent":{}}],["edit",{"_index":44,"name":{"52":{}},"parent":{}}],["editorcommand",{"_index":60,"name":{"70":{}},"parent":{"71":{},"72":{}}}],["editortoolbar",{"_index":59,"name":{"69":{}},"parent":{}}],["execute",{"_index":4,"name":{"4":{},"120":{}},"parent":{}}],["exportcontext",{"_index":32,"name":{"38":{}},"parent":{"39":{},"40":{},"41":{}}}],["exportmodule",{"_index":13,"name":{"13":{}},"parent":{"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{}}}],["exportoptions",{"_index":27,"name":{"31":{}},"parent":{"32":{},"33":{},"34":{},"35":{},"36":{},"37":{}}}],["file",{"_index":8,"name":{"8":{},"51":{}},"parent":{}}],["fileextensions",{"_index":18,"name":{"18":{},"28":{}},"parent":{}}],["filesystemitem",{"_index":7,"name":{"7":{}},"parent":{"8":{},"9":{}}}],["format",{"_index":14,"name":{"14":{},"24":{},"32":{}},"parent":{}}],["get",{"_index":84,"name":{"104":{}},"parent":{}}],["globalvalue",{"_index":124,"name":{"160":{}},"parent":{}}],["help",{"_index":48,"name":{"56":{}},"parent":{}}],["html",{"_index":12,"name":{"12":{}},"parent":{}}],["iconname",{"_index":3,"name":{"3":{},"97":{}},"parent":{}}],["id",{"_index":54,"name":{"64":{}},"parent":{}}],["importcontext",{"_index":36,"name":{"42":{}},"parent":{"43":{},"44":{},"45":{}}}],["importmodule",{"_index":23,"name":{"23":{}},"parent":{"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{}}}],["importmoduleoutputformat",{"_index":10,"name":{"10":{}},"parent":{"11":{},"12":{}}}],["int",{"_index":63,"name":{"74":{}},"parent":{}}],["interop",{"_index":131,"name":{"168":{}},"parent":{}}],["isenabled",{"_index":5,"name":{"5":{}},"parent":{}}],["isenum",{"_index":72,"name":{"86":{}},"parent":{}}],["isnotearchive",{"_index":17,"name":{"17":{},"26":{}},"parent":{}}],["joplin",{"_index":125,"name":{"161":{}},"parent":{"162":{},"163":{},"164":{},"165":{},"166":{},"167":{},"168":{},"169":{}}}],["joplincommands",{"_index":98,"name":{"119":{}},"parent":{"120":{},"121":{}}}],["joplindata",{"_index":83,"name":{"103":{}},"parent":{"104":{},"105":{},"106":{},"107":{}}}],["joplininterop",{"_index":117,"name":{"151":{}},"parent":{"152":{},"153":{}}}],["joplinplugins",{"_index":88,"name":{"108":{}},"parent":{"109":{},"110":{}}}],["joplinsettings",{"_index":120,"name":{"154":{}},"parent":{"155":{},"156":{},"157":{},"158":{},"159":{},"160":{}}}],["joplinviews",{"_index":111,"name":{"144":{}},"parent":{"145":{},"146":{},"147":{},"148":{},"149":{},"150":{}}}],["joplinviewsdialogs",{"_index":99,"name":{"122":{}},"parent":{"123":{},"124":{},"125":{},"126":{},"127":{},"128":{}}}],["joplinviewsmenuitems",{"_index":105,"name":{"129":{}},"parent":{"130":{},"131":{}}}],["joplinviewsmenus",{"_index":106,"name":{"132":{}},"parent":{"133":{},"134":{}}}],["joplinviewspanels",{"_index":108,"name":{"138":{}},"parent":{"139":{},"140":{},"141":{},"142":{},"143":{}}}],["joplinviewstoolbarbuttons",{"_index":107,"name":{"135":{}},"parent":{"136":{},"137":{}}}],["joplinworkspace",{"_index":91,"name":{"111":{}},"parent":{"112":{},"113":{},"114":{},"115":{},"116":{},"117":{},"118":{}}}],["label",{"_index":2,"name":{"2":{},"62":{},"84":{},"96":{}},"parent":{}}],["mapstatetoprops",{"_index":6,"name":{"6":{}},"parent":{}}],["markdown",{"_index":11,"name":{"11":{}},"parent":{}}],["maximum",{"_index":78,"name":{"93":{}},"parent":{}}],["menuitem",{"_index":50,"name":{"58":{}},"parent":{"59":{},"60":{},"61":{},"62":{}}}],["menuitemlocation",{"_index":43,"name":{"50":{}},"parent":{"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{}}}],["menuitems",{"_index":114,"name":{"148":{}},"parent":{}}],["menus",{"_index":115,"name":{"149":{}},"parent":{}}],["minimum",{"_index":77,"name":{"92":{}},"parent":{}}],["modulepath",{"_index":31,"name":{"36":{}},"parent":{}}],["name",{"_index":1,"name":{"1":{},"71":{},"99":{}},"parent":{}}],["note",{"_index":46,"name":{"54":{}},"parent":{}}],["notetoolbar",{"_index":58,"name":{"68":{}},"parent":{}}],["object",{"_index":67,"name":{"78":{}},"parent":{}}],["onclick",{"_index":56,"name":{"66":{}},"parent":{}}],["onclose",{"_index":22,"name":{"22":{}},"parent":{}}],["onexec",{"_index":26,"name":{"30":{}},"parent":{}}],["oninit",{"_index":19,"name":{"19":{}},"parent":{}}],["onmessage",{"_index":110,"name":{"143":{}},"parent":{}}],["onnotealarmtrigger",{"_index":94,"name":{"115":{}},"parent":{}}],["onnotecontentchange",{"_index":93,"name":{"114":{}},"parent":{}}],["onnoteselectionchange",{"_index":92,"name":{"113":{}},"parent":{}}],["onprocessitem",{"_index":20,"name":{"20":{}},"parent":{}}],["onprocessresource",{"_index":21,"name":{"21":{}},"parent":{}}],["onstart",{"_index":40,"name":{"47":{}},"parent":{}}],["onsynccomplete",{"_index":95,"name":{"116":{}},"parent":{}}],["open",{"_index":104,"name":{"128":{}},"parent":{}}],["options",{"_index":34,"name":{"40":{},"44":{},"88":{}},"parent":{}}],["outputformat",{"_index":25,"name":{"29":{}},"parent":{}}],["panels",{"_index":113,"name":{"147":{}},"parent":{}}],["path",{"_index":28,"name":{"33":{},"102":{}},"parent":{}}],["plugins",{"_index":127,"name":{"164":{}},"parent":{}}],["post",{"_index":85,"name":{"105":{}},"parent":{}}],["public",{"_index":71,"name":{"83":{}},"parent":{}}],["put",{"_index":86,"name":{"106":{}},"parent":{}}],["register",{"_index":90,"name":{"110":{},"121":{}},"parent":{}}],["registerexportmodule",{"_index":118,"name":{"152":{}},"parent":{}}],["registerimportmodule",{"_index":119,"name":{"153":{}},"parent":{}}],["registersection",{"_index":122,"name":{"157":{}},"parent":{}}],["registersetting",{"_index":121,"name":{"156":{}},"parent":{}}],["script",{"_index":39,"name":{"46":{}},"parent":{"47":{}}}],["section",{"_index":73,"name":{"87":{}},"parent":{}}],["secure",{"_index":75,"name":{"90":{}},"parent":{}}],["selectednote",{"_index":96,"name":{"117":{}},"parent":{}}],["selectednoteids",{"_index":97,"name":{"118":{}},"parent":{}}],["setbuttons",{"_index":103,"name":{"127":{}},"parent":{}}],["sethtml",{"_index":102,"name":{"126":{},"141":{}},"parent":{}}],["settingitem",{"_index":69,"name":{"80":{}},"parent":{"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{},"94":{}}}],["settingitemtype",{"_index":62,"name":{"73":{}},"parent":{"74":{},"75":{},"76":{},"77":{},"78":{},"79":{}}}],["settings",{"_index":132,"name":{"169":{}},"parent":{}}],["settingsection",{"_index":80,"name":{"95":{}},"parent":{"96":{},"97":{},"98":{},"99":{}}}],["setvalue",{"_index":123,"name":{"159":{}},"parent":{}}],["showmessagebox",{"_index":101,"name":{"125":{}},"parent":{}}],["sourcefolderids",{"_index":29,"name":{"34":{}},"parent":{}}],["sourcenoteids",{"_index":30,"name":{"35":{}},"parent":{}}],["sourcepath",{"_index":37,"name":{"43":{}},"parent":{}}],["sources",{"_index":24,"name":{"27":{}},"parent":{}}],["step",{"_index":79,"name":{"94":{}},"parent":{}}],["string",{"_index":64,"name":{"75":{}},"parent":{}}],["submenu",{"_index":52,"name":{"61":{}},"parent":{}}],["target",{"_index":16,"name":{"16":{},"37":{}},"parent":{}}],["title",{"_index":55,"name":{"65":{}},"parent":{}}],["toolbarbuttonlocation",{"_index":57,"name":{"67":{}},"parent":{"68":{},"69":{}}}],["toolbarbuttons",{"_index":116,"name":{"150":{}},"parent":{}}],["tools",{"_index":47,"name":{"55":{}},"parent":{}}],["type",{"_index":70,"name":{"82":{}},"parent":{}}],["userdata",{"_index":35,"name":{"41":{}},"parent":{}}],["value",{"_index":61,"name":{"72":{},"81":{},"158":{}},"parent":{}}],["view",{"_index":45,"name":{"53":{}},"parent":{}}],["viewhandle",{"_index":82,"name":{"101":{}},"parent":{}}],["views",{"_index":130,"name":{"167":{}},"parent":{}}],["warnings",{"_index":38,"name":{"45":{}},"parent":{}}],["workspace",{"_index":128,"name":{"165":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/api/references/plugin_api/classes/joplin.html b/docs/api/references/plugin_api/classes/joplin.html index 789c6b9420..8baf5b3b9a 100644 --- a/docs/api/references/plugin_api/classes/joplin.html +++ b/docs/api/references/plugin_api/classes/joplin.html @@ -320,6 +320,9 @@
  • joplin.views.menuItems
  • +
  • + joplin.views.menus +
  • joplin.views.panels
  • @@ -356,6 +359,9 @@
  • ImportModule
  • +
  • + MenuItem +
  • Script
  • diff --git a/docs/api/references/plugin_api/classes/joplincommands.html b/docs/api/references/plugin_api/classes/joplincommands.html index 7ac984018c..207bc0142e 100644 --- a/docs/api/references/plugin_api/classes/joplincommands.html +++ b/docs/api/references/plugin_api/classes/joplincommands.html @@ -256,6 +256,9 @@
  • joplin.views.menuItems
  • +
  • + joplin.views.menus +
  • joplin.views.panels
  • @@ -292,6 +295,9 @@
  • ImportModule
  • +
  • + MenuItem +
  • Script
  • diff --git a/docs/api/references/plugin_api/classes/joplindata.html b/docs/api/references/plugin_api/classes/joplindata.html index 8ace6cba64..eaa942e509 100644 --- a/docs/api/references/plugin_api/classes/joplindata.html +++ b/docs/api/references/plugin_api/classes/joplindata.html @@ -321,6 +321,9 @@
  • joplin.views.menuItems
  • +
  • + joplin.views.menus +
  • joplin.views.panels
  • @@ -357,6 +360,9 @@
  • ImportModule
  • +
  • + MenuItem +
  • Script
  • diff --git a/docs/api/references/plugin_api/classes/joplininterop.html b/docs/api/references/plugin_api/classes/joplininterop.html index 4bdb03b894..11e5e2c4c9 100644 --- a/docs/api/references/plugin_api/classes/joplininterop.html +++ b/docs/api/references/plugin_api/classes/joplininterop.html @@ -220,6 +220,9 @@
  • joplin.views.menuItems
  • +
  • + joplin.views.menus +
  • joplin.views.panels
  • @@ -256,6 +259,9 @@
  • ImportModule
  • +
  • + MenuItem +
  • Script
  • diff --git a/docs/api/references/plugin_api/classes/joplinplugins.html b/docs/api/references/plugin_api/classes/joplinplugins.html index c7ef01468e..2322eaa09c 100644 --- a/docs/api/references/plugin_api/classes/joplinplugins.html +++ b/docs/api/references/plugin_api/classes/joplinplugins.html @@ -205,6 +205,9 @@
  • joplin.views.menuItems
  • +
  • + joplin.views.menus +
  • joplin.views.panels
  • @@ -241,6 +244,9 @@
  • ImportModule
  • +
  • + MenuItem +
  • Script
  • diff --git a/docs/api/references/plugin_api/classes/joplinsettings.html b/docs/api/references/plugin_api/classes/joplinsettings.html index 7312a529bd..301cc81276 100644 --- a/docs/api/references/plugin_api/classes/joplinsettings.html +++ b/docs/api/references/plugin_api/classes/joplinsettings.html @@ -95,6 +95,7 @@

    Methods

    Methods

    +
    + +

    globalValue

    +
      +
    • globalValue(key: string): Promise<any>
    • +
    + +

    registerSection

    @@ -288,6 +320,9 @@
  • constructor
  • +
  • + globalValue +
  • registerSection
  • @@ -313,6 +348,9 @@
  • joplin.views.menuItems
  • +
  • + joplin.views.menus +
  • joplin.views.panels
  • @@ -349,6 +387,9 @@
  • ImportModule
  • +
  • + MenuItem +
  • Script
  • diff --git a/docs/api/references/plugin_api/classes/joplinviews.html b/docs/api/references/plugin_api/classes/joplinviews.html index c68c03dcb1..365dc5d9c8 100644 --- a/docs/api/references/plugin_api/classes/joplinviews.html +++ b/docs/api/references/plugin_api/classes/joplinviews.html @@ -96,6 +96,7 @@ @@ -139,6 +140,24 @@

    Returns joplin.views.menuItems

    +--> + + +
    +
    + +

    menus

    + +
      +
    • + +
    @@ -240,6 +259,9 @@
  • menuItems
  • +
  • + menus +
  • panels
  • @@ -256,6 +278,9 @@
  • joplin.views.menuItems
  • +
  • + joplin.views.menus +
  • joplin.views.panels
  • @@ -292,6 +317,9 @@
  • ImportModule
  • +
  • + MenuItem +
  • Script
  • diff --git a/docs/api/references/plugin_api/classes/joplinviewsdialogs.html b/docs/api/references/plugin_api/classes/joplinviewsdialogs.html index a4019d12af..9118b54517 100644 --- a/docs/api/references/plugin_api/classes/joplinviewsdialogs.html +++ b/docs/api/references/plugin_api/classes/joplinviewsdialogs.html @@ -334,6 +334,9 @@
  • joplin.views.menuItems
  • +
  • + joplin.views.menus +
  • joplin.views.panels
  • @@ -370,6 +373,9 @@
  • ImportModule
  • +
  • + MenuItem +
  • Script
  • diff --git a/docs/api/references/plugin_api/classes/joplinviewsmenuitems.html b/docs/api/references/plugin_api/classes/joplinviewsmenuitems.html index 993a22faf8..76f9b1d511 100644 --- a/docs/api/references/plugin_api/classes/joplinviewsmenuitems.html +++ b/docs/api/references/plugin_api/classes/joplinviewsmenuitems.html @@ -206,6 +206,9 @@
    • diff --git a/docs/api/references/plugin_api/interfaces/settingitem.html b/docs/api/references/plugin_api/interfaces/settingitem.html index 28efb85642..360dbd38fe 100644 --- a/docs/api/references/plugin_api/interfaces/settingitem.html +++ b/docs/api/references/plugin_api/interfaces/settingitem.html @@ -258,6 +258,9 @@
    • joplin.views.menuItems
    • +
    • + joplin.views.menus +
    • joplin.views.panels
    • @@ -294,6 +297,9 @@
    • ImportModule
    • +
    • + MenuItem +
    • Script
    • diff --git a/docs/api/references/plugin_api/interfaces/settingsection.html b/docs/api/references/plugin_api/interfaces/settingsection.html index d8acb1d8a9..85a963014a 100644 --- a/docs/api/references/plugin_api/interfaces/settingsection.html +++ b/docs/api/references/plugin_api/interfaces/settingsection.html @@ -178,6 +178,9 @@
    • joplin.views.menuItems
    • +
    • + joplin.views.menus +
    • joplin.views.panels
    • @@ -214,6 +217,9 @@
    • ImportModule
    • +
    • + MenuItem +
    • Script
    • diff --git a/docs/api/references/plugin_manifest/index.html b/docs/api/references/plugin_manifest/index.html index a3d969cb28..690bc23642 100644 --- a/docs/api/references/plugin_manifest/index.html +++ b/docs/api/references/plugin_manifest/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/api/references/plugin_manifest.md and a made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/api/references/plugin_manifest.md +https://github.com/laurent22/joplin/blob/dev/readme/api/references/plugin_manifest.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/plugin_man background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/plugin_man background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/plugin_man } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/plugin_man padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/plugin_man font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/plugin_man display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/plugin_man opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/plugin_man -
      +
      @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/plugin_man
    • Note History spec
    • Sync Lock spec
    • Plugin Architecture spec
    • -
    • Search Sorting spec
    • +
    • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/plugin_man
  • + +

    Plugin Manifest🔗

    The manifest file is a JSON file that describes various properties of the plugin. If you use the Yeoman generator, it should be automatically generated based on the answers you've provided. The supported properties are:

      @@ -382,7 +411,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/plugin_man @@ -416,8 +445,10 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/plugin_man ga('send', 'pageview'); +
    + diff --git a/docs/api/references/rest_api/index.html b/docs/api/references/rest_api/index.html index 6f2897bfc7..2e647e8c25 100644 --- a/docs/api/references/rest_api/index.html +++ b/docs/api/references/rest_api/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/api/references/rest_api.md and any manu made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/api/references/rest_api.md +https://github.com/laurent22/joplin/blob/dev/readme/api/references/rest_api.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/rest_api.m background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/rest_api.m background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/rest_api.m } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/rest_api.m padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/rest_api.m font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/rest_api.m display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/rest_api.m opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/rest_api.m -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/rest_api.m
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/api/references/rest_api.m
  • + +

    Joplin Data API🔗

    This API is available when the clipper server is running. It provides access to the notes, notebooks, tags and other Joplin object via a REST API. Plugins can also access this API even when the clipper server is not running.

    In order to use it, you'll first need to find on which port the service is running. To do so, open the Web Clipper Options in Joplin and if the service is running it should tell you on which port. Normally it runs on port 41184. If you want to find it programmatically, you may follow this kind of algorithm:

    @@ -941,7 +970,7 @@ for (let portToTest = 41184; portToTest <= 41194; portToTest++) {

    Remove the tag from the note.

    @@ -975,8 +1004,10 @@ for (let portToTest = 41184; portToTest <= 41194; portToTest++) { ga('send', 'pageview'); +
    + diff --git a/docs/api/tutorials/toc_plugin/index.html b/docs/api/tutorials/toc_plugin/index.html index afb57ee585..f5da2d2b89 100644 --- a/docs/api/tutorials/toc_plugin/index.html +++ b/docs/api/tutorials/toc_plugin/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/api/tutorials/toc_plugin.md and any man made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/api/tutorials/toc_plugin.md +https://github.com/laurent22/joplin/blob/dev/readme/api/tutorials/toc_plugin.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/api/tutorials/toc_plugin. background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/tutorials/toc_plugin. background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/api/tutorials/toc_plugin. } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/api/tutorials/toc_plugin. padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/api/tutorials/toc_plugin. font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/tutorials/toc_plugin. display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/api/tutorials/toc_plugin. opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/tutorials/toc_plugin. -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/api/tutorials/toc_plugin.
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/api/tutorials/toc_plugin.
  • + +

    Creating a table of content plugin🔗

    This tutorial will guide you through the steps to create a table of content plugin for Joplin. It will display a view next to the current note that will contain links to the sections of a note. It will be possible to click on one of the header to jump to the relevant section.

    Through this tutorial you will learn about several aspect of the Joplin API, including:

    @@ -370,8 +399,8 @@ https://github.com/laurent22/joplin/blob/master/readme/api/tutorials/toc_plugin.
  • How to create a webview
  • How to listen to changes in the user interface
  • -

    ## Setting up your environment

    -

    Before getting any further, make sure your environment is setup correctly as described in the Get Started guide.

    +

    Setting up your environment🔗

    +

    Before getting any further, make sure your environment is setup correctly as described in the Get Started guide.

    Registering the plugin🔗

    All plugins must register themselves and declare what events they can handle. To do so, open src/index.ts and register the plugin as below. We'll also need to run some initialisation code when the plugin starts, so add the onStart() event handler too:

    // Import the Joplin API
    @@ -640,7 +669,7 @@ document.addEventListener('click', event => {
     

    Various improvements can be made such as improving the styling, making the header collapsible, etc. but that tutorial should provide the basic building blocks to do so. You might also want to check the plugin API for further information or head to the development forum for support.

    @@ -674,8 +703,10 @@ document.addEventListener('click', event => { ga('send', 'pageview'); +
    + diff --git a/docs/blog/20180621-182112/index.html b/docs/blog/20180621-182112/index.html index 44f7cd8900..78ea74aa77 100644 --- a/docs/blog/20180621-182112/index.html +++ b/docs/blog/20180621-182112/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20180621-182112.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20180621-182112.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20180621-182112.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180621-182112.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180621-182112.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180621-182112.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180621-182112.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180621-182112.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180621-182112.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180621-182112.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180621-182112.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180621-182112.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180621-182112.md
  • + +

    Web Clipper now available on Firefox and Chrome🔗

    One of the most requested feature, the Web Clipper, is now available on the Firefox and Chrome store. It is possible to save a whole web page, or a simplified version of it, or a screenshot directly from the browser to Joplin. Like the rest of Joplin, the HTML page will be converted to Markdown, which means it can be easily edited and read even without a special viewer, and, since it's plain text, it also makes it easier to search and share the content.

    Have a look at the Web Clipper documentation for more information.

    @@ -371,7 +400,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180621-182112.md published_at: 2018-06-21T17:21:12.000+00:00

    @@ -405,8 +434,10 @@ published_at: 2018-06-21T17:21:12.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20180906-111039/index.html b/docs/blog/20180906-111039/index.html index 82a6c309a8..c8fe8315e5 100644 --- a/docs/blog/20180906-111039/index.html +++ b/docs/blog/20180906-111039/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20180906-111039.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20180906-111039.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20180906-111039.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180906-111039.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180906-111039.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180906-111039.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180906-111039.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180906-111039.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180906-111039.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180906-111039.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180906-111039.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180906-111039.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180906-111039.md
  • + +

    New iOS release with improved attachment support🔗

    The iOS version for iPhone, iPad and iPod sometimes lags behind the Android one due to the App Store release process being more complex. However it eventually catches up, as is the case with the latest release, which includes all the features and bug fixes from the past few months.

    @@ -372,7 +401,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180906-111039.md published_at: 2018-09-06T10:10:39.000+00:00

    @@ -406,8 +435,10 @@ published_at: 2018-09-06T10:10:39.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20180916-210431/index.html b/docs/blog/20180916-210431/index.html index f5b58f6445..ecfeed0b6d 100644 --- a/docs/blog/20180916-210431/index.html +++ b/docs/blog/20180916-210431/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20180916-210431.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20180916-210431.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20180916-210431.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180916-210431.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180916-210431.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180916-210431.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180916-210431.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180916-210431.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180916-210431.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180916-210431.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180916-210431.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180916-210431.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180916-210431.md
  • + +

    Note properties in desktop application🔗

    The new desktop version of Joplin for Windows, macOS and Linux features a new dialog box to view and edit the note properties, such as the updated date, created date, source URL or even location. It's a small change but it can be useful. This dialog can be accessed by clicking on the Information icon in the toolbar.

    @@ -371,7 +400,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180916-210431.md published_at: 2018-09-16T20:04:31.000+00:00

    @@ -405,8 +434,10 @@ published_at: 2018-09-16T20:04:31.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20180929-121053/index.html b/docs/blog/20180929-121053/index.html index 4266735fda..3b57d99591 100644 --- a/docs/blog/20180929-121053/index.html +++ b/docs/blog/20180929-121053/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20180929-121053.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20180929-121053.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20180929-121053.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180929-121053.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180929-121053.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180929-121053.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180929-121053.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180929-121053.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180929-121053.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180929-121053.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180929-121053.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180929-121053.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180929-121053.md
  • + +

    New release and many bug fixes🔗

    Reliability and stability is an important feature of Joplin as the application can potentially manage thousands of notes spanning many years (My oldest note, imported from another software, is from October 1999!). A stable interface without too many glitches also makes for a more pleasant user experience. For these reasons, bug fixes are always given high priority in this project, and are usually worked on before any new feature is added. The latest release for instance pretty much only contains bug fixes - eight of them, including one security fix.

    Joplin is not bug free yet, there are still a few issues here and there, that sometimes depend on the user's hardware or configuration, and others that are hard to replicate or fix, but the app is getting there - more stable with each new release.

    @@ -371,7 +400,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20180929-121053.md published_at: 2018-09-29T11:10:53.000+00:00

    @@ -405,8 +434,10 @@ published_at: 2018-09-29T11:10:53.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20181004-091123/index.html b/docs/blog/20181004-091123/index.html index 0446e1b48d..0558c8a7db 100644 --- a/docs/blog/20181004-091123/index.html +++ b/docs/blog/20181004-091123/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20181004-091123.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20181004-091123.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20181004-091123.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181004-091123.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181004-091123.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181004-091123.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181004-091123.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181004-091123.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181004-091123.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181004-091123.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181004-091123.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181004-091123.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181004-091123.md
  • + +

    Joplin and Hacktobertfest 2018 🎃🔗

    The Hacktobertfest event  has started - it allows you to contribute to Joplin and, at the end of  the month, after having done 5 PR, you'll earn a limited edition  T-shirt.

    To participate, go on https://hacktoberfest.digitalocean.com/  log in (with you github account) and you are ready to get in.

    @@ -373,7 +402,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181004-091123.md published_at: 2018-10-04T08:11:23.000+00:00

    @@ -407,8 +436,10 @@ published_at: 2018-10-04T08:11:23.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20181101-174335/index.html b/docs/blog/20181101-174335/index.html index f6543b892b..4335533d39 100644 --- a/docs/blog/20181101-174335/index.html +++ b/docs/blog/20181101-174335/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20181101-174335.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20181101-174335.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20181101-174335.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181101-174335.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181101-174335.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181101-174335.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181101-174335.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181101-174335.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181101-174335.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181101-174335.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181101-174335.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181101-174335.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181101-174335.md
  • + +

    Hacktoberfest has now ended🔗

    Hacktoberfest has now ended - many thanks to all those who have contributed. Some of the pull requests are not merged yet but they will be soon. For information, this is the number of pull requests per month on the project, so there was approximately a 30% increase in October:

    Oct - 26

    @@ -376,7 +405,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181101-174335.md published_at: 2018-11-01T17:43:35.000+00:00

    @@ -410,8 +439,10 @@ published_at: 2018-11-01T17:43:35.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20181213-173459/index.html b/docs/blog/20181213-173459/index.html index 00d6a822aa..e37cd20a96 100644 --- a/docs/blog/20181213-173459/index.html +++ b/docs/blog/20181213-173459/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20181213-173459.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20181213-173459.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20181213-173459.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181213-173459.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181213-173459.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181213-173459.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181213-173459.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181213-173459.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181213-173459.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181213-173459.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181213-173459.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181213-173459.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181213-173459.md
  • + +

    Joplin is now featured on PrivacyTools.io🔗

    Joplin is now featured on PrivacyTools.io, a site dedicated to providing knowledge and tools to protect people's privacy against global mass surveillance. The app was kindly submitted by Mats Estensen on GitHub and accepted soon after.

    Since day one the Joplin project has indeed been concerned with privacy - offering End To End Encryption and supporting open standards, including WebDAV for synchronisation. Setting up Joplin synchronisation can be more complicated than other existing note applications, but the advantage is that once it is done you 100% own the data and even the infrastructure if you use Nextcloud on your own server.

    @@ -374,7 +403,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20181213-173459.md published_at: 2018-12-13T17:34:59.000+00:00

    @@ -408,8 +437,10 @@ published_at: 2018-12-13T17:34:59.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20190130-230218/index.html b/docs/blog/20190130-230218/index.html index 019818f6ef..f9ce9ad8d9 100644 --- a/docs/blog/20190130-230218/index.html +++ b/docs/blog/20190130-230218/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20190130-230218.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20190130-230218.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20190130-230218.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190130-230218.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190130-230218.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190130-230218.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190130-230218.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190130-230218.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190130-230218.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190130-230218.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190130-230218.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190130-230218.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190130-230218.md
  • + +

    New search engine in Joplin🔗

    The original search engine in Joplin was pretty limited - it would search for your exact query and that is it. For example if you search for "recipe cake" it would return results that contain exactly this word in this order and nothing else - it would not return "apple cake recipe" or "recipe for birthday cake", thus forcing you to try various queries.

    The last versions of Joplin include a new search engine that provides much better results, and also allow better specifying search queries.

    @@ -374,7 +403,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190130-230218.md published_at: 2019-01-30T23:02:18.000+00:00

    @@ -408,8 +437,10 @@ published_at: 2019-01-30T23:02:18.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20190404-074157/index.html b/docs/blog/20190404-074157/index.html index fca48c5f16..16af800f05 100644 --- a/docs/blog/20190404-074157/index.html +++ b/docs/blog/20190404-074157/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20190404-074157.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20190404-074157.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20190404-074157.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190404-074157.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190404-074157.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190404-074157.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190404-074157.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190404-074157.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190404-074157.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190404-074157.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190404-074157.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190404-074157.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190404-074157.md
  • + +

    Markdown plugins and Goto Anything🔗

    The latest release includes two relatively important new features:

    The first one, is the addition of several Markdown plugins that enable new features: for example it's now possible to add a table of contents to your notes, to enable footnotes, or to render various text decorations, such as superscript, subscript, highlighting, etc. This was all made possible thanks to the efforts of Caleb John.

    @@ -373,7 +402,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190404-074157.md published_at: 2019-04-04T06:41:57.000+00:00

    @@ -407,8 +436,10 @@ published_at: 2019-04-04T06:41:57.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20190424-112410/index.html b/docs/blog/20190424-112410/index.html index 3ec674cd82..9585be91aa 100644 --- a/docs/blog/20190424-112410/index.html +++ b/docs/blog/20190424-112410/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20190424-112410.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20190424-112410.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20190424-112410.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190424-112410.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190424-112410.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190424-112410.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190424-112410.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190424-112410.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190424-112410.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190424-112410.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190424-112410.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190424-112410.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190424-112410.md
  • + +

    The Joplin forum is one year old🔗

    Exactly one year ago, on 24 April 2018, the Joplin forum was created as a result of this post on GitHub. Before this, the only way to discuss the project was indeed on the GitHub bug tracker, which is not ideal for general discussion about features, development and so on.

    After looking at various options, eventually we settled on Discourse, which provides a nice clean UI, works well on mobile, and is easy to manage. Even better, the Discourse team was kind enough to host the project for us for free, as part of their Free hosting program for open source projects. Not having to manage or pay for the server is great, and it means more time can be spent developing the application.

    @@ -373,7 +402,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190424-112410.md published_at: 2019-04-24T10:24:10.000+00:00

    @@ -407,8 +436,10 @@ published_at: 2019-04-24T10:24:10.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20190523-231026/index.html b/docs/blog/20190523-231026/index.html index 20406fb2c0..8ce0d69169 100644 --- a/docs/blog/20190523-231026/index.html +++ b/docs/blog/20190523-231026/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20190523-231026.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20190523-231026.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20190523-231026.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190523-231026.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190523-231026.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190523-231026.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190523-231026.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190523-231026.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190523-231026.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190523-231026.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190523-231026.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190523-231026.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190523-231026.md
  • + +

    Note history now in Joplin🔗

    The latest versions of Joplin adds support for note history. The applications (desktop, mobile and CLI) now preserve previous versions of the notes, so you can inspect or restore them later on as needed.

    A common complain with many sync-based note taking apps is that they work in an opaque way - sometimes notes are changed or they disappear and it's not clear why - it could be a user error, or some bug, but regardless it makes it hard to trust the app with thousands of notes. So this feature give transparency over what's happening - if some note seems to be gone or changed when it shouldn't, the redundant data allows investigating the issue and restoring content.

    @@ -383,7 +412,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190523-231026.md published_at: 2019-05-23T22:10:26.000+00:00

    @@ -417,8 +446,10 @@ published_at: 2019-05-23T22:10:26.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20190611-000711/index.html b/docs/blog/20190611-000711/index.html index 5c3f547d6b..2a3585317a 100644 --- a/docs/blog/20190611-000711/index.html +++ b/docs/blog/20190611-000711/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20190611-000711.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20190611-000711.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20190611-000711.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190611-000711.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190611-000711.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190611-000711.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190611-000711.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190611-000711.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190611-000711.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190611-000711.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190611-000711.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190611-000711.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190611-000711.md
  • + +

    Changing attachment download behaviour to save disk space🔗

    One issue that came up frequently in the forum is that Joplin's data can be very large, especially when the note collection includes many attachments (images, PDFs, etc.). This happens in particular when using the web clipper a lot, as each web page usually has many images included.

    The recent versions of Joplin (Desktop, mobile and CLI) attempt to mitigate this issue by providing an option to change how attachments are downloaded during synchronisation.

    @@ -373,7 +402,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190611-000711.md published_at: 2019-06-10T23:07:11.000+00:00

    @@ -407,8 +436,10 @@ published_at: 2019-06-10T23:07:11.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20190613-202613/index.html b/docs/blog/20190613-202613/index.html index 01770c4ca4..511490d9e7 100644 --- a/docs/blog/20190613-202613/index.html +++ b/docs/blog/20190613-202613/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20190613-202613.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20190613-202613.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20190613-202613.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190613-202613.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190613-202613.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190613-202613.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190613-202613.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190613-202613.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190613-202613.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190613-202613.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190613-202613.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190613-202613.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190613-202613.md
  • + +

    Customising your notes with the help of the development tools and CSS🔗

    In Joplin desktop, it has been possible to customise the appearance of your notes using CSS for quite some time.

    An issue however is that it is difficult to know what CSS to write and how to select specific elements with CSS. The development tools that were just added allow figuring this out. They are available under the menu Help > Toggle development tools.

    @@ -373,7 +402,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190613-202613.md published_at: 2019-06-13T19:26:13.000+00:00

    @@ -407,8 +436,10 @@ published_at: 2019-06-13T19:26:13.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20190814-225957/index.html b/docs/blog/20190814-225957/index.html index 08209d2974..4422b31560 100644 --- a/docs/blog/20190814-225957/index.html +++ b/docs/blog/20190814-225957/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20190814-225957.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20190814-225957.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20190814-225957.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190814-225957.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190814-225957.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190814-225957.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190814-225957.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190814-225957.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190814-225957.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190814-225957.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190814-225957.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190814-225957.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190814-225957.md
  • + +

    Joplin now supports Fountain screenwriting markup language🔗

    Fountain is markup language for screenwriting. Similar to Markdown, it is a lightweight markup format, which allows editing screenplays in plain text.

    The desktop and mobile Joplin applications now support Fountain, allowing you to write and read your screenplays on your computer or on the go. To add a Fountain screenplay to a note simply wrap it into a fenced block, with the "fountain" identifier. For example:

    @@ -382,7 +411,7 @@ We're underwater, watching a fat catfish swim along.   published_at: 2019-08-14T21:59:57.000+00:00

    @@ -416,8 +445,10 @@ published_at: 2019-08-14T21:59:57.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20190925-000254/index.html b/docs/blog/20190925-000254/index.html index bffc7d06f9..da47d27db1 100644 --- a/docs/blog/20190925-000254/index.html +++ b/docs/blog/20190925-000254/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20190925-000254.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20190925-000254.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20190925-000254.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190925-000254.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190925-000254.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190925-000254.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190925-000254.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190925-000254.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190925-000254.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190925-000254.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190925-000254.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190925-000254.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190925-000254.md
  • + +

    New icon for Joplin!🔗

    The Joplin icon is going to change soon. The one we have now is something I put together quickly, not knowing if the project would interest someone, so I didn't want to spend too much time on it. Now that the project is more mature, it makes sense to start improving the visuals - first the icon, then the logo font, the website and finally the app UI (although these have already been improved little by little over the past year).

    Before picking an icon, I'd be interested to hear about your feedback and whether you have a preference among those below. They all share the same idea - which is something that looks like a note, and that contains a "J" too.

    @@ -387,7 +416,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190925-000254.md published_at: 2019-09-24T23:02:54.000+00:00

    @@ -421,8 +450,10 @@ published_at: 2019-09-24T23:02:54.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20190929-152834/index.html b/docs/blog/20190929-152834/index.html index 7ec99e0f3e..79c8b96570 100644 --- a/docs/blog/20190929-152834/index.html +++ b/docs/blog/20190929-152834/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20190929-152834.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20190929-152834.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20190929-152834.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190929-152834.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190929-152834.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190929-152834.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190929-152834.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190929-152834.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190929-152834.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190929-152834.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190929-152834.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190929-152834.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190929-152834.md
  • + +

    Hacktoberfest 2019 is coming soon!🔗

    A word form @foxmask, our community manager!

    * * *

    @@ -380,7 +409,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20190929-152834.md published_at: 2019-09-29T14:28:34.000+00:00

    @@ -414,8 +443,10 @@ published_at: 2019-09-29T14:28:34.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20191012-233121/index.html b/docs/blog/20191012-233121/index.html index f3c4cb25f1..c7fd76dd01 100644 --- a/docs/blog/20191012-233121/index.html +++ b/docs/blog/20191012-233121/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20191012-233121.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20191012-233121.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20191012-233121.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191012-233121.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191012-233121.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191012-233121.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191012-233121.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191012-233121.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191012-233121.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191012-233121.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191012-233121.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191012-233121.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191012-233121.md
  • + +

    Support for chemical equations using mhchem for Katex🔗

    The next version of Joplin will feature support for chemical equations using mhchem for Katex.

    For example this mhchem syntax will be rendered as below in Joplin:

    @@ -380,7 +409,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191012-233121.md published_at: 2019-10-12T22:31:21.000+00:00

    @@ -414,8 +443,10 @@ published_at: 2019-10-12T22:31:21.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20191014-165136/index.html b/docs/blog/20191014-165136/index.html index 3006f4c1cc..9f33f75573 100644 --- a/docs/blog/20191014-165136/index.html +++ b/docs/blog/20191014-165136/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20191014-165136.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20191014-165136.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20191014-165136.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191014-165136.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191014-165136.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191014-165136.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191014-165136.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191014-165136.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191014-165136.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191014-165136.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191014-165136.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191014-165136.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191014-165136.md
  • + +

    New Joplin icon, second round🔗

    The quest for a new Joplin icon  continue - first many thanks for the votes and feedback! It definitely  helped getting a better sense of what would make a great icon.

    Taking all this into account, the remaining candidates are the 5  following icons. The first three were the top voted icons, and the  following two are based on the feedback here and on the forum.

    @@ -372,7 +401,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191014-165136.md published_at: 2019-10-14T15:51:36.000+00:00

    @@ -406,8 +435,10 @@ published_at: 2019-10-14T15:51:36.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20191101-131852/index.html b/docs/blog/20191101-131852/index.html index b3dad1885a..b2432e1114 100644 --- a/docs/blog/20191101-131852/index.html +++ b/docs/blog/20191101-131852/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20191101-131852.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20191101-131852.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20191101-131852.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191101-131852.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191101-131852.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191101-131852.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191101-131852.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191101-131852.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191101-131852.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191101-131852.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191101-131852.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191101-131852.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191101-131852.md
  • + +

    Hacktoberfest 2019 has now ended 🎃🔗

    We got lots of great contributions for Hacktoberfest 2019, including:

      @@ -376,7 +405,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191101-131852.md published_at: 2019-11-01T13:18:52.000+00:00

      @@ -410,8 +439,10 @@ published_at: 2019-11-01T13:18:52.000+00:00

      ga('send', 'pageview'); +
    + diff --git a/docs/blog/20191117-183855/index.html b/docs/blog/20191117-183855/index.html index eb94b2f32e..6875685c63 100644 --- a/docs/blog/20191117-183855/index.html +++ b/docs/blog/20191117-183855/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20191117-183855.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20191117-183855.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20191117-183855.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191117-183855.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191117-183855.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191117-183855.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191117-183855.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191117-183855.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191117-183855.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191117-183855.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191117-183855.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191117-183855.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191117-183855.md
  • + +

    And the winner is...🔗

    After much discussion and votes and new logo and icon for Joplin has finally been decided:

    @@ -381,7 +410,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191117-183855.md published_at: 2019-11-17T18:38:55.000+00:00

    @@ -415,8 +444,10 @@ published_at: 2019-11-17T18:38:55.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20191118-072700/index.html b/docs/blog/20191118-072700/index.html index fde86dad56..e0f4754a3e 100644 --- a/docs/blog/20191118-072700/index.html +++ b/docs/blog/20191118-072700/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20191118-072700.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20191118-072700.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20191118-072700.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191118-072700.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191118-072700.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191118-072700.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191118-072700.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191118-072700.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191118-072700.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191118-072700.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191118-072700.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191118-072700.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191118-072700.md
  • + +

    Joplin is looking into joining Google Summer of Code in 2020🔗

    Joplin is looking into joining Google Summer of Code next summer. The application period as organisation is expected to happen in the second half of January 2020. Until then Joplin hopes to have multiple active discussion and may even have some easy commits in regard to the application and potential projects.

    @@ -379,7 +408,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20191118-072700.md published_at: 2019-11-18T07:27:00.000+00:00

    @@ -413,8 +442,10 @@ published_at: 2019-11-18T07:27:00.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20200220-190804/index.html b/docs/blog/20200220-190804/index.html index 4ab22650ad..7585d3ef8c 100644 --- a/docs/blog/20200220-190804/index.html +++ b/docs/blog/20200220-190804/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20200220-190804.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20200220-190804.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20200220-190804.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200220-190804.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200220-190804.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200220-190804.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200220-190804.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200220-190804.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200220-190804.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200220-190804.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200220-190804.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200220-190804.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200220-190804.md
  • + +

    GSoC 2020: Joplin has been accepted as a mentor organization!🔗

    Good news, our Google Summer of Code 2020 application has been accepted!

    Since we made the announcement back in November, we already had a few students submitted pull requests and getting themselves familiar with the codebase.

    @@ -371,7 +400,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200220-190804.md published_at: 2020-02-20T19:08:04.000+00:00

    @@ -405,8 +434,10 @@ published_at: 2020-02-20T19:08:04.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20200301-125055/index.html b/docs/blog/20200301-125055/index.html index 193fd6bcd7..f70c901239 100644 --- a/docs/blog/20200301-125055/index.html +++ b/docs/blog/20200301-125055/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20200301-125055.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20200301-125055.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20200301-125055.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200301-125055.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200301-125055.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200301-125055.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200301-125055.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200301-125055.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200301-125055.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200301-125055.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200301-125055.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200301-125055.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200301-125055.md
  • + +

    Large desktop update coming soon🔗

    I haven't kept up with releases lately and thus the new one is quite big, it includes 8 new features, 3 security fixes, 19 improvements, and 29 bug fixes. Here's a summary of what to expect:

    Mermaid diagram support

    @@ -387,7 +416,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200301-125055.md published_at: 2020-03-01T12:50:55.000+00:00

    @@ -421,8 +450,10 @@ published_at: 2020-03-01T12:50:55.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20200314-001555/index.html b/docs/blog/20200314-001555/index.html index 1f60929a03..bce966fac6 100644 --- a/docs/blog/20200314-001555/index.html +++ b/docs/blog/20200314-001555/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20200314-001555.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20200314-001555.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20200314-001555.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200314-001555.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200314-001555.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200314-001555.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200314-001555.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200314-001555.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200314-001555.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200314-001555.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200314-001555.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200314-001555.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200314-001555.md
  • + +

    Experimental WYSIWYG editor in Joplin🔗

    The latest pre-release of Joplin (v1.0.194) includes a new WYSIWYG editor, a prototype for now, but a first step towards integrating this feature into Joplin.

    @@ -381,7 +410,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200314-001555.md published_at: 2020-03-14T00:15:55.000+00:00

    @@ -415,8 +444,10 @@ published_at: 2020-03-14T00:15:55.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/blog/20200406-224254/index.html b/docs/blog/20200406-224254/index.html index e5be695c58..84edb4b138 100644 --- a/docs/blog/20200406-224254/index.html +++ b/docs/blog/20200406-224254/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/blog/20200406-224254.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/blog/20200406-224254.md +https://github.com/laurent22/joplin/blob/dev/readme/blog/20200406-224254.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200406-224254.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200406-224254.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200406-224254.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200406-224254.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200406-224254.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200406-224254.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200406-224254.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200406-224254.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200406-224254.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200406-224254.md
  • + +

    Joplin informal encryption and security audit results🔗

    Joplin encryption, and in particular the E2EE system used during synchronisation, was recently audited by Isaac Potoczny-Jones, CEO of Tozny and this is what he had to say:

    @@ -399,7 +428,7 @@ https://github.com/laurent22/joplin/blob/master/readme/blog/20200406-224254.md published_at: 2020-04-06T21:42:54.000+00:00

    @@ -433,8 +462,10 @@ published_at: 2020-04-06T21:42:54.000+00:00

    ga('send', 'pageview'); +
    + diff --git a/docs/build_troubleshooting/index.html b/docs/build_troubleshooting/index.html index f018c46f21..e029369e80 100644 --- a/docs/build_troubleshooting/index.html +++ b/docs/build_troubleshooting/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/build_troubleshooting.md and any manual made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/build_troubleshooting.md +https://github.com/laurent22/joplin/blob/dev/readme/build_troubleshooting.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/build_troubleshooting.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/build_troubleshooting.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/build_troubleshooting.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/build_troubleshooting.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/build_troubleshooting.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/build_troubleshooting.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/build_troubleshooting.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/build_troubleshooting.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/build_troubleshooting.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/build_troubleshooting.md
  • + +

    Desktop application🔗

    On Windows🔗

    If yarn dist fails, it may need administrative rights.

    @@ -399,7 +428,7 @@ pod install @@ -433,8 +462,10 @@ pod install ga('send', 'pageview'); +
    + diff --git a/docs/changelog/index.html b/docs/changelog/index.html index 0dd0b13575..f371d1859a 100644 --- a/docs/changelog/index.html +++ b/docs/changelog/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/changelog.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/changelog.md +https://github.com/laurent22/joplin/blob/dev/readme/changelog.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog.md
  • + +

    Joplin changelog🔗

    v1.2.6 - 2020-10-09T13:56:59Z🔗

      @@ -2366,7 +2395,7 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog.md

      v0.10.19 - 2017-11-20T18:59:48Z🔗

      @@ -2400,8 +2429,10 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog.md ga('send', 'pageview'); +
    + diff --git a/docs/changelog_cli/index.html b/docs/changelog_cli/index.html index 15baa7ad83..378bd88bde 100644 --- a/docs/changelog_cli/index.html +++ b/docs/changelog_cli/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/changelog_cli.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md +https://github.com/laurent22/joplin/blob/dev/readme/changelog_cli.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md
  • + +

    Joplin terminal app changelog🔗

    cli-v1.2.3 - 2020-10-09T11:17:18Z🔗

      @@ -565,7 +594,7 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md
    @@ -599,8 +628,10 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md ga('send', 'pageview'); +
    + diff --git a/docs/clipper/index.html b/docs/clipper/index.html index 07fd7d5996..f0ce109e4f 100644 --- a/docs/clipper/index.html +++ b/docs/clipper/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/clipper.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/clipper.md +https://github.com/laurent22/joplin/blob/dev/readme/clipper.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/clipper.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/clipper.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/clipper.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/clipper.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/clipper.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/clipper.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/clipper.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/clipper.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/clipper.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/clipper.md
  • + +

    Joplin Web Clipper🔗

    The Web Clipper is a browser extension that allows you to save web pages and screenshots from your browser. To start using it, open the Joplin desktop application, go to the Web Clipper Options and follow the instructions.

    @@ -397,7 +426,7 @@ https://github.com/laurent22/joplin/blob/master/readme/clipper.md

    The Web Clipper service can be used to create, modify or delete notes, notebooks, tags, etc. from any other application. It exposes an API with a number of methods to manage Joplin's data. For more information about this API and how to use it, please check the Joplin API documentation.

    @@ -431,8 +460,10 @@ https://github.com/laurent22/joplin/blob/master/readme/clipper.md ga('send', 'pageview'); +
    + diff --git a/docs/conflict/index.html b/docs/conflict/index.html index 0d056898c3..43c3268a64 100644 --- a/docs/conflict/index.html +++ b/docs/conflict/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/conflict.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/conflict.md +https://github.com/laurent22/joplin/blob/dev/readme/conflict.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/conflict.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/conflict.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/conflict.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/conflict.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/conflict.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/conflict.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/conflict.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/conflict.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/conflict.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/conflict.md
  • + +

    What is a conflict?🔗

    A conflict happens when one note or one attachment is modified in two different places, and then synchronised. In that case, it not possible to determine which version of the note or attachment you want to keep, and thus a conflict is generated.

    What happens in case of a conflict?🔗

    @@ -373,7 +402,7 @@ https://github.com/laurent22/joplin/blob/master/readme/conflict.md

    So if you have not opened your application in a while, manually sync it and wait for it to complete, that way you are sure that whatever change you make will be on the latest version of the note.

    @@ -407,8 +436,10 @@ https://github.com/laurent22/joplin/blob/master/readme/conflict.md ga('send', 'pageview'); +
    + diff --git a/docs/debugging/index.html b/docs/debugging/index.html index 913f91d9b0..c6e963eb5a 100644 --- a/docs/debugging/index.html +++ b/docs/debugging/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/debugging.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/debugging.md +https://github.com/laurent22/joplin/blob/dev/readme/debugging.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/debugging.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/debugging.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/debugging.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/debugging.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/debugging.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/debugging.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/debugging.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/debugging.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/debugging.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/debugging.md
  • + +

    How to enable debugging🔗

    It is possible to get the apps to display or log more information that might help debug various issues.

    Desktop application🔗

    @@ -393,7 +422,7 @@ https://github.com/laurent22/joplin/blob/master/readme/debugging.md

    Creating a low-level bug report on iOS🔗

    Some crashes cannot be investigated using Joplin's own tools. In that case, it can be very helpful to provide a native iOS crash report.

    For this, please follow these instructions:

    -

    You can send it to this address https://raw.githubusercontent.com/laurent22/joplin/master/Assets/AdresseSupport.png

    +

    You can send it to this address https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/AdresseSupport.png

    https://developer.apple.com/library/content/qa/qa1747/_index.html

    Getting Crash Logs Directly From a Device Without Xcode

    Your users can retrieve crash reports from their device and send them to you via email by following these instructions.

    @@ -420,7 +449,7 @@ https://github.com/laurent22/joplin/blob/master/readme/debugging.md @@ -454,8 +483,10 @@ https://github.com/laurent22/joplin/blob/master/readme/debugging.md ga('send', 'pageview'); +
    + diff --git a/docs/desktop/index.html b/docs/desktop/index.html index 381ea6cf2d..2a80c2f18f 100644 --- a/docs/desktop/index.html +++ b/docs/desktop/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/desktop.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/desktop.md +https://github.com/laurent22/joplin/blob/dev/readme/desktop.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/desktop.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/desktop.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/desktop.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/desktop.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/desktop.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/desktop.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/desktop.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/desktop.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/desktop.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,12 +389,14 @@ https://github.com/laurent22/joplin/blob/master/readme/desktop.md
  • + +

    Desktop application🔗

    For general information relevant to all the applications, see also Joplin home page.

    @@ -401,8 +430,10 @@ https://github.com/laurent22/joplin/blob/master/readme/desktop.md ga('send', 'pageview'); +
    + diff --git a/docs/donate/index.html b/docs/donate/index.html index 5e78ec2450..56d1e84ba7 100644 --- a/docs/donate/index.html +++ b/docs/donate/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/donate.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/donate.md +https://github.com/laurent22/joplin/blob/dev/readme/donate.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/donate.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/donate.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/donate.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/donate.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/donate.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/donate.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/donate.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/donate.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/donate.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/donate.md
  • + +

    Support Joplin development🔗

    Donations to Joplin support the development of the project. Developing quality applications mostly takes time, but there are also some expenses, such as digital certificates to sign the applications, app store fees, hosting, etc. Most of all, your donation will make it possible to keep up the current development standards.

    PayPal🔗

    @@ -382,7 +411,7 @@ https://github.com/laurent22/joplin/blob/master/readme/donate.md @@ -416,8 +445,10 @@ https://github.com/laurent22/joplin/blob/master/readme/donate.md ga('send', 'pageview'); +
    + diff --git a/docs/e2ee/index.html b/docs/e2ee/index.html index 0039ae318d..e31cc23270 100644 --- a/docs/e2ee/index.html +++ b/docs/e2ee/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/e2ee.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/e2ee.md +https://github.com/laurent22/joplin/blob/dev/readme/e2ee.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/e2ee.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/e2ee.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/e2ee.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/e2ee.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/e2ee.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/e2ee.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/e2ee.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/e2ee.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/e2ee.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/e2ee.md
  • + +

    About End-To-End Encryption (E2EE)🔗

    End-to-end encryption (E2EE) is a system where only the owner of the data (i.e. notes, notebooks, tags or resources) can read it. It prevents potential eavesdroppers - including telecom providers, internet providers, and even the developers of Joplin from being able to access the data.

    The system is designed to defeat any attempts at surveillance or tampering because no third party can decipher the data being communicated or stored.

    @@ -385,7 +414,7 @@ https://github.com/laurent22/joplin/blob/master/readme/e2ee.md

    For a more technical description, mostly relevant for development or to review the method being used, please see the Encryption specification.

    @@ -419,8 +448,10 @@ https://github.com/laurent22/joplin/blob/master/readme/e2ee.md ga('send', 'pageview'); +
    + diff --git a/docs/faq/index.html b/docs/faq/index.html index 58f6fdab5a..acbf9257b1 100644 --- a/docs/faq/index.html +++ b/docs/faq/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/faq.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/faq.md +https://github.com/laurent22/joplin/blob/dev/readme/faq.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/faq.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/faq.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/faq.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/faq.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/faq.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/faq.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/faq.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/faq.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/faq.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/faq.md
  • + +

    FAQ🔗

    Installer gets stuck on Windows🔗

    The installer may get stuck if the app was not uninstalled correctly. To fix the issue you will need to clean up the left-over entry from the Registry. To do so please follow these steps:

    @@ -449,7 +478,7 @@ on this server.</p>

    The name comes from the composer and pianist Scott Joplin, which I often listen to. His name is also easy to remember and type so it felt like a good choice. And, to quote a user on Hacker News, "though Scott Joplin's ragtime musical style has a lot in common with some very informal music, his own approach was more educated, sophisticated, and precise. Every note was in its place for a reason, and he was known to prefer his pieces to be performed exactly as written. So you could say that compared to the people who came before him, his notes were more organized".

    @@ -483,8 +512,10 @@ on this server.</p> ga('send', 'pageview'); +
    + diff --git a/docs/gsoc2020/ideas/index.html b/docs/gsoc2020/ideas/index.html index 841898a63f..b33c0fd89a 100644 --- a/docs/gsoc2020/ideas/index.html +++ b/docs/gsoc2020/ideas/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/gsoc2020/ideas.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/ideas.md +https://github.com/laurent22/joplin/blob/dev/readme/gsoc2020/ideas.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/ideas.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/ideas.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/ideas.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/ideas.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/ideas.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/ideas.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/ideas.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/ideas.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/ideas.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/ideas.md
  • + +

    GSoC 2020 Ideas🔗

    2020 is Joplin first round at Google Summer of Code. Detailed information on how to get involved and apply are given in the general Summer of Code introduction

    These are all proposals! We are open to new ideas you might have!! Do you have an awesome idea you want to work on with Joplin but that is not among the ideas below? That's cool. We love that! But please do us a favour: Get in touch with a mentor early on and make sure your project is realistic and within the scope of Joplin.

    @@ -470,7 +499,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/ideas.md

    Potential Mentor(s): tessus, laurent22

    @@ -504,8 +533,10 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/ideas.md ga('send', 'pageview'); +
    + diff --git a/docs/gsoc2020/index/index.html b/docs/gsoc2020/index/index.html index e5d0a6f26f..16f7b3c3ca 100644 --- a/docs/gsoc2020/index/index.html +++ b/docs/gsoc2020/index/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/gsoc2020/index.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/index.md +https://github.com/laurent22/joplin/blob/dev/readme/gsoc2020/index.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/index.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/index.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/index.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/index.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/index.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/index.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/index.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/index.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/index.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/gsoc2020/index.md
  • + +

    Google Summer of Code 2020🔗

    Joplin has a young but well proven history. It all started by single idea but is rising more and more commitment as well as demands.

    Joplin is about to make another big step to answers these demands by applying at Google Summer of Code. All students and Joplin users and developers are welcome to participate in the hopefully first year Summer of Code program with Joplin. Here's how.

    @@ -379,8 +408,8 @@ Moreover, watch/subscribe the topic How to contribute -
  • How to build
  • +
  • How to contribute
  • +
  • How to build
  • Moreover there are community driven projects such as:

    + diff --git a/docs/gsod2020/ideas/index.html b/docs/gsod2020/ideas/index.html index 9f27133052..38a1750339 100644 --- a/docs/gsod2020/ideas/index.html +++ b/docs/gsod2020/ideas/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/gsod2020/ideas.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/gsod2020/ideas.md +https://github.com/laurent22/joplin/blob/dev/readme/gsod2020/ideas.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/ideas.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/ideas.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/ideas.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/ideas.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/ideas.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/ideas.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/ideas.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/ideas.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/ideas.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/ideas.md
  • + +

    1.Idea - Create documenation hub🔗

    • Make a screening of available options of how apps to be utilized to organize documentation better and simplified access to information.
      @@ -395,7 +424,7 @@ Task is to find a toolset to structure them and make the knowledge buried in the

      Joplin has 4 panes: side bar, notes list, code and view. Change joplin in a way that these parts can be different windows. Thus it is possible to put these windows on different screens for more space and better overview.

      @@ -429,8 +458,10 @@ Task is to find a toolset to structure them and make the knowledge buried in the ga('send', 'pageview'); +
    + diff --git a/docs/gsod2020/index/index.html b/docs/gsod2020/index/index.html index 63462a8228..10beb01d7b 100644 --- a/docs/gsod2020/index/index.html +++ b/docs/gsod2020/index/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/gsod2020/index.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/gsod2020/index.md +https://github.com/laurent22/joplin/blob/dev/readme/gsod2020/index.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/index.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/index.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/index.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/index.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/index.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/index.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/index.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/index.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/index.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/gsod2020/index.md
  • + +

    Google Season of Doc 2020🔗

    Joplin has a young but well proven history. It all started by single idea but is rising more and more commitment as well as demands.

    Joplin is about to make another big step to answers these demands by being an organization at Google Summer of Code 2020.
    @@ -455,7 +484,7 @@ The procedure reflects some of the lessons learnt in the GSOC 2020 campaign, so

    https://joplinapp.org/gsod2020/ideas/

    @@ -489,8 +518,10 @@ The procedure reflects some of the lessons learnt in the GSOC 2020 campaign, so ga('send', 'pageview'); +
    + diff --git a/docs/index.html b/docs/index.html index 4860d64b3a..353a978b6b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -9,7 +9,7 @@ This file was auto-generated from README.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/README.md +https://github.com/laurent22/joplin/blob/dev/README.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/README.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/README.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/README.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/README.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/README.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/README.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/README.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/README.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/README.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,9 +389,11 @@ https://github.com/laurent22/joplin/blob/master/README.md
  • + +

    Donate Sponsor on GitHub Become a patron


    -

    Joplin is a free, open source note taking and to-do application, which can handle a large number of notes organised into notebooks. The notes are searchable, can be copied, tagged and modified either from the applications directly or from your own text editor. The notes are in Markdown format.

    +

    Joplin is a free, open source note taking and to-do application, which can handle a large number of notes organised into notebooks. The notes are searchable, can be copied, tagged and modified either from the applications directly or from your own text editor. The notes are in Markdown format.

    Notes exported from Evernote via .enex files can be imported into Joplin, including the formatted content (which is converted to Markdown), resources (images, attachments, etc.) and complete metadata (geolocation, updated time, created time, etc.). Plain Markdown files can also be imported.

    The notes can be synchronised with various cloud services including Nextcloud, Dropbox, OneDrive, WebDAV or the file system (for example with a network directory). When synchronising the notes, notebooks, tags and other metadata are saved to plain text files which can be easily inspected, backed up and moved around.

    The application is available for Windows, Linux, macOS, Android and iOS (the terminal app also works on FreeBSD). A Web Clipper, to save web pages and screenshots from your browser, is also available for Firefox and Chrome.

    @@ -394,7 +423,7 @@ https://github.com/laurent22/joplin/blob/master/README.md Linux Get it on Linux -An Arch Linux package (unsupported) is also available.

    If it works with your distribution (it has been tested on Ubuntu, Fedora, and Mint; the desktop environments supported are GNOME, KDE, Xfce, MATE, LXQT, LXDE, Unity, Cinnamon, Deepin and Pantheon), the recommended way is to use this script as it will handle the desktop icon too:

    wget -O - https://raw.githubusercontent.com/laurent22/joplin/master/Joplin_install_and_update.sh | bash +An Arch Linux package (unsupported) is also available.

    If it works with your distribution (it has been tested on Ubuntu, Fedora, and Mint; the desktop environments supported are GNOME, KDE, Xfce, MATE, LXQT, LXDE, Unity, Cinnamon, Deepin and Pantheon), the recommended way is to use this script as it will handle the desktop icon too:

    wget -O - https://raw.githubusercontent.com/laurent22/joplin/dev/Joplin_install_and_update.sh | bash @@ -411,7 +440,7 @@ https://github.com/laurent22/joplin/blob/master/README.md Android Get it on Google Play -or download the APK file: 64-bit 32-bit +or download the APK file: 64-bit 32-bit iOS @@ -816,7 +845,7 @@ Eg. :search -- "-tag:tag1".

    Joplin is currently available in the languages below. If you would like to contribute a new translation, it is quite straightforward, please follow these steps:

    + diff --git a/docs/markdown/index.html b/docs/markdown/index.html index d8feb47b99..1d839e7432 100644 --- a/docs/markdown/index.html +++ b/docs/markdown/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/markdown.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/markdown.md +https://github.com/laurent22/joplin/blob/dev/readme/markdown.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/markdown.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/markdown.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/markdown.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/markdown.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/markdown.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/markdown.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/markdown.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/markdown.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/markdown.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/markdown.md
  • + +

    Markdown Guide🔗

    Markdown is a simple way to format text that looks great on any device. It doesn't do anything fancy like change the font size, color, or type — just the essentials, using keyboard symbols you already know. Since it is plain text, it is an easy way to author notes and documents and when needed it can be converted to a rich text HTML document.

    Joplin desktop and mobile applications can display both the Markdown text and the rendered rich text document.

    @@ -683,7 +712,7 @@ graph TD; @@ -717,8 +746,10 @@ graph TD; ga('send', 'pageview'); +
    + diff --git a/docs/mobile/index.html b/docs/mobile/index.html index e6af31dc87..754107777f 100644 --- a/docs/mobile/index.html +++ b/docs/mobile/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/mobile.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/mobile.md +https://github.com/laurent22/joplin/blob/dev/readme/mobile.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/mobile.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/mobile.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/mobile.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/mobile.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/mobile.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/mobile.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/mobile.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/mobile.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/mobile.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,11 +389,13 @@ https://github.com/laurent22/joplin/blob/master/readme/mobile.md
  • + +

    Mobile app🔗

    An Android and iOS (iPhone/iPad) applications are available from the Joplin home page.

    @@ -400,8 +429,10 @@ https://github.com/laurent22/joplin/blob/master/readme/mobile.md ga('send', 'pageview'); +
    + diff --git a/docs/nextcloud_app/index.html b/docs/nextcloud_app/index.html index a7bf1d913a..1dc8f136de 100644 --- a/docs/nextcloud_app/index.html +++ b/docs/nextcloud_app/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/nextcloud_app.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/nextcloud_app.md +https://github.com/laurent22/joplin/blob/dev/readme/nextcloud_app.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/nextcloud_app.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/nextcloud_app.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/nextcloud_app.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/nextcloud_app.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/nextcloud_app.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/nextcloud_app.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/nextcloud_app.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/nextcloud_app.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/nextcloud_app.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/nextcloud_app.md
  • + +

    Joplin Web API for Nextcloud🔗

    This is a beta feature, not yet completed. More info coming soon!

    The app can be downloaded from there: https://apps.nextcloud.com/apps/joplin

    @@ -401,7 +430,7 @@ https://github.com/laurent22/joplin/blob/master/readme/nextcloud_app.md @@ -435,8 +464,10 @@ https://github.com/laurent22/joplin/blob/master/readme/nextcloud_app.md ga('send', 'pageview'); +
    + diff --git a/docs/plugins/index.html b/docs/plugins/index.html index 1dea43d171..da4b171907 100644 --- a/docs/plugins/index.html +++ b/docs/plugins/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/plugins.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/plugins.md +https://github.com/laurent22/joplin/blob/dev/readme/plugins.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/plugins.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/plugins.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/plugins.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/plugins.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/plugins.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/plugins.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/plugins.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/plugins.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/plugins.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,13 +389,15 @@ https://github.com/laurent22/joplin/blob/master/readme/plugins.md
  • + +

    Plugins🔗

    Joplin supports plugins, which can be used to add new features or modify the application behaviour.

    Installing a plugin🔗

    To install a plugin, copy its directory to your profile's plugins directory. The plugin will be automatically loaded and executed when you restart the application.

    @@ -402,8 +431,10 @@ https://github.com/laurent22/joplin/blob/master/readme/plugins.md ga('send', 'pageview'); +
    + diff --git a/docs/prereleases/index.html b/docs/prereleases/index.html index 031b968a17..5af2603ebc 100644 --- a/docs/prereleases/index.html +++ b/docs/prereleases/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/prereleases.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/prereleases.md +https://github.com/laurent22/joplin/blob/dev/readme/prereleases.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/prereleases.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/prereleases.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/prereleases.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/prereleases.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/prereleases.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/prereleases.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/prereleases.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/prereleases.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/prereleases.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/prereleases.md
  • + +

    Getting pre-releases🔗

    Pre-releases are available for the desktop application. They are pretty much like regular releases, except that they have not yet been tested by many users, so it is possible that a bug or two went through.

    You can help the development of Joplin by choosing to receive these early releases when updating the application. If you find any bug or other issue, you may report it on the forum or GitHub.

    @@ -369,7 +398,7 @@ https://github.com/laurent22/joplin/blob/master/readme/prereleases.md

    To have access to these pre-releases, simply go to Configuration screen and tick the box "Get pre-releases when checking for updates".

    @@ -403,8 +432,10 @@ https://github.com/laurent22/joplin/blob/master/readme/prereleases.md ga('send', 'pageview'); +
    + diff --git a/docs/spec/e2ee/index.html b/docs/spec/e2ee/index.html index 2a0ae106b0..e8838b60a9 100644 --- a/docs/spec/e2ee/index.html +++ b/docs/spec/e2ee/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/spec/e2ee.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/spec/e2ee.md +https://github.com/laurent22/joplin/blob/dev/readme/spec/e2ee.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/e2ee.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/e2ee.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/e2ee.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/e2ee.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/e2ee.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/e2ee.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/e2ee.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/e2ee.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/e2ee.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/e2ee.md
  • + +

    Encryption🔗

    Encrypted data is encoded to ASCII because encryption/decryption functions in React Native can only deal with strings. So for compatibility with all the apps we need to use the lowest common denominator.

    Encrypted data format🔗

    @@ -460,7 +489,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/e2ee.md @@ -494,8 +523,10 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/e2ee.md ga('send', 'pageview'); +
    + diff --git a/docs/spec/history/index.html b/docs/spec/history/index.html index 58c58b6f58..e886ab15a8 100644 --- a/docs/spec/history/index.html +++ b/docs/spec/history/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/spec/history.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/spec/history.md +https://github.com/laurent22/joplin/blob/dev/readme/spec/history.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/history.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/history.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/history.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/history.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/history.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/history.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/history.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/history.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/history.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/history.md
  • + +

    Note history🔗

    The note history preserves versions of the notes at regular interval. All the revisions are synced and shared across all devices.

    Revision format🔗

    @@ -392,7 +421,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/history.md

    It can happen if a note is changed on two different devices within less than 10 minutes. A revision will be created on each device, then when they are synced it will appear that there's less than 10 min between the revisions.

    @@ -426,8 +455,10 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/history.md ga('send', 'pageview'); +
    + diff --git a/docs/spec/plugins/index.html b/docs/spec/plugins/index.html index c09b1e1843..9076450572 100644 --- a/docs/spec/plugins/index.html +++ b/docs/spec/plugins/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/spec/plugins.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/spec/plugins.md +https://github.com/laurent22/joplin/blob/dev/readme/spec/plugins.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/plugins.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/plugins.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/plugins.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/plugins.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/plugins.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/plugins.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/plugins.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/plugins.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/plugins.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/plugins.md
  • + +

    Plugin system architecture🔗

    The plugin system assumes a multi-process architecture, which is safer and easier to manage. For example if a plugin freezes or crashes, it doesn't bring down the app with it. It also makes it easier to find the source of problem when there is one - eg. we know that process X has crashed so the problem is with the plugin running inside. The alternative, to run everything within the same process, would make it very hard to make such a diagnostic. Once a plugin call is frozen in an infinite loop or crashes the app, we can't know anything.

    Main architecture elements🔗

    @@ -430,7 +459,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/plugins.md @@ -464,8 +493,10 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/plugins.md ga('send', 'pageview'); +
    + diff --git a/docs/spec/search_sorting/index.html b/docs/spec/search_sorting/index.html index c1db19cc39..167d4fa259 100644 --- a/docs/spec/search_sorting/index.html +++ b/docs/spec/search_sorting/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/spec/search_sorting.md and any manual c made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/spec/search_sorting.md +https://github.com/laurent22/joplin/blob/dev/readme/spec/search_sorting.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/search_sorting.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/search_sorting.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/search_sorting.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/search_sorting.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/search_sorting.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/search_sorting.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/search_sorting.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/search_sorting.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/search_sorting.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/search_sorting.md
  • + +

    Search Engine🔗

    The Search Engine powers the Search input in the note list and the Goto Anything dialog.

    Search algorithm🔗

    @@ -387,7 +416,7 @@ Recent notes will, therefore, be weighted highly in the search results.
    This time-based weight decays logarithmically, becoming less of a factor than BM25 after months have passed.

    @@ -421,8 +450,10 @@ This time-based weight decays logarithmically, becoming less of a factor than BM ga('send', 'pageview'); +
    + diff --git a/docs/spec/sync_lock/index.html b/docs/spec/sync_lock/index.html index 657f2a015c..25e17f7cfe 100644 --- a/docs/spec/sync_lock/index.html +++ b/docs/spec/sync_lock/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/spec/sync_lock.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/spec/sync_lock.md +https://github.com/laurent22/joplin/blob/dev/readme/spec/sync_lock.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/sync_lock.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/sync_lock.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/sync_lock.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/sync_lock.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/sync_lock.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/sync_lock.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/sync_lock.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/sync_lock.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/sync_lock.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/sync_lock.md
  • + +

    Lock types🔗

    There are two types of locks:

      @@ -424,7 +453,7 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/sync_lock.md

      On startup, the app check the upgradeState setting. If it is MUST_UPGRADE it displays the upgrade screen and starts upgrarding. Once done it sets upgradeState back to IDLE, and restart the app.

      @@ -458,8 +487,10 @@ https://github.com/laurent22/joplin/blob/master/readme/spec/sync_lock.md ga('send', 'pageview'); +
    + diff --git a/docs/stats/index.html b/docs/stats/index.html index 5c93af483b..455e8dd43b 100644 --- a/docs/stats/index.html +++ b/docs/stats/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/stats.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/stats.md +https://github.com/laurent22/joplin/blob/dev/readme/stats.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md
  • + +

    Joplin statistics🔗

    @@ -1589,7 +1618,7 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md
    @@ -1623,8 +1652,10 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md ga('send', 'pageview'); +
    + diff --git a/docs/terminal/index.html b/docs/terminal/index.html index c331729880..ecfbfb6657 100644 --- a/docs/terminal/index.html +++ b/docs/terminal/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/terminal.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/terminal.md +https://github.com/laurent22/joplin/blob/dev/readme/terminal.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/terminal.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/terminal.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/terminal.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/terminal.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/terminal.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/terminal.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/terminal.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/terminal.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/terminal.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/terminal.md
  • + +

    Joplin is a free, open source note taking and to-do application, which can handle a large number of notes organised into notebooks. The notes are searchable, can be copied, tagged and modified with your own text editor.

    Notes exported from Evernote via .enex files can be imported into Joplin, including the formatted content (which is converted to Markdown), resources (images, attachments, etc.) and complete metadata (geolocation, updated time, created time, etc.). Plain Markdown files can also be imported.

    The notes can be synchronised with various targets including the file system (for example with a network directory), Nextcloud, Dropbox, OneDrive or WebDAV. When synchronising the notes, notebooks, tags and other metadata are saved to plain text files which can be easily inspected, backed up and moved around.

    @@ -1043,7 +1072,7 @@ version

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    @@ -1077,8 +1106,10 @@ version ga('send', 'pageview'); +
    + diff --git a/docs/welcome/1_welcome_to_joplin/index.html b/docs/welcome/1_welcome_to_joplin/index.html index 6067d1bd5b..4f61caa98e 100644 --- a/docs/welcome/1_welcome_to_joplin/index.html +++ b/docs/welcome/1_welcome_to_joplin/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/welcome/1_welcome_to_joplin.md and any made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/welcome/1_welcome_to_joplin.md +https://github.com/laurent22/joplin/blob/dev/readme/welcome/1_welcome_to_joplin.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/1_welcome_to_jopl background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/1_welcome_to_jopl background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/1_welcome_to_jopl } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/1_welcome_to_jopl padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/1_welcome_to_jopl font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/1_welcome_to_jopl display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/1_welcome_to_jopl opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/1_welcome_to_jopl -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/1_welcome_to_jopl
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/1_welcome_to_jopl
  • + +

    Welcome to Joplin! 🗒️🔗

    Joplin is a free, open source note taking and to-do application, which helps you write and organise your notes, and synchronise them between your devices. The notes are searchable, can be copied, tagged and modified either from the applications directly or from your own text editor. The notes are in Markdown format. Joplin is available as a 💻 desktop, 📱 mobile and 🔡 terminal application.

    The notes in this notebook give an overview of what Joplin can do and how to use it. In general, the three applications share roughly the same functionalities; any differences will be clearly indicated.

    @@ -412,7 +441,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/1_welcome_to_jopl @@ -446,8 +475,10 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/1_welcome_to_jopl ga('send', 'pageview'); +
    + diff --git a/docs/welcome/2_importing_and_exporting_notes/index.html b/docs/welcome/2_importing_and_exporting_notes/index.html index 54aba9f5ac..61a06ec4eb 100644 --- a/docs/welcome/2_importing_and_exporting_notes/index.html +++ b/docs/welcome/2_importing_and_exporting_notes/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/welcome/2_importing_and_exporting_notes made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/welcome/2_importing_and_exporting_notes.md +https://github.com/laurent22/joplin/blob/dev/readme/welcome/2_importing_and_exporting_notes.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/2_importing_and_e background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/2_importing_and_e background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/2_importing_and_e } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/2_importing_and_e padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/2_importing_and_e font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/2_importing_and_e display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/2_importing_and_e opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/2_importing_and_e -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/2_importing_and_e
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/2_importing_and_e
  • + +

    Importing and exporting notes ↔️🔗

    Importing from Evernote🔗

    Joplin was designed as a replacement for Evernote and so can import complete Evernote notebooks, as well as notes, tags, images, attached files and note metadata (such as author, geo-location, etc.) via ENEX files.

    @@ -372,7 +401,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/2_importing_and_e

    Joplin can export to the JEX format (Joplin Export file), which is an archive that can contain multiple notes, notebooks, etc. This is a format mostly designed for backup purposes. You may also export to other formats such as plain Markdown files, to JSON or to PDF. Find out more about exporting notes on the official website.

    @@ -406,8 +435,10 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/2_importing_and_e ga('send', 'pageview'); +
    + diff --git a/docs/welcome/3_synchronising_your_notes/index.html b/docs/welcome/3_synchronising_your_notes/index.html index 36ce9f011e..39fc788825 100644 --- a/docs/welcome/3_synchronising_your_notes/index.html +++ b/docs/welcome/3_synchronising_your_notes/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/welcome/3_synchronising_your_notes.md a made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/welcome/3_synchronising_your_notes.md +https://github.com/laurent22/joplin/blob/dev/readme/welcome/3_synchronising_your_notes.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/3_synchronising_y background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/3_synchronising_y background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/3_synchronising_y } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/3_synchronising_y padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/3_synchronising_y font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/3_synchronising_y display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/3_synchronising_y opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/3_synchronising_y -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/3_synchronising_y
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/3_synchronising_y
  • + +

    Synchronising your notes 🔄🔗

    One of the goals of Joplin was to avoid being tied to any particular company or service, whether it is Evernote, Google or Microsoft. As such the synchronisation is designed without any hard dependency to any particular service. You basically choose the service you prefer among those supported, setup the configuration, and the app will be able to sync between your computers or mobile devices.

    The supported cloud services are the following:

    @@ -376,7 +405,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/3_synchronising_y

    Joplin supports end-to-end encryption (E2EE) on all the applications. E2EE is a system where only the owner of the data can read it. It prevents potential eavesdroppers - including telecom providers, internet providers, and even the developers of Joplin from being able to access the data. Please see the End-To-End Encryption Tutorial for more information about this feature and how to enable it.

    @@ -410,8 +439,10 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/3_synchronising_y ga('send', 'pageview'); +
    + diff --git a/docs/welcome/4_tips/index.html b/docs/welcome/4_tips/index.html index 3053fe9e2b..4c9f036601 100644 --- a/docs/welcome/4_tips/index.html +++ b/docs/welcome/4_tips/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/welcome/4_tips.md and any manual change made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/welcome/4_tips.md +https://github.com/laurent22/joplin/blob/dev/readme/welcome/4_tips.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/4_tips.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/4_tips.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/4_tips.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/4_tips.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/4_tips.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/4_tips.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/4_tips.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/4_tips.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/4_tips.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/4_tips.md
  • + +

    Tips 💡🔗

    The first few notes should have given you an overview of the main functionalities of Joplin, but there's more it can do. See below for some of these features and how to get more help using the app:

    Web clipper🔗

    @@ -429,7 +458,7 @@ $$

    Please see the donation page for information on how to support the development of Joplin.

    @@ -463,8 +492,10 @@ $$

    ga('send', 'pageview'); +
    + diff --git a/docs/welcome/5_privacy/index.html b/docs/welcome/5_privacy/index.html index a77665f060..08249e48f6 100644 --- a/docs/welcome/5_privacy/index.html +++ b/docs/welcome/5_privacy/index.html @@ -9,7 +9,7 @@ This file was auto-generated from readme/welcome/5_privacy.md and any manual cha made to it will be overwritten. To make a change to this file please modify the source Markdown file: -https://github.com/laurent22/joplin/blob/master/readme/welcome/5_privacy.md +https://github.com/laurent22/joplin/blob/dev/readme/welcome/5_privacy.md --> @@ -28,6 +28,15 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/5_privacy.md background-color: #F1F1F1; color: #333333; } + + .root { + overflow: hidden; + } + + a[href^="mailto:"] { + word-break: break-all; + } + table { margin-bottom: 1em; } @@ -72,6 +81,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/5_privacy.md background-color: #eee; border: 1px solid #ccc; font-size: .85em; + word-break: break-all; } pre code { border: none; @@ -184,8 +194,9 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/5_privacy.md } .nav { background-color: black; - display: table; - width: inherit; + display: flex; + flex-direction: row; + align-items: center; } .nav.sticky { position:fixed; @@ -202,9 +213,8 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/5_privacy.md padding-left: 2em; margin-bottom: 0; display: table-cell; - /* min-width: 250px; */ - /* For GSoC: */ - min-width: 470px; + display: flex; + width: 100%; } .nav ul li { display: inline-block; @@ -215,11 +225,11 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/5_privacy.md font-weight: bold; } .nav-right { - display: table-cell; - width: 100%; + display: flex; text-align: right; vertical-align: middle; line-height: 0; + margin-right: 10px; } .nav-right .share-btn { display: none; @@ -228,7 +238,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/5_privacy.md display: none; } .footer { - padding-top: 1em; + padding: 2em; border-top: 1px solid #d4d4d4; margin-top: 2em; color: gray; @@ -254,6 +264,23 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/5_privacy.md opacity: 1; } + @media (min-width: 992px) { + .content{ + display: flex; + } + + #toc{ + display: block!important; + align-self: flex-start; + width: 300px; + position: sticky; top: 20px; left: 0; + } + + .main{ + width: calc(100% - 300px); + } + } + .bottom-links { display: flex; justify-content: center; @@ -275,7 +302,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/5_privacy.md -
    +
    @@ -341,7 +368,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/5_privacy.md
  • Note History spec
  • Sync Lock spec
  • Plugin Architecture spec
  • -
  • Search Sorting spec
  • +
  • Search Sorting spec
  • @@ -362,6 +389,8 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/5_privacy.md
  • + +

    Privacy🔗

    Joplin values your privacy and security by giving you complete control over your information and digital footprint.

    Joplin applications do not send any data to any service without your authorisation. Any data that Joplin saves, such as notes or images, are saved to your own device and you are free to delete this data at any time.

    @@ -396,7 +425,7 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/5_privacy.md

    For any question about Joplin privacy, please leave a message on the Joplin Forum.

    @@ -430,8 +459,10 @@ https://github.com/laurent22/joplin/blob/master/readme/welcome/5_privacy.md ga('send', 'pageview'); +
    + diff --git a/joplin.code-workspace b/joplin.code-workspace index 7b92b18f5e..f24d712ebd 100644 --- a/joplin.code-workspace +++ b/joplin.code-workspace @@ -711,7 +711,10 @@ "ReactNativeClient/lib/components/NoteBodyViewer/hooks/useOnResourceLongPress.js": true, "ReactNativeClient/lib/components/NoteBodyViewer/hooks/useSource.js": true, "ReactNativeClient/lib/components/NoteBodyViewer/NoteBodyViewer.js": true, - "ReactNativeClient/lib/components/screens/Note.js": true + "ReactNativeClient/lib/components/screens/Note.js": true, + "CliClient/tests/services/plugins/api/JoplinSetting.js": true, + "ReactNativeClient/lib/services/plugins/api/JoplinViewsMenus.js": true, + "ReactNativeClient/lib/services/plugins/MenuController.js": true }, "spellright.language": [ "en" diff --git a/readme/api/get_started/plugins.md b/readme/api/get_started/plugins.md index 50e546c9bc..457c32582b 100644 --- a/readme/api/get_started/plugins.md +++ b/readme/api/get_started/plugins.md @@ -2,7 +2,7 @@ In this article you will learn the basic steps to build and test a plugin in Joplin. -## Setting up your environment +## Setting up your environment First you need to setup your environment: diff --git a/readme/api/overview.md b/readme/api/overview.md index 45d226ca88..cadda6c445 100644 --- a/readme/api/overview.md +++ b/readme/api/overview.md @@ -6,7 +6,7 @@ The two main extension points are: - The [data API](https://github.com/laurent22/joplin/blob/dev/readme/api/references/rest_api.md), which is a server that provides access to Joplin data to external applications. It is possible, using standard HTTP calls, to create, modify or delete notes, notebooks, tags, etc. as well as attach files to notes and retrieve these files. This is for example how the web clipper communicates with Joplin. -- The [plugin API](https://joplinapp.org/api/references/plugin_api/classes/joplin.html), which allows directly modifying Joplin by adding new features to the application. Using this API, you can: +- The [plugin API](https://github.com/laurent22/joplin/blob/dev/readme/api/get_started/plugins.md), which allows directly modifying Joplin by adding new features to the application. Using this API, you can: - Access notes, folders, etc. via the data API - Add a view to display custom data using HTML/CSS/JS - Create a dialog to display information and get input from the user diff --git a/readme/api/tutorials/toc_plugin.md b/readme/api/tutorials/toc_plugin.md index 31a7f1468c..6df267d40c 100644 --- a/readme/api/tutorials/toc_plugin.md +++ b/readme/api/tutorials/toc_plugin.md @@ -8,9 +8,9 @@ Through this tutorial you will learn about several aspect of the Joplin API, inc - How to create a webview - How to listen to changes in the user interface -## Setting up your environment +## Setting up your environment -Before getting any further, make sure your environment is setup correctly as described in the [Get Started guide](https://github.com/laurent22/joplin/blob/dev/readme/api/get_started/plugins/). +Before getting any further, make sure your environment is setup correctly as described in the [Get Started guide](https://github.com/laurent22/joplin/blob/dev/readme/api/get_started/plugins.md). ## Registering the plugin