mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
Update website
This commit is contained in:
parent
9af8720199
commit
a0f21796c2
@ -20,9 +20,9 @@ Three types of applications are available: for the **desktop** (Windows, macOS a
|
||||
|
||||
Operating System | Download | Alternative
|
||||
-----------------|--------|-------------------
|
||||
Windows (32 and 64-bit) | <a href='https://github.com/laurent22/joplin/releases/download/v1.2.6/Joplin-Setup-1.2.6.exe'><img alt='Get it on Windows' width="134px" src='https://joplinapp.org/images/BadgeWindows.png'/></a> | Or get the <a href='https://github.com/laurent22/joplin/releases/download/v1.2.6/JoplinPortable.exe'>Portable version</a><br><br>The [portable application](https://en.wikipedia.org/wiki/Portable_application) allows installing the software on a portable device such as a USB key. Simply copy the file JoplinPortable.exe in any directory on that USB key ; the application will then create a directory called "JoplinProfile" next to the executable file.
|
||||
macOS | <a href='https://github.com/laurent22/joplin/releases/download/v1.2.6/Joplin-1.2.6.dmg'><img alt='Get it on macOS' width="134px" src='https://joplinapp.org/images/BadgeMacOS.png'/></a> | You can also use Homebrew (unsupported): `brew cask install joplin`
|
||||
Linux | <a href='https://github.com/laurent22/joplin/releases/download/v1.2.6/Joplin-1.2.6.AppImage'><img alt='Get it on Linux' width="134px" src='https://joplinapp.org/images/BadgeLinux.png'/></a> | An Arch Linux package (unsupported) [is also available](#terminal-application).<br><br>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:<br><br> `wget -O - https://raw.githubusercontent.com/laurent22/joplin/dev/Joplin_install_and_update.sh \| bash`
|
||||
Windows (32 and 64-bit) | <a href='https://github.com/laurent22/joplin/releases/download/v1.3.18/Joplin-Setup-1.3.18.exe'><img alt='Get it on Windows' width="134px" src='https://joplinapp.org/images/BadgeWindows.png'/></a> | Or get the <a href='https://github.com/laurent22/joplin/releases/download/v1.3.18/JoplinPortable.exe'>Portable version</a><br><br>The [portable application](https://en.wikipedia.org/wiki/Portable_application) allows installing the software on a portable device such as a USB key. Simply copy the file JoplinPortable.exe in any directory on that USB key ; the application will then create a directory called "JoplinProfile" next to the executable file.
|
||||
macOS | <a href='https://github.com/laurent22/joplin/releases/download/v1.3.18/Joplin-1.3.18.dmg'><img alt='Get it on macOS' width="134px" src='https://joplinapp.org/images/BadgeMacOS.png'/></a> | You can also use Homebrew (unsupported): `brew cask install joplin`
|
||||
Linux | <a href='https://github.com/laurent22/joplin/releases/download/v1.3.18/Joplin-1.3.18.AppImage'><img alt='Get it on Linux' width="134px" src='https://joplinapp.org/images/BadgeLinux.png'/></a> | An Arch Linux package (unsupported) [is also available](#terminal-application).<br><br>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:<br><br> `wget -O - https://raw.githubusercontent.com/laurent22/joplin/dev/Joplin_install_and_update.sh \| bash`
|
||||
|
||||
## Mobile applications
|
||||
|
||||
|
@ -67,21 +67,25 @@
|
||||
<section class="tsd-panel tsd-comment">
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>This class allows executing or registering new Joplin commands. Commands can be executed or associated with
|
||||
<a href="joplinviewstoolbarbuttons.html">toolbar buttons</a> or <a href="joplinviewsmenuitems.html">menu items</a>.</p>
|
||||
<p>This class allows executing or registering new Joplin commands. Commands
|
||||
can be executed or associated with
|
||||
<a href="joplinviewstoolbarbuttons.html">toolbar buttons</a> or
|
||||
<a href="joplinviewsmenuitems.html">menu items</a>.</p>
|
||||
</div>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/register_command">View the demo plugin</a></p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/register_command">View the demo plugin</a></p>
|
||||
<a href="#executing-joplin39s-internal-commands" id="executing-joplin39s-internal-commands" style="color: inherit; text-decoration: none;">
|
||||
<h2>Executing Joplin's internal commands</h2>
|
||||
</a>
|
||||
<p>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:</p>
|
||||
<p>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:</p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/laurent22/joplin/tree/dev/ElectronClient/gui/MainScreen/commands">Main screen commands</a></li>
|
||||
<li><a href="https://github.com/laurent22/joplin/tree/dev/ElectronClient/commands">Global commands</a></li>
|
||||
<li><a href="https://github.com/laurent22/joplin/tree/dev/ElectronClient/gui/NoteEditor/commands/editorCommandDeclarations.ts">Editor commands</a></li>
|
||||
<li><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-desktop/gui/MainScreen/commands">Main screen commands</a></li>
|
||||
<li><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-desktop/commands">Global commands</a></li>
|
||||
<li><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-desktop/gui/NoteEditor/commands/editorCommandDeclarations.ts">Editor commands</a></li>
|
||||
</ul>
|
||||
<p>To view what arguments are supported, you can open any of these files and look at the <code>execute()</code> command.</p>
|
||||
<p>To view what arguments are supported, you can open any of these files
|
||||
and look at the <code>execute()</code> command.</p>
|
||||
</div>
|
||||
</section>
|
||||
<!--
|
||||
@ -124,9 +128,14 @@
|
||||
</aside>
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p><span class="platform-desktop">desktop</span> Executes the given command.
|
||||
The <code>props</code> are the arguments passed to the command, and they vary based on the command</p>
|
||||
<p><span class="platform-desktop">desktop</span> Executes the given
|
||||
command.</p>
|
||||
</div>
|
||||
<p>The command can take any number of arguments, and the supported
|
||||
arguments will vary based on the command. For custom commands, this
|
||||
is the <code>args</code> passed to the <code>execute()</code> function. For built-in
|
||||
commands, you can find the supported arguments by checking the links
|
||||
above.</p>
|
||||
<pre><code class="language-typescript"><span class="hljs-comment">// Create a new note in the current notebook:</span>
|
||||
<span class="hljs-keyword">await</span> joplin.commands.execute(<span class="hljs-string">'newNote'</span>);
|
||||
|
||||
|
@ -72,7 +72,7 @@
|
||||
or to update them or delete them.</p>
|
||||
</div>
|
||||
<p>This is also what you would use to search notes, via the <code>search</code> endpoint.</p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/simple">View the demo plugin</a></p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/simple">View the demo plugin</a></p>
|
||||
<p>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:</p>
|
||||
<ul>
|
||||
|
@ -69,7 +69,7 @@
|
||||
<div class="lead">
|
||||
<p>Provides a way to create modules to import external data into Joplin or to export notes into any arbitrary format.</p>
|
||||
</div>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/json_export">View the demo plugin</a></p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/json_export">View the demo plugin</a></p>
|
||||
<p>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.</p>
|
||||
<p>See the documentation of the <a href="../interfaces/exportmodule.html">ExportModule</a> and <a href="../interfaces/importmodule.html">ImportModule</a> for more information.</p>
|
||||
|
@ -155,7 +155,7 @@
|
||||
</div>
|
||||
<p>Note that registering a content script in itself will do nothing - it will only be loaded in specific cases by the relevant app modules
|
||||
(eg. the Markdown renderer or the code editor). So it is not a way to inject and run arbitrary code in the app, which for safety and performance reasons is not supported.</p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/content_script">View the demo plugin</a></p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/content_script">View the demo plugin</a></p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
|
@ -71,7 +71,7 @@
|
||||
</div>
|
||||
<p>Settings are essentially key/value pairs.</p>
|
||||
<p>Note: Currently this API does <strong>not</strong> provide access to Joplin's built-in settings. This is by design as plugins that modify user settings could give unexpected results</p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/settings">View the demo plugin</a></p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/settings">View the demo plugin</a></p>
|
||||
</div>
|
||||
</section>
|
||||
<!--
|
||||
@ -124,7 +124,7 @@
|
||||
<p>Gets a global setting value, including app-specific settings and those set by other plugins.</p>
|
||||
</div>
|
||||
<p>The list of available settings is not documented yet, but can be found by looking at the source code:</p>
|
||||
<p><a href="https://github.com/laurent22/joplin/blob/3539a452a359162c461d2849829d2d42973eab50/ReactNativeClient/lib/models/Setting.ts#L142">https://github.com/laurent22/joplin/blob/3539a452a359162c461d2849829d2d42973eab50/ReactNativeClient/lib/models/Setting.ts#L142</a></p>
|
||||
<p><a href="https://github.com/laurent22/joplin/blob/3539a452a359162c461d2849829d2d42973eab50/packages/app-mobile/lib/models/Setting.ts#L142">https://github.com/laurent22/joplin/blob/3539a452a359162c461d2849829d2d42973eab50/packages/app-mobile/lib/models/Setting.ts#L142</a></p>
|
||||
</div>
|
||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||
<ul class="tsd-parameters">
|
||||
|
@ -71,7 +71,7 @@
|
||||
Dialogs are hidden by default and you need to call <code>open()</code> to open them. Once the user clicks on a button, the <code>open</code> 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.</p>
|
||||
</div>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/dialog">View the demo plugin</a></p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/dialog">View the demo plugin</a></p>
|
||||
</div>
|
||||
</section>
|
||||
<!--
|
||||
|
@ -69,7 +69,7 @@
|
||||
<div class="lead">
|
||||
<p>Allows creating and managing menu items.</p>
|
||||
</div>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/register_command">View the demo plugin</a></p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/register_command">View the demo plugin</a></p>
|
||||
</div>
|
||||
</section>
|
||||
<!--
|
||||
|
@ -69,7 +69,7 @@
|
||||
<div class="lead">
|
||||
<p>Allows creating menus.</p>
|
||||
</div>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/menu">View the demo plugin</a></p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/menu">View the demo plugin</a></p>
|
||||
</div>
|
||||
</section>
|
||||
<!--
|
||||
|
@ -70,7 +70,7 @@
|
||||
<p>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.</p>
|
||||
</div>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/toc">View the demo plugin</a></p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/toc">View the demo plugin</a></p>
|
||||
</div>
|
||||
</section>
|
||||
<!--
|
||||
|
@ -69,7 +69,7 @@
|
||||
<div class="lead">
|
||||
<p>Allows creating and managing toolbar buttons.</p>
|
||||
</div>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/register_command">View the demo plugin</a></p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/register_command">View the demo plugin</a></p>
|
||||
</div>
|
||||
</section>
|
||||
<!--
|
||||
|
@ -70,7 +70,7 @@
|
||||
<p>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.</p>
|
||||
</div>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins">View the demo plugin</a></p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins">View the demo plugin</a></p>
|
||||
</div>
|
||||
</section>
|
||||
<!--
|
||||
|
@ -112,9 +112,9 @@
|
||||
<ul>
|
||||
<li><p>The <code>context</code> argument is currently unused but could be used later on to provide access to your own plugin so that the content script and plugin can communicate.</p>
|
||||
</li>
|
||||
<li><p>The <strong>required</strong> <code>plugin</code> key is the actual Markdown-It plugin - check the <a href="https://github.com/markdown-it/markdown-it">official doc</a> for more information. The <code>options</code> parameter is of type <a href="https://github.com/laurent22/joplin/blob/dev/ReactNativeClient/lib/joplin-renderer/MdToHtml.ts">RuleOptions</a>, which contains a number of options, mostly useful for Joplin's internal code.</p>
|
||||
<li><p>The <strong>required</strong> <code>plugin</code> key is the actual Markdown-It plugin - check the <a href="https://github.com/markdown-it/markdown-it">official doc</a> for more information. The <code>options</code> parameter is of type <a href="https://github.com/laurent22/joplin/blob/dev/packages/app-mobile/lib/joplin-renderer/MdToHtml.ts">RuleOptions</a>, which contains a number of options, mostly useful for Joplin's internal code.</p>
|
||||
</li>
|
||||
<li><p>Using the <strong>optional</strong> <code>assets</code> key you may specify assets such as JS or CSS that should be loaded in the rendered HTML document. Check for example the Joplin <a href="https://github.com/laurent22/joplin/blob/dev/ReactNativeClient/lib/joplin-renderer/MdToHtml/rules/mermaid.ts">Mermaid plugin</a> to see how the data should be structured.</p>
|
||||
<li><p>Using the <strong>optional</strong> <code>assets</code> key you may specify assets such as JS or CSS that should be loaded in the rendered HTML document. Check for example the Joplin <a href="https://github.com/laurent22/joplin/blob/dev/packages/app-mobile/lib/joplin-renderer/MdToHtml/rules/mermaid.ts">Mermaid plugin</a> to see how the data should be structured.</p>
|
||||
</li>
|
||||
</ul>
|
||||
<p>To include a regular Markdown-It plugin, that doesn't make use of any Joplin-specific features, you would simply create a file such as this:</p>
|
||||
|
@ -142,7 +142,7 @@
|
||||
<td>"oneNoteSelected && !inConflictFolder"</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<p>Currently the supported context variables aren't documented, but you can <a href="https://github.com/laurent22/joplin/blob/dev/ReactNativeClient/lib/services/commands/stateToWhenClauseContext.ts">find the list here</a>.</p>
|
||||
<p>Currently the supported context variables aren't documented, but you can <a href="https://github.com/laurent22/joplin/blob/dev/packages/app-mobile/lib/services/commands/stateToWhenClauseContext.ts">find the list here</a>.</p>
|
||||
<p>Note: Commands are enabled by default unless you use this property.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
@ -67,7 +67,7 @@
|
||||
<section class="tsd-panel tsd-comment">
|
||||
<div class="tsd-comment tsd-typography">
|
||||
<div class="lead">
|
||||
<p>Used to implement a module to export data from Joplin. <a href="https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/json_export">View the demo plugin</a> for an example.</p>
|
||||
<p>Used to implement a module to export data from Joplin. <a href="https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/json_export">View the demo plugin</a> for an example.</p>
|
||||
</div>
|
||||
<p>In general, all the event handlers you'll need to implement take a <code>context</code> 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.</p>
|
||||
<p>To get a better sense of what it will contain it can be useful to print it using <code>console.info(context)</code>.</p>
|
||||
|
@ -663,7 +663,7 @@ document.addEventListener('click', event => {
|
||||
// ...
|
||||
</code></pre>
|
||||
<p>And that's it! If you run this code you should now have a fully functional TOC. The full source code is available there:</p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/toc/">https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/toc/</a></p>
|
||||
<p><a href="https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/toc/">https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/toc/</a></p>
|
||||
<p>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 <a href="https://joplinapp.org/api/references/plugin_api/classes/joplin.html">plugin API</a> for further information or head to the <a href="https://discourse.joplinapp.org/c/development/6">development forum</a> for support.</p>
|
||||
|
||||
<div class="bottom-links">
|
||||
|
@ -421,7 +421,7 @@ set "PATH=C:\Program Files\nodejs;%PATH%"
|
||||
<p>So everything should be done from a Windows Command prompt or Windows PowerShell running as Administrator. All build and start commands are designed to work cross-platform, including on Windows.</p>
|
||||
<h1>Mobile application<a name="mobile-application" href="#mobile-application" class="heading-anchor">🔗</a></h1>
|
||||
<h2>iOS<a name="ios" href="#ios" class="heading-anchor">🔗</a></h2>
|
||||
<p>If there is an error <code>/joplin/ReactNativeClient/ios/Pods/Target Support Files/Pods-Joplin/Pods-Joplin.debug.xcconfig: unable to open file (in target "Joplin" in project "Joplin") (in target 'Joplin' from project 'Joplin')</code> run the following commands:</p>
|
||||
<p>If there is an error <code>/joplin/packages/app-mobile/ios/Pods/Target Support Files/Pods-Joplin/Pods-Joplin.debug.xcconfig: unable to open file (in target "Joplin" in project "Joplin") (in target 'Joplin' from project 'Joplin')</code> run the following commands:</p>
|
||||
<pre><code>cd ios
|
||||
pod deintegrate
|
||||
pod install
|
||||
|
@ -392,6 +392,424 @@ https://github.com/laurent22/joplin/blob/dev/readme/changelog.md
|
||||
|
||||
<div class="main">
|
||||
<h1>Joplin changelog<a name="joplin-changelog" href="#joplin-changelog" class="heading-anchor">🔗</a></h1>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.3.18">v1.3.18</a> - 2020-11-06T12:07:02Z<a name="v1-3-18-https-github-com-laurent22-joplin-releases-tag-v1-3-18-2020-11-06t12-07-02z" href="#v1-3-18-https-github-com-laurent22-joplin-releases-tag-v1-3-18-2020-11-06t12-07-02z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>Regression: Random crash when syncing due to undefined tags (<a href="https://github.com/laurent22/joplin/issues/4051">#4051</a>)</li>
|
||||
<li>Fixed: Keymap editor crash when an invalid command is used (<a href="https://github.com/laurent22/joplin/issues/4049">#4049</a>)</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>New: Add support for application plugins (<a href="https://github.com/laurent22/joplin/issues/3257">#3257</a>)</li>
|
||||
<li>New: Added Thunderbird count for desktop client (<a href="https://github.com/laurent22/joplin/issues/3880">#3880</a> by <a href="https://github.com/Technik-J">@Technik-J</a>)</li>
|
||||
<li>New: Added support for Menu API for plugins</li>
|
||||
<li>New: Added support for plugins packaged as JS bundles</li>
|
||||
<li>New: Added <code>openProfileDirectory</code> command and menu item</li>
|
||||
<li>New: Api: Added service to access resource external editing</li>
|
||||
<li>New: Plugins: Add the openNote, openFolder and openTag commands</li>
|
||||
<li>Security: Remove "link" and "meta" tags from notes to prevent XSS (Discovered by <a href="https://twitter.com/fhlipZero">Phil Holbrook</a>)</li>
|
||||
<li>Improved: Make “update is available” dialog box easier to use (<a href="https://github.com/laurent22/joplin/issues/3877">#3877</a> by <a href="https://github.com/roryokane">@roryokane</a>)</li>
|
||||
<li>Improved: Sort tags in a case-insensitive way</li>
|
||||
<li>Improved: Display more info while an ENEX file is being imported</li>
|
||||
<li>Improved: Made toolbar buttons bigger and swap order of bullet and number lists</li>
|
||||
<li>Improved: Api: Allow preserving timestamps when updating a note</li>
|
||||
<li>Improved: Added support for a custom S3 URL (<a href="https://github.com/laurent22/joplin/issues/3921">#3921</a>) (<a href="https://github.com/laurent22/joplin/issues/3691">#3691</a> by <a href="https://github.com/aaron">@aaron</a>)</li>
|
||||
<li>Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode (<a href="https://github.com/laurent22/joplin/issues/3897">#3897</a> by Caleb John)</li>
|
||||
<li>Improved: Simplified and improve command service, and added command palette</li>
|
||||
<li>Improved: Tray: Exit -> Quit (<a href="https://github.com/laurent22/joplin/issues/3945">#3945</a> by Helmut K. C. Tessarek)</li>
|
||||
<li>Improved: Import <code><strike></code>, <code><s></code> tags (strikethrough) from Evernote (<a href="https://github.com/laurent22/joplin/issues/3936">#3936</a> by Ian Slinger)</li>
|
||||
<li>Improved: Make sidebar item font weight normal (not bold)</li>
|
||||
<li>Improved: Plugin API - added support for settings.globalValue method</li>
|
||||
<li>Improved: Remove Hide Joplin menu item on Linux and Windows</li>
|
||||
<li>Improved: Removed OneDrive Dev sync target which was not really useful</li>
|
||||
<li>Improved: Allow setting note geolocation attributes via API (<a href="https://github.com/laurent22/joplin/issues/3884">#3884</a>)</li>
|
||||
<li>Improved: Disabled emoji highlighting in editor when emoji plugin is disabled (<a href="https://github.com/laurent22/joplin/issues/3852">#3852</a> by Rahil Sarvaiya)</li>
|
||||
<li>Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting (<a href="https://github.com/laurent22/joplin/issues/3777">#3777</a> by <a href="https://github.com/shawnaxsom">@shawnaxsom</a>)</li>
|
||||
<li>Improved: Make sure all commands appear in keymap editor</li>
|
||||
<li>Fixed: Add history backward and forward commands to keymap and menus (<a href="https://github.com/laurent22/joplin/issues/4010">#4010</a>)</li>
|
||||
<li>Fixed: Fixed handling of Option key for shortcuts in macOS</li>
|
||||
<li>Fixed: Fix slow Katex rendering when there are many global definitions (<a href="https://github.com/laurent22/joplin/issues/3993">#3993</a>)</li>
|
||||
<li>Fixed: Fix syntax of imported resources when importing ENEX as HTML</li>
|
||||
<li>Fixed: Fixed OneDrive authentication</li>
|
||||
<li>Fixed: Fixed sync issue when importing ENEX files that contain new line characters in the source URL attribute (<a href="https://github.com/laurent22/joplin/issues/3955">#3955</a>)</li>
|
||||
<li>Fixed: Handle gzipped CSS files when importing from clipper (<a href="https://github.com/laurent22/joplin/issues/3986">#3986</a>)</li>
|
||||
<li>Fixed: Update highlight.js to fix freeze for certain code blocks (<a href="https://github.com/laurent22/joplin/issues/3992">#3992</a>)</li>
|
||||
<li>Fixed: Fix search filters when language is in Korean or with accents (<a href="https://github.com/laurent22/joplin/issues/3947">#3947</a> by Naveen M V)</li>
|
||||
<li>Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources (<a href="https://github.com/laurent22/joplin/issues/3958">#3958</a>)</li>
|
||||
<li>Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working</li>
|
||||
<li>Fixed: Fixed sidebar performance issue when there are many notebooks or tags (<a href="https://github.com/laurent22/joplin/issues/3893">#3893</a>)</li>
|
||||
<li>Fixed: Allows toggling external editing off and on again (<a href="https://github.com/laurent22/joplin/issues/3886">#3886</a>)</li>
|
||||
<li>Fixed: Fixed toggleNoteList and toggleSidebar commands</li>
|
||||
<li>Fixed: Fixed Toggle Editor button tooltip and icon</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.3.17">v1.3.17</a> - 2020-11-06T11:35:15Z<a name="v1-3-17-https-github-com-laurent22-joplin-releases-tag-v1-3-17-2020-11-06t11-35-15z" href="#v1-3-17-https-github-com-laurent22-joplin-releases-tag-v1-3-17-2020-11-06t11-35-15z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>Regression: Random crash when syncing due to undefined tags (<a href="https://github.com/laurent22/joplin/issues/4051">#4051</a>)</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>New: Add support for application plugins (<a href="https://github.com/laurent22/joplin/issues/3257">#3257</a>)</li>
|
||||
<li>New: Added Thunderbird count for desktop client (<a href="https://github.com/laurent22/joplin/issues/3880">#3880</a> by <a href="https://github.com/Technik-J">@Technik-J</a>)</li>
|
||||
<li>New: Added support for Menu API for plugins</li>
|
||||
<li>New: Added support for plugins packaged as JS bundles</li>
|
||||
<li>New: Added <code>openProfileDirectory</code> command and menu item</li>
|
||||
<li>New: Api: Added service to access resource external editing</li>
|
||||
<li>New: Plugins: Add the openNote, openFolder and openTag commands</li>
|
||||
<li>Security: Remove "link" and "meta" tags from notes to prevent XSS (Discovered by <a href="https://twitter.com/fhlipZero">Phil Holbrook</a>)</li>
|
||||
<li>Improved: Make “update is available” dialog box easier to use (<a href="https://github.com/laurent22/joplin/issues/3877">#3877</a> by <a href="https://github.com/roryokane">@roryokane</a>)</li>
|
||||
<li>Improved: Sort tags in a case-insensitive way</li>
|
||||
<li>Improved: Display more info while an ENEX file is being imported</li>
|
||||
<li>Improved: Made toolbar buttons bigger and swap order of bullet and number lists</li>
|
||||
<li>Improved: Api: Allow preserving timestamps when updating a note</li>
|
||||
<li>Improved: Added support for a custom S3 URL (<a href="https://github.com/laurent22/joplin/issues/3921">#3921</a>) (<a href="https://github.com/laurent22/joplin/issues/3691">#3691</a> by <a href="https://github.com/aaron">@aaron</a>)</li>
|
||||
<li>Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode (<a href="https://github.com/laurent22/joplin/issues/3897">#3897</a> by Caleb John)</li>
|
||||
<li>Improved: Simplified and improve command service, and added command palette</li>
|
||||
<li>Improved: Tray: Exit -> Quit (<a href="https://github.com/laurent22/joplin/issues/3945">#3945</a> by Helmut K. C. Tessarek)</li>
|
||||
<li>Improved: Import <code><strike></code>, <code><s></code> tags (strikethrough) from Evernote (<a href="https://github.com/laurent22/joplin/issues/3936">#3936</a> by Ian Slinger)</li>
|
||||
<li>Improved: Make sidebar item font weight normal (not bold)</li>
|
||||
<li>Improved: Plugin API - added support for settings.globalValue method</li>
|
||||
<li>Improved: Remove Hide Joplin menu item on Linux and Windows</li>
|
||||
<li>Improved: Removed OneDrive Dev sync target which was not really useful</li>
|
||||
<li>Improved: Allow setting note geolocation attributes via API (<a href="https://github.com/laurent22/joplin/issues/3884">#3884</a>)</li>
|
||||
<li>Improved: Disabled emoji highlighting in editor when emoji plugin is disabled (<a href="https://github.com/laurent22/joplin/issues/3852">#3852</a> by Rahil Sarvaiya)</li>
|
||||
<li>Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting (<a href="https://github.com/laurent22/joplin/issues/3777">#3777</a> by <a href="https://github.com/shawnaxsom">@shawnaxsom</a>)</li>
|
||||
<li>Improved: Make sure all commands appear in keymap editor</li>
|
||||
<li>Fixed: Add history backward and forward commands to keymap and menus (<a href="https://github.com/laurent22/joplin/issues/4010">#4010</a>)</li>
|
||||
<li>Fixed: Fixed handling of Option key for shortcuts in macOS</li>
|
||||
<li>Fixed: Fix slow Katex rendering when there are many global definitions (<a href="https://github.com/laurent22/joplin/issues/3993">#3993</a>)</li>
|
||||
<li>Fixed: Fix syntax of imported resources when importing ENEX as HTML</li>
|
||||
<li>Fixed: Fixed OneDrive authentication</li>
|
||||
<li>Fixed: Fixed sync issue when importing ENEX files that contain new line characters in the source URL attribute (<a href="https://github.com/laurent22/joplin/issues/3955">#3955</a>)</li>
|
||||
<li>Fixed: Handle gzipped CSS files when importing from clipper (<a href="https://github.com/laurent22/joplin/issues/3986">#3986</a>)</li>
|
||||
<li>Fixed: Update highlight.js to fix freeze for certain code blocks (<a href="https://github.com/laurent22/joplin/issues/3992">#3992</a>)</li>
|
||||
<li>Fixed: Fix search filters when language is in Korean or with accents (<a href="https://github.com/laurent22/joplin/issues/3947">#3947</a> by Naveen M V)</li>
|
||||
<li>Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources (<a href="https://github.com/laurent22/joplin/issues/3958">#3958</a>)</li>
|
||||
<li>Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working</li>
|
||||
<li>Fixed: Fixed sidebar performance issue when there are many notebooks or tags (<a href="https://github.com/laurent22/joplin/issues/3893">#3893</a>)</li>
|
||||
<li>Fixed: Allows toggling external editing off and on again (<a href="https://github.com/laurent22/joplin/issues/3886">#3886</a>)</li>
|
||||
<li>Fixed: Fixed toggleNoteList and toggleSidebar commands</li>
|
||||
<li>Fixed: Fixed Toggle Editor button tooltip and icon</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.4.6">v1.4.6</a> - 2020-11-05T22:44:12Z<a name="v1-4-6-https-github-com-laurent22-joplin-releases-tag-v1-4-6-2020-11-05t22-44-12z" href="#v1-4-6-https-github-com-laurent22-joplin-releases-tag-v1-4-6-2020-11-05t22-44-12z" class="heading-anchor">🔗</a></h2>
|
||||
<p>IMPORTANT: If you use the Clipper API, please note that there are a few breaking changes in this version. See this link for more information: <a href="https://github.com/laurent22/joplin/pull/3983">https://github.com/laurent22/joplin/pull/3983</a></p>
|
||||
<ul>
|
||||
<li>New: API: Adds ability to paginate data (<a href="https://github.com/laurent22/joplin/issues/3983">#3983</a>)</li>
|
||||
<li>New: Adds spell checker support for Rich Text editor (<a href="https://github.com/laurent22/joplin/issues/3974">#3974</a>)</li>
|
||||
<li>Improved: Change Markdown rendering to align with CommonMark spec (<a href="https://github.com/laurent22/joplin/issues/3839">#3839</a>)</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.3.15">v1.3.15</a> - 2020-11-04T12:22:50Z<a name="v1-3-15-https-github-com-laurent22-joplin-releases-tag-v1-3-15-2020-11-04t12-22-50z" href="#v1-3-15-https-github-com-laurent22-joplin-releases-tag-v1-3-15-2020-11-04t12-22-50z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>New: Add support for application plugins (<a href="https://github.com/laurent22/joplin/issues/3257">#3257</a>)</li>
|
||||
<li>New: Added Thunderbird count for desktop client (<a href="https://github.com/laurent22/joplin/issues/3880">#3880</a> by <a href="https://github.com/Technik-J">@Technik-J</a>)</li>
|
||||
<li>New: Added support for Menu API for plugins</li>
|
||||
<li>New: Added support for plugins packaged as JS bundles</li>
|
||||
<li>New: Added <code>openProfileDirectory</code> command and menu item</li>
|
||||
<li>New: Api: Added service to access resource external editing</li>
|
||||
<li>New: Plugins: Add the openNote, openFolder and openTag commands</li>
|
||||
<li>Security: Remove "link" and "meta" tags from notes to prevent XSS (Discovered by <a href="https://twitter.com/fhlipZero">Phil Holbrook</a>)</li>
|
||||
<li>Improved: Make “update is available” dialog box easier to use (<a href="https://github.com/laurent22/joplin/issues/3877">#3877</a> by <a href="https://github.com/roryokane">@roryokane</a>)</li>
|
||||
<li>Improved: Sort tags in a case-insensitive way</li>
|
||||
<li>Improved: Display more info while an ENEX file is being imported</li>
|
||||
<li>Improved: Made toolbar buttons bigger and swap order of bullet and number lists</li>
|
||||
<li>Improved: Api: Allow preserving timestamps when updating a note</li>
|
||||
<li>Improved: Added support for a custom S3 URL (<a href="https://github.com/laurent22/joplin/issues/3921">#3921</a>) (<a href="https://github.com/laurent22/joplin/issues/3691">#3691</a> by <a href="https://github.com/aaron">@aaron</a>)</li>
|
||||
<li>Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode (<a href="https://github.com/laurent22/joplin/issues/3897">#3897</a> by Caleb John)</li>
|
||||
<li>Improved: Simplified and improve command service, and added command palette</li>
|
||||
<li>Improved: Tray: Exit -> Quit (<a href="https://github.com/laurent22/joplin/issues/3945">#3945</a> by Helmut K. C. Tessarek)</li>
|
||||
<li>Improved: Import <code><strike></code>, <code><s></code> tags (strikethrough) from Evernote (<a href="https://github.com/laurent22/joplin/issues/3936">#3936</a> by Ian Slinger)</li>
|
||||
<li>Improved: Make sidebar item font weight normal (not bold)</li>
|
||||
<li>Improved: Plugin API - added support for settings.globalValue method</li>
|
||||
<li>Improved: Remove Hide Joplin menu item on Linux and Windows</li>
|
||||
<li>Improved: Removed OneDrive Dev sync target which was not really useful</li>
|
||||
<li>Improved: Allow setting note geolocation attributes via API (<a href="https://github.com/laurent22/joplin/issues/3884">#3884</a>)</li>
|
||||
<li>Improved: Disabled emoji highlighting in editor when emoji plugin is disabled (<a href="https://github.com/laurent22/joplin/issues/3852">#3852</a> by Rahil Sarvaiya)</li>
|
||||
<li>Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting (<a href="https://github.com/laurent22/joplin/issues/3777">#3777</a> by <a href="https://github.com/shawnaxsom">@shawnaxsom</a>)</li>
|
||||
<li>Improved: Make sure all commands appear in keymap editor</li>
|
||||
<li>Fixed: Add history backward and forward commands to keymap and menus (<a href="https://github.com/laurent22/joplin/issues/4010">#4010</a>)</li>
|
||||
<li>Fixed: Fixed handling of Option key for shortcuts in macOS</li>
|
||||
<li>Fixed: Fix slow Katex rendering when there are many global definitions (<a href="https://github.com/laurent22/joplin/issues/3993">#3993</a>)</li>
|
||||
<li>Fixed: Fix syntax of imported resources when importing ENEX as HTML</li>
|
||||
<li>Fixed: Fixed OneDrive authentication</li>
|
||||
<li>Fixed: Fixed sync issue when importing ENEX files that contain new line characters in the source URL attribute (<a href="https://github.com/laurent22/joplin/issues/3955">#3955</a>)</li>
|
||||
<li>Fixed: Handle gzipped CSS files when importing from clipper (<a href="https://github.com/laurent22/joplin/issues/3986">#3986</a>)</li>
|
||||
<li>Fixed: Update highlight.js to fix freeze for certain code blocks (<a href="https://github.com/laurent22/joplin/issues/3992">#3992</a>)</li>
|
||||
<li>Fixed: Fix search filters when language is in Korean or with accents (<a href="https://github.com/laurent22/joplin/issues/3947">#3947</a> by Naveen M V)</li>
|
||||
<li>Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources (<a href="https://github.com/laurent22/joplin/issues/3958">#3958</a>)</li>
|
||||
<li>Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working</li>
|
||||
<li>Fixed: Fixed sidebar performance issue when there are many notebooks or tags (<a href="https://github.com/laurent22/joplin/issues/3893">#3893</a>)</li>
|
||||
<li>Fixed: Allows toggling external editing off and on again (<a href="https://github.com/laurent22/joplin/issues/3886">#3886</a>)</li>
|
||||
<li>Fixed: Fixed toggleNoteList and toggleSidebar commands</li>
|
||||
<li>Fixed: Fixed Toggle Editor button tooltip and icon</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.3.11">v1.3.11</a> - 2020-10-31T13:22:20Z<a name="v1-3-11-https-github-com-laurent22-joplin-releases-tag-v1-3-11-2020-10-31t13-22-20z" href="#v1-3-11-https-github-com-laurent22-joplin-releases-tag-v1-3-11-2020-10-31t13-22-20z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>Improved: Make sure all commands appear in keymap editor</li>
|
||||
<li>Fixed: Add history backward and forward commands to keymap and menus (<a href="https://github.com/laurent22/joplin/issues/4010">#4010</a>)</li>
|
||||
<li>Fixed: Fixed handling of Option key for shortcuts in macOS</li>
|
||||
<li>Security: Remove "link" and "meta" tags from notes to prevent XSS</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>New: Add support for application plugins (<a href="https://github.com/laurent22/joplin/issues/3257">#3257</a>)</li>
|
||||
<li>New: Added Thunderbird count for desktop client (<a href="https://github.com/laurent22/joplin/issues/3880">#3880</a> by <a href="https://github.com/Technik-J">@Technik-J</a>)</li>
|
||||
<li>New: Added support for Menu API for plugins</li>
|
||||
<li>New: Added support for plugins packaged as JS bundles</li>
|
||||
<li>New: Added <code>openProfileDirectory</code> command and menu item</li>
|
||||
<li>New: Api: Added service to access resource external editing</li>
|
||||
<li>New: Plugins: Add the openNote, openFolder and openTag commands</li>
|
||||
<li>Improved: Make “update is available” dialog box easier to use (<a href="https://github.com/laurent22/joplin/issues/3877">#3877</a> by <a href="https://github.com/roryokane">@roryokane</a>)</li>
|
||||
<li>Improved: Sort tags in a case-insensitive way</li>
|
||||
<li>Improved: Display more info while an ENEX file is being imported</li>
|
||||
<li>Improved: Made toolbar buttons bigger and swap order of bullet and number lists</li>
|
||||
<li>Improved: Api: Allow preserving timestamps when updating a note</li>
|
||||
<li>Improved: Added support for a custom S3 URL (<a href="https://github.com/laurent22/joplin/issues/3921">#3921</a>) (<a href="https://github.com/laurent22/joplin/issues/3691">#3691</a> by <a href="https://github.com/aaron">@aaron</a>)</li>
|
||||
<li>Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode (<a href="https://github.com/laurent22/joplin/issues/3897">#3897</a> by Caleb John)</li>
|
||||
<li>Improved: Simplified and improve command service, and added command palette</li>
|
||||
<li>Improved: Tray: Exit -> Quit (<a href="https://github.com/laurent22/joplin/issues/3945">#3945</a> by Helmut K. C. Tessarek)</li>
|
||||
<li>Improved: Import <code><strike></code>, <code><s></code> tags (strikethrough) from Evernote (<a href="https://github.com/laurent22/joplin/issues/3936">#3936</a> by Ian Slinger)</li>
|
||||
<li>Improved: Make sidebar item font weight normal (not bold)</li>
|
||||
<li>Improved: Plugin API - added support for settings.globalValue method</li>
|
||||
<li>Improved: Remove Hide Joplin menu item on Linux and Windows</li>
|
||||
<li>Improved: Removed OneDrive Dev sync target which was not really useful</li>
|
||||
<li>Improved: Allow setting note geolocation attributes via API (<a href="https://github.com/laurent22/joplin/issues/3884">#3884</a>)</li>
|
||||
<li>Improved: Disabled emoji highlighting in editor when emoji plugin is disabled (<a href="https://github.com/laurent22/joplin/issues/3852">#3852</a> by Rahil Sarvaiya)</li>
|
||||
<li>Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting (<a href="https://github.com/laurent22/joplin/issues/3777">#3777</a> by <a href="https://github.com/shawnaxsom">@shawnaxsom</a>)</li>
|
||||
<li>Fixed: Fix slow Katex rendering when there are many global definitions (<a href="https://github.com/laurent22/joplin/issues/3993">#3993</a>)</li>
|
||||
<li>Fixed: Fix syntax of imported resources when importing ENEX as HTML</li>
|
||||
<li>Fixed: Fixed OneDrive authentication</li>
|
||||
<li>Fixed: Fixed sync issue when importing ENEX files that contain new line characters in the source URL attribute (<a href="https://github.com/laurent22/joplin/issues/3955">#3955</a>)</li>
|
||||
<li>Fixed: Handle gzipped CSS files when importing from clipper (<a href="https://github.com/laurent22/joplin/issues/3986">#3986</a>)</li>
|
||||
<li>Fixed: Update highlight.js to fix freeze for certain code blocks (<a href="https://github.com/laurent22/joplin/issues/3992">#3992</a>)</li>
|
||||
<li>Fixed: Fix search filters when language is in Korean or with accents (<a href="https://github.com/laurent22/joplin/issues/3947">#3947</a> by Naveen M V)</li>
|
||||
<li>Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources (<a href="https://github.com/laurent22/joplin/issues/3958">#3958</a>)</li>
|
||||
<li>Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working</li>
|
||||
<li>Fixed: Fixed sidebar performance issue when there are many notebooks or tags (<a href="https://github.com/laurent22/joplin/issues/3893">#3893</a>)</li>
|
||||
<li>Fixed: Allows toggling external editing off and on again (<a href="https://github.com/laurent22/joplin/issues/3886">#3886</a>)</li>
|
||||
<li>Fixed: Fixed toggleNoteList and toggleSidebar commands</li>
|
||||
<li>Fixed: Fixed Toggle Editor button toolip and icon</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.3.10">v1.3.10</a> - 2020-10-29T13:27:14Z<a name="v1-3-10-https-github-com-laurent22-joplin-releases-tag-v1-3-10-2020-10-29t13-27-14z" href="#v1-3-10-https-github-com-laurent22-joplin-releases-tag-v1-3-10-2020-10-29t13-27-14z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>New: Api: Added service to access resource external editing</li>
|
||||
<li>New: Plugins: Add the openNote, openFolder and openTag commands</li>
|
||||
<li>Fixed: Regression: Keyboard shortcut would not save in some cases</li>
|
||||
<li>Fixed: Regression: Restore "New sub-notebook" command</li>
|
||||
<li>Fixed: Command Palette click did not work</li>
|
||||
<li>Fixed: Fix slow Katex rendering when there are many global definitions (<a href="https://github.com/laurent22/joplin/issues/3993">#3993</a>)</li>
|
||||
<li>Fixed: Fix syntax of imported resources when importing ENEX as HTML</li>
|
||||
<li>Fixed: Fixed OneDrive authentication</li>
|
||||
<li>Fixed: Fixed sync issue when importing ENEX files that contain new line characters in the source URL attribute (<a href="https://github.com/laurent22/joplin/issues/3955">#3955</a>)</li>
|
||||
<li>Fixed: Handle gzipped CSS files when importing from clipper (<a href="https://github.com/laurent22/joplin/issues/3986">#3986</a>)</li>
|
||||
<li>Fixed: Update highlight.js to fix freeze for certain code blocks (<a href="https://github.com/laurent22/joplin/issues/3992">#3992</a>)</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>New: Add support for application plugins (<a href="https://github.com/laurent22/joplin/issues/3257">#3257</a>)</li>
|
||||
<li>New: Added Thunderbird count for desktop client (<a href="https://github.com/laurent22/joplin/issues/3880">#3880</a> by <a href="https://github.com/Technik-J">@Technik-J</a>)</li>
|
||||
<li>New: Added support for Menu API for plugins</li>
|
||||
<li>New: Added support for plugins packaged as JS bundles</li>
|
||||
<li>New: Added <code>openProfileDirectory</code> command and menu item</li>
|
||||
<li>Improved: Make “update is available” dialog box easier to use (<a href="https://github.com/laurent22/joplin/issues/3877">#3877</a> by <a href="https://github.com/roryokane">@roryokane</a>)</li>
|
||||
<li>Improved: Sort tags in a case-insensitive way</li>
|
||||
<li>Improved: Display more info while an ENEX file is being imported</li>
|
||||
<li>Improved: Made toolbar buttons bigger and swap order of bullet and number lists</li>
|
||||
<li>Improved: Api: Allow preserving timestamps when updating a note</li>
|
||||
<li>Improved: Added support for a custom S3 URL (<a href="https://github.com/laurent22/joplin/issues/3921">#3921</a>) (<a href="https://github.com/laurent22/joplin/issues/3691">#3691</a> by <a href="https://github.com/aaron">@aaron</a>)</li>
|
||||
<li>Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode (<a href="https://github.com/laurent22/joplin/issues/3897">#3897</a> by Caleb John)</li>
|
||||
<li>Improved: Simplified and improve command service, and added command palette</li>
|
||||
<li>Improved: Tray: Exit -> Quit (<a href="https://github.com/laurent22/joplin/issues/3945">#3945</a> by Helmut K. C. Tessarek)</li>
|
||||
<li>Improved: Import <code><strike></code>, <code><s></code> tags (strikethrough) from Evernote (<a href="https://github.com/laurent22/joplin/issues/3936">#3936</a> by Ian Slinger)</li>
|
||||
<li>Improved: Make sidebar item font weight normal (not bold)</li>
|
||||
<li>Improved: Plugin API - added support for settings.globalValue method</li>
|
||||
<li>Improved: Remove Hide Joplin menu item on Linux and Windows</li>
|
||||
<li>Improved: Removed OneDrive Dev sync target which was not really useful</li>
|
||||
<li>Improved: Allow setting note geolocation attributes via API (<a href="https://github.com/laurent22/joplin/issues/3884">#3884</a>)</li>
|
||||
<li>Improved: Disabled emoji highlighting in editor when emoji plugin is disabled (<a href="https://github.com/laurent22/joplin/issues/3852">#3852</a> by Rahil Sarvaiya)</li>
|
||||
<li>Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting (<a href="https://github.com/laurent22/joplin/issues/3777">#3777</a> by <a href="https://github.com/shawnaxsom">@shawnaxsom</a>)</li>
|
||||
<li>Fixed: Fix search filters when language is in Korean or with accents (<a href="https://github.com/laurent22/joplin/issues/3947">#3947</a> by Naveen M V)</li>
|
||||
<li>Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources (<a href="https://github.com/laurent22/joplin/issues/3958">#3958</a>)</li>
|
||||
<li>Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working</li>
|
||||
<li>Fixed: Fixed sidebar performance issue when there are many notebooks or tags (<a href="https://github.com/laurent22/joplin/issues/3893">#3893</a>)</li>
|
||||
<li>Fixed: Allows toggling external editing off and on again (<a href="https://github.com/laurent22/joplin/issues/3886">#3886</a>)</li>
|
||||
<li>Fixed: Fixed toggleNoteList and toggleSidebar commands</li>
|
||||
<li>Fixed: Fixed Toggle Editor button toolip and icon</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.3.9">v1.3.9</a> - 2020-10-23T16:04:26Z<a name="v1-3-9-https-github-com-laurent22-joplin-releases-tag-v1-3-9-2020-10-23t16-04-26z" href="#v1-3-9-https-github-com-laurent22-joplin-releases-tag-v1-3-9-2020-10-23t16-04-26z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>New: Added <code>openProfileDirectory</code> command and menu item</li>
|
||||
<li>Improved: Make “update is available” dialog box easier to use (<a href="https://github.com/laurent22/joplin/issues/3877">#3877</a> by <a href="https://github.com/roryokane">@roryokane</a>)</li>
|
||||
<li>Improved: Sort tags in a case-insensitive way</li>
|
||||
<li>Fixed: Fix invalid tag state issue when importing notes or syncing</li>
|
||||
<li>Fixed: Fix search filters when language is in Korean or with accents (<a href="https://github.com/laurent22/joplin/issues/3947">#3947</a> by Naveen M V)</li>
|
||||
<li>Fixed: Fixed Cut menu item</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>New: Add support for application plugins (<a href="https://github.com/laurent22/joplin/issues/3257">#3257</a>)</li>
|
||||
<li>New: Added Thunderbird count for desktop client (<a href="https://github.com/laurent22/joplin/issues/3880">#3880</a> by <a href="https://github.com/Technik-J">@Technik-J</a>)</li>
|
||||
<li>New: Added support for Menu API for plugins</li>
|
||||
<li>New: Added support for plugins packaged as JS bundles</li>
|
||||
<li>Improved: Display more info while an ENEX file is being imported</li>
|
||||
<li>Improved: Made toolbar buttons bigger and swap order of bullet and number lists</li>
|
||||
<li>Improved: Api: Allow preserving timestamps when updating a note</li>
|
||||
<li>Improved: Added support for a custom S3 URL (<a href="https://github.com/laurent22/joplin/issues/3921">#3921</a>) (<a href="https://github.com/laurent22/joplin/issues/3691">#3691</a> by <a href="https://github.com/aaron">@aaron</a>)</li>
|
||||
<li>Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode (<a href="https://github.com/laurent22/joplin/issues/3897">#3897</a> by Caleb John)</li>
|
||||
<li>Improved: Simplified and improve command service, and added command palette</li>
|
||||
<li>Improved: Tray: Exit -> Quit (<a href="https://github.com/laurent22/joplin/issues/3945">#3945</a> by Helmut K. C. Tessarek)</li>
|
||||
<li>Improved: Import <code><strike></code>, <code><s></code> tags (strikethrough) from Evernote (<a href="https://github.com/laurent22/joplin/issues/3936">#3936</a> by Ian Slinger)</li>
|
||||
<li>Improved: Make sidebar item font weight normal (not bold)</li>
|
||||
<li>Improved: Plugin API - added support for settings.globalValue method</li>
|
||||
<li>Improved: Remove Hide Joplin menu item on Linux and Windows</li>
|
||||
<li>Improved: Removed OneDrive Dev sync target which was not really useful</li>
|
||||
<li>Improved: Allow setting note geolocation attributes via API (<a href="https://github.com/laurent22/joplin/issues/3884">#3884</a>)</li>
|
||||
<li>Improved: Disabled emoji highlighting in editor when emoji plugin is disabled (<a href="https://github.com/laurent22/joplin/issues/3852">#3852</a> by Rahil Sarvaiya)</li>
|
||||
<li>Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting (<a href="https://github.com/laurent22/joplin/issues/3777">#3777</a> by <a href="https://github.com/shawnaxsom">@shawnaxsom</a>)</li>
|
||||
<li>Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources (<a href="https://github.com/laurent22/joplin/issues/3958">#3958</a>)</li>
|
||||
<li>Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working</li>
|
||||
<li>Fixed: Fixed sidebar performance issue when there are many notebooks or tags (<a href="https://github.com/laurent22/joplin/issues/3893">#3893</a>)</li>
|
||||
<li>Fixed: Allows toggling external editing off and on again (<a href="https://github.com/laurent22/joplin/issues/3886">#3886</a>)</li>
|
||||
<li>Fixed: Fixed toggleNoteList and toggleSidebar commands</li>
|
||||
<li>Fixed: Fixed Toggle Editor button toolip and icon</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.3.8">v1.3.8</a> - 2020-10-21T18:46:29Z<a name="v1-3-8-https-github-com-laurent22-joplin-releases-tag-v1-3-8-2020-10-21t18-46-29z" href="#v1-3-8-https-github-com-laurent22-joplin-releases-tag-v1-3-8-2020-10-21t18-46-29z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>New: Plugins: Added support for content scripts</li>
|
||||
<li>Improved: Api: Allow preserving timestamps when updating a note</li>
|
||||
<li>Improved: Display more info while an ENEX file is being imported</li>
|
||||
<li>Improved: Made toolbar buttons bigger and swap order of bullet and number lists</li>
|
||||
<li>Improved: Plugins: Allow custom commands to return a result</li>
|
||||
<li>Fixed: Certain commands no longer worked. (<a href="https://github.com/laurent22/joplin/issues/3962">#3962</a>)</li>
|
||||
<li>Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources (<a href="https://github.com/laurent22/joplin/issues/3958">#3958</a>)</li>
|
||||
<li>Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working</li>
|
||||
<li>Fixed: Regression: Fixed format of copied version info</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>New: Add support for application plugins (<a href="https://github.com/laurent22/joplin/issues/3257">#3257</a>)</li>
|
||||
<li>New: Added Thunderbird count for desktop client (<a href="https://github.com/laurent22/joplin/issues/3880">#3880</a> by <a href="https://github.com/Technik-J">@Technik-J</a>)</li>
|
||||
<li>New: Added support for Menu API for plugins</li>
|
||||
<li>New: Added support for plugins packaged as JS bundles</li>
|
||||
<li>Improved: Added support for a custom S3 URL (<a href="https://github.com/laurent22/joplin/issues/3921">#3921</a>) (<a href="https://github.com/laurent22/joplin/issues/3691">#3691</a> by <a href="https://github.com/aaron">@aaron</a>)</li>
|
||||
<li>Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode (<a href="https://github.com/laurent22/joplin/issues/3897">#3897</a> by Caleb John)</li>
|
||||
<li>Improved: Simplified and improve command service, and added command palette</li>
|
||||
<li>Improved: Tray: Exit -> Quit (<a href="https://github.com/laurent22/joplin/issues/3945">#3945</a> by Helmut K. C. Tessarek)</li>
|
||||
<li>Improved: Import <code><strike></code>, <code><s></code> tags (strikethrough) from Evernote (<a href="https://github.com/laurent22/joplin/issues/3936">#3936</a> by Ian Slinger)</li>
|
||||
<li>Improved: Make sidebar item font weight normal (not bold)</li>
|
||||
<li>Improved: Plugin API - added support for settings.globalValue method</li>
|
||||
<li>Improved: Remove Hide Joplin menu item on Linux and Windows</li>
|
||||
<li>Improved: Removed OneDrive Dev sync target which was not really useful</li>
|
||||
<li>Improved: Allow setting note geolocation attributes via API (<a href="https://github.com/laurent22/joplin/issues/3884">#3884</a>)</li>
|
||||
<li>Improved: Disabled emoji highlighting in editor when emoji plugin is disabled (<a href="https://github.com/laurent22/joplin/issues/3852">#3852</a> by Rahil Sarvaiya)</li>
|
||||
<li>Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting (<a href="https://github.com/laurent22/joplin/issues/3777">#3777</a> by <a href="https://github.com/shawnaxsom">@shawnaxsom</a>)</li>
|
||||
<li>Fixed: Fixed sidebar performance issue when there are many notebooks or tags (<a href="https://github.com/laurent22/joplin/issues/3893">#3893</a>)</li>
|
||||
<li>Fixed: Allows toggling external editing off and on again (<a href="https://github.com/laurent22/joplin/issues/3886">#3886</a>)</li>
|
||||
<li>Fixed: Fixed toggleNoteList and toggleSidebar commands</li>
|
||||
<li>Fixed: Fixed Toggle Editor button toolip and icon</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.3.7">v1.3.7</a> - 2020-10-20T11:35:55Z<a name="v1-3-7-https-github-com-laurent22-joplin-releases-tag-v1-3-7-2020-10-20t11-35-55z" href="#v1-3-7-https-github-com-laurent22-joplin-releases-tag-v1-3-7-2020-10-20t11-35-55z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>Improved: Added support for a custom S3 URL (<a href="https://github.com/laurent22/joplin/issues/3921">#3921</a>) (<a href="https://github.com/laurent22/joplin/issues/3691">#3691</a> by <a href="https://github.com/aaron">@aaron</a>)</li>
|
||||
<li>Improved: Import <code><strike></code>, <code><s></code> tags (strikethrough) from Evernote (<a href="https://github.com/laurent22/joplin/issues/3936">#3936</a> by Ian Slinger)</li>
|
||||
<li>Improved: Simplified and improve command service, and added command palette</li>
|
||||
<li>Improved: Tray: Exit -> Quit (<a href="https://github.com/laurent22/joplin/issues/3945">#3945</a> by Helmut K. C. Tessarek)</li>
|
||||
<li>Fixed: Trying to fix sidebar performance issue when there are many notebooks or tags (<a href="https://github.com/laurent22/joplin/issues/3893">#3893</a>)</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>New: Add support for application plugins (<a href="https://github.com/laurent22/joplin/issues/3257">#3257</a>)</li>
|
||||
<li>New: Added Thunderbird count for desktop client (<a href="https://github.com/laurent22/joplin/issues/3880">#3880</a> by <a href="https://github.com/Technik-J">@Technik-J</a>)</li>
|
||||
<li>New: Added support for Menu API for plugins</li>
|
||||
<li>New: Added support for plugins packaged as JS bundles</li>
|
||||
<li>Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode (<a href="https://github.com/laurent22/joplin/issues/3897">#3897</a> by Caleb John)</li>
|
||||
<li>Improved: Make sidebar item font weight normal (not bold)</li>
|
||||
<li>Improved: Plugin API - added support for settings.globalValue method</li>
|
||||
<li>Improved: Remove Hide Joplin menu item on Linux and Windows</li>
|
||||
<li>Improved: Removed OneDrive Dev sync target which was not really useful</li>
|
||||
<li>Improved: Allow setting note geolocation attributes via API (<a href="https://github.com/laurent22/joplin/issues/3884">#3884</a>)</li>
|
||||
<li>Improved: Disabled emoji highlighting in editor when emoji plugin is disabled (<a href="https://github.com/laurent22/joplin/issues/3852">#3852</a> by Rahil Sarvaiya)</li>
|
||||
<li>Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting (<a href="https://github.com/laurent22/joplin/issues/3777">#3777</a> by <a href="https://github.com/shawnaxsom">@shawnaxsom</a>)</li>
|
||||
<li>Fixed: Allows toggling external editing off and on again (<a href="https://github.com/laurent22/joplin/issues/3886">#3886</a>)</li>
|
||||
<li>Fixed: Fixed toggleNoteList and toggleSidebar commands</li>
|
||||
<li>Fixed: Fixed Toggle Editor button toolip and icon</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.3.5">v1.3.5</a> - 2020-10-17T14:26:35Z<a name="v1-3-5-https-github-com-laurent22-joplin-releases-tag-v1-3-5-2020-10-17t14-26-35z" href="#v1-3-5-https-github-com-laurent22-joplin-releases-tag-v1-3-5-2020-10-17t14-26-35z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>Fixed: Regression: Remove Hide Joplin menu item on Linux too</li>
|
||||
<li>Fixed: Regression: Editor toolbar was disabled when importing note from MD file (<a href="https://github.com/laurent22/joplin/issues/3915">#3915</a>)</li>
|
||||
<li>Fixed: Regression: Header links with special characters were no longer working (<a href="https://github.com/laurent22/joplin/issues/3903">#3903</a>)</li>
|
||||
<li>Fixed: Regression: Importing ENEX as HTML was importing as Markdown (<a href="https://github.com/laurent22/joplin/issues/3923">#3923</a>)</li>
|
||||
<li>Fixed: Regression - Layout Button Sequence menu items were disabled (<a href="https://github.com/laurent22/joplin/issues/3899">#3899</a>)</li>
|
||||
<li>Fixed: Regression: Fix export of pluginAssets when exporting to html/pdf (<a href="https://github.com/laurent22/joplin/issues/3927">#3927</a> by Caleb John)</li>
|
||||
<li>Fixed: Regression: Fixed check for update</li>
|
||||
<li>Fixed: Regression: Fixed move to notebook from context menu</li>
|
||||
<li>Fixed: Regression: Fixed opening links</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>New: Add support for application plugins (<a href="https://github.com/laurent22/joplin/issues/3257">#3257</a>)</li>
|
||||
<li>New: Added Thunderbird count for desktop client (<a href="https://github.com/laurent22/joplin/issues/3880">#3880</a> by <a href="https://github.com/Technik-J">@Technik-J</a>)</li>
|
||||
<li>New: Added support for Menu API for plugins</li>
|
||||
<li>New: Added support for plugins packaged as JS bundles</li>
|
||||
<li>Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode (<a href="https://github.com/laurent22/joplin/issues/3897">#3897</a> by Caleb John)</li>
|
||||
<li>Improved: Make sidebar item font weight normal (not bold)</li>
|
||||
<li>Improved: Plugin API - added support for settings.globalValue method</li>
|
||||
<li>Improved: Remove Hide Joplin menu item on Linux and Windows</li>
|
||||
<li>Improved: Removed OneDrive Dev sync target which was not really useful</li>
|
||||
<li>Improved: Allow setting note geolocation attributes via API (<a href="https://github.com/laurent22/joplin/issues/3884">#3884</a>)</li>
|
||||
<li>Improved: Disabled emoji highlighting in editor when emoji plugin is disabled (<a href="https://github.com/laurent22/joplin/issues/3852">#3852</a> by Rahil Sarvaiya)</li>
|
||||
<li>Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting (<a href="https://github.com/laurent22/joplin/issues/3777">#3777</a> by <a href="https://github.com/shawnaxsom">@shawnaxsom</a>)</li>
|
||||
<li>Fixed: Allows toggling external editing off and on again (<a href="https://github.com/laurent22/joplin/issues/3886">#3886</a>)</li>
|
||||
<li>Fixed: Fixed toggleNoteList and toggleSidebar commands</li>
|
||||
<li>Fixed: Fixed Toggle Editor button toolip and icon</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.3.3">v1.3.3</a> - 2020-10-17T10:56:57Z<a name="v1-3-3-https-github-com-laurent22-joplin-releases-tag-v1-3-3-2020-10-17t10-56-57z" href="#v1-3-3-https-github-com-laurent22-joplin-releases-tag-v1-3-3-2020-10-17t10-56-57z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>Fixed: Regression: Remove Hide Joplin menu item on Linux too</li>
|
||||
<li>Fixed: Regression: Editor toolbar was disabled when importing note from MD file (<a href="https://github.com/laurent22/joplin/issues/3915">#3915</a>)</li>
|
||||
<li>Fixed: Regression: Header links with special characters were no longer working (<a href="https://github.com/laurent22/joplin/issues/3903">#3903</a>)</li>
|
||||
<li>Fixed: Regression: Importing ENEX as HTML was importing as Markdown (<a href="https://github.com/laurent22/joplin/issues/3923">#3923</a>)</li>
|
||||
<li>Fixed: Regression - Layout Button Sequence menu items were disabled (<a href="https://github.com/laurent22/joplin/issues/3899">#3899</a>)</li>
|
||||
<li>Fixed: Regression: Fix export of pluginAssets when exporting to html/pdf (<a href="https://github.com/laurent22/joplin/issues/3927">#3927</a> by Caleb John)</li>
|
||||
<li>Fixed: Regression: Fixed check for update</li>
|
||||
<li>Fixed: Regression: Fixed move to notebook from context menu</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>New: Add support for application plugins (<a href="https://github.com/laurent22/joplin/issues/3257">#3257</a>)</li>
|
||||
<li>New: Added Thunderbird count for desktop client (<a href="https://github.com/laurent22/joplin/issues/3880">#3880</a> by <a href="https://github.com/Technik-J">@Technik-J</a>)</li>
|
||||
<li>New: Added support for Menu API for plugins</li>
|
||||
<li>New: Added support for plugins packaged as JS bundles</li>
|
||||
<li>Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode (<a href="https://github.com/laurent22/joplin/issues/3897">#3897</a> by Caleb John)</li>
|
||||
<li>Improved: Make sidebar item font weight normal (not bold)</li>
|
||||
<li>Improved: Plugin API - added support for settings.globalValue method</li>
|
||||
<li>Improved: Remove Hide Joplin menu item on Linux and Windows</li>
|
||||
<li>Improved: Removed OneDrive Dev sync target which was not really useful</li>
|
||||
<li>Improved: Allow setting note geolocation attributes via API (<a href="https://github.com/laurent22/joplin/issues/3884">#3884</a>)</li>
|
||||
<li>Improved: Disabled emoji highlighting in editor when emoji plugin is disabled (<a href="https://github.com/laurent22/joplin/issues/3852">#3852</a> by Rahil Sarvaiya)</li>
|
||||
<li>Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting (<a href="https://github.com/laurent22/joplin/issues/3777">#3777</a> by <a href="https://github.com/shawnaxsom">@shawnaxsom</a>)</li>
|
||||
<li>Fixed: Allows toggling external editing off and on again (<a href="https://github.com/laurent22/joplin/issues/3886">#3886</a>)</li>
|
||||
<li>Fixed: Fixed toggleNoteList and toggleSidebar commands</li>
|
||||
<li>Fixed: Fixed Toggle Editor button toolip and icon</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.3.2">v1.3.2</a> - 2020-10-11T20:39:49Z<a name="v1-3-2-https-github-com-laurent22-joplin-releases-tag-v1-3-2-2020-10-11t20-39-49z" href="#v1-3-2-https-github-com-laurent22-joplin-releases-tag-v1-3-2-2020-10-11t20-39-49z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>Fixed: Regression: Context menu in sidebar could point to wrong item</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>New: Add support for application plugins (<a href="https://github.com/laurent22/joplin/issues/3257">#3257</a>)</li>
|
||||
<li>Improved: Allow setting note geolocation attributes via API (<a href="https://github.com/laurent22/joplin/issues/3884">#3884</a>)</li>
|
||||
<li>Improved: Disabled emoji highlighting in editor when emoji plugin is disabled (<a href="https://github.com/laurent22/joplin/issues/3852">#3852</a> by Rahil Sarvaiya)</li>
|
||||
<li>Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting (<a href="https://github.com/laurent22/joplin/issues/3777">#3777</a> by <a href="https://github.com/shawnaxsom">@shawnaxsom</a>)</li>
|
||||
<li>Fixed: Allows toggling external editing off and on again (<a href="https://github.com/laurent22/joplin/issues/3886">#3886</a>)</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.3.1">v1.3.1</a> - 2020-10-11T15:10:18Z<a name="v1-3-1-https-github-com-laurent22-joplin-releases-tag-v1-3-1-2020-10-11t15-10-18z" href="#v1-3-1-https-github-com-laurent22-joplin-releases-tag-v1-3-1-2020-10-11t15-10-18z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>New: Add support for application plugins (<a href="https://github.com/laurent22/joplin/issues/3257">#3257</a>)</li>
|
||||
<li>Improved: Allow setting note geolocation attributes via API (<a href="https://github.com/laurent22/joplin/issues/3884">#3884</a>)</li>
|
||||
<li>Improved: Disabled emoji highlighting in editor when emoji plugin is disabled (<a href="https://github.com/laurent22/joplin/issues/3852">#3852</a> by Rahil Sarvaiya)</li>
|
||||
<li>Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting (<a href="https://github.com/laurent22/joplin/issues/3777">#3777</a> by <a href="https://github.com/shawnaxsom">@shawnaxsom</a>)</li>
|
||||
<li>Fixed: Allows toggling external editing off and on again (<a href="https://github.com/laurent22/joplin/issues/3886">#3886</a>)</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/v1.2.6">v1.2.6</a> - 2020-10-09T13:56:59Z<a name="v1-2-6-https-github-com-laurent22-joplin-releases-tag-v1-2-6-2020-10-09t13-56-59z" href="#v1-2-6-https-github-com-laurent22-joplin-releases-tag-v1-2-6-2020-10-09t13-56-59z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>New: Updated UI (<a href="https://github.com/laurent22/joplin/issues/3586">#3586</a>)</li>
|
||||
|
@ -392,6 +392,14 @@ https://github.com/laurent22/joplin/blob/dev/readme/changelog_cli.md
|
||||
|
||||
<div class="main">
|
||||
<h1>Joplin terminal app changelog<a name="joplin-terminal-app-changelog" href="#joplin-terminal-app-changelog" class="heading-anchor">🔗</a></h1>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/cli-v1.4.3">cli-v1.4.3</a> - 2020-11-06T21:19:29Z<a name="cli-v1-4-3-https-github-com-laurent22-joplin-releases-tag-cli-v1-4-3-2020-11-06t21-19-29z" href="#cli-v1-4-3-https-github-com-laurent22-joplin-releases-tag-cli-v1-4-3-2020-11-06t21-19-29z" class="heading-anchor">🔗</a></h2>
|
||||
<p>IMPORTANT: If you use the web API, please note that there are a few breaking changes in this release. See here for more information: <a href="https://github.com/laurent22/joplin/pull/3983#issue-509624899">https://github.com/laurent22/joplin/pull/3983#issue-509624899</a></p>
|
||||
<ul>
|
||||
<li>New: API: Adds ability to paginate data (#3983)</li>
|
||||
<li>Fixed: Display proper error message when decryption worker cannot be started (#4000)</li>
|
||||
<li>Fixed: Fixed OneDrive authentication</li>
|
||||
<li>Fixed: Fixed sync issue when importing ENEX files that contain new line characters in the source URL attribute (#3955)</li>
|
||||
</ul>
|
||||
<h2><a href="https://github.com/laurent22/joplin/releases/tag/cli-v1.3.3">cli-v1.3.3</a> - 2020-10-23T16:00:38Z<a name="cli-v1-3-3-https-github-com-laurent22-joplin-releases-tag-cli-v1-3-3-2020-10-23t16-00-38z" href="#cli-v1-3-3-https-github-com-laurent22-joplin-releases-tag-cli-v1-3-3-2020-10-23t16-00-38z" class="heading-anchor">🔗</a></h2>
|
||||
<ul>
|
||||
<li>Improved: Added support for a custom S3 URL (#3921) (#3691 by <a href="https://github.com/aaron">@aaron</a>)</li>
|
||||
@ -517,7 +525,7 @@ https://github.com/laurent22/joplin/blob/dev/readme/changelog_cli.md
|
||||
<li>Improved: Upgrade sqlite (#2248 by Devon Zuegel)</li>
|
||||
<li>Improved: Extract note renderer to separate package (WIP) (#2206 by Laurent Cozic)</li>
|
||||
<li>Improved: Better handling of resource download errors, and added resource info to sync status screen</li>
|
||||
<li>Improved: Update CliClient node dependency to 10+ (#2177 by <a href="https://github.com/joeltaylor">@joeltaylor</a>)</li>
|
||||
<li>Improved: Update Node dependency to 10+ (#2177 by <a href="https://github.com/joeltaylor">@joeltaylor</a>)</li>
|
||||
<li>Improved: Allow exporting a note as HTML</li>
|
||||
<li>Improved: Improved logging during sync to allow finding bugs more easily</li>
|
||||
<li>Fixed: Handle WebDAV servers that do not return a last modified date (fixes <a href="http://mail.ru">mail.ru</a>) (#2091)</li>
|
||||
|
@ -412,17 +412,17 @@ https://github.com/laurent22/joplin/blob/dev/README.md
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Windows (32 and 64-bit)</td>
|
||||
<td><a href='https://github.com/laurent22/joplin/releases/download/v1.2.6/Joplin-Setup-1.2.6.exe'><img alt='Get it on Windows' width="134px" src='https://joplinapp.org/images/BadgeWindows.png'/></a></td>
|
||||
<td>Or get the <a href='https://github.com/laurent22/joplin/releases/download/v1.2.6/JoplinPortable.exe'>Portable version</a><br><br>The <a href="https://en.wikipedia.org/wiki/Portable_application">portable application</a> allows installing the software on a portable device such as a USB key. Simply copy the file JoplinPortable.exe in any directory on that USB key ; the application will then create a directory called "JoplinProfile" next to the executable file.</td>
|
||||
<td><a href='https://github.com/laurent22/joplin/releases/download/v1.3.18/Joplin-Setup-1.3.18.exe'><img alt='Get it on Windows' width="134px" src='https://joplinapp.org/images/BadgeWindows.png'/></a></td>
|
||||
<td>Or get the <a href='https://github.com/laurent22/joplin/releases/download/v1.3.18/JoplinPortable.exe'>Portable version</a><br><br>The <a href="https://en.wikipedia.org/wiki/Portable_application">portable application</a> allows installing the software on a portable device such as a USB key. Simply copy the file JoplinPortable.exe in any directory on that USB key ; the application will then create a directory called "JoplinProfile" next to the executable file.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>macOS</td>
|
||||
<td><a href='https://github.com/laurent22/joplin/releases/download/v1.2.6/Joplin-1.2.6.dmg'><img alt='Get it on macOS' width="134px" src='https://joplinapp.org/images/BadgeMacOS.png'/></a></td>
|
||||
<td><a href='https://github.com/laurent22/joplin/releases/download/v1.3.18/Joplin-1.3.18.dmg'><img alt='Get it on macOS' width="134px" src='https://joplinapp.org/images/BadgeMacOS.png'/></a></td>
|
||||
<td>You can also use Homebrew (unsupported): <code>brew cask install joplin</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Linux</td>
|
||||
<td><a href='https://github.com/laurent22/joplin/releases/download/v1.2.6/Joplin-1.2.6.AppImage'><img alt='Get it on Linux' width="134px" src='https://joplinapp.org/images/BadgeLinux.png'/></a></td>
|
||||
<td><a href='https://github.com/laurent22/joplin/releases/download/v1.3.18/Joplin-1.3.18.AppImage'><img alt='Get it on Linux' width="134px" src='https://joplinapp.org/images/BadgeLinux.png'/></a></td>
|
||||
<td>An Arch Linux package (unsupported) <a href="#terminal-application">is also available</a>.<br><br>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:<br><br> <code>wget -O - https://raw.githubusercontent.com/laurent22/joplin/dev/Joplin_install_and_update.sh | bash</code></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -440,7 +440,7 @@ https://github.com/laurent22/joplin/blob/dev/README.md
|
||||
<tr>
|
||||
<td>Android</td>
|
||||
<td><a href='https://play.google.com/store/apps/details?id=net.cozic.joplin&utm_source=GitHub&utm_campaign=README&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' height="40px" src='https://joplinapp.org/images/BadgeAndroid.png'/></a></td>
|
||||
<td>or download the APK file: <a href="https://github.com/laurent22/joplin-android/releases/download/android-v1.3.10/joplin-v1.3.10.apk">64-bit</a> <a href="https://github.com/laurent22/joplin-android/releases/download/android-v1.3.10/joplin-v1.3.10-32bit.apk">32-bit</a></td>
|
||||
<td>or download the APK file: <a href="https://github.com/laurent22/joplin-android/releases/download/android-v1.3.13/joplin-v1.3.13.apk">64-bit</a> <a href="https://github.com/laurent22/joplin-android/releases/download/android-v1.3.13/joplin-v1.3.13-32bit.apk">32-bit</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>iOS</td>
|
||||
@ -849,12 +849,12 @@ Eg. <code>:search -- "-tag:tag1"</code>.</p>
|
||||
<li>You can join the live community on <a href="https://discordapp.com/invite/d2HMPwE">the JoplinApp discord server</a> to get help with Joplin or to discuss anything Joplin related.</li>
|
||||
</ul>
|
||||
<h1>Contributing<a name="contributing" href="#contributing" class="heading-anchor">🔗</a></h1>
|
||||
<p>Please see the guide for information on how to contribute to the development of Joplin: <a href="https://github.com/laurent22/joplin/blob/master/CONTRIBUTING.md">https://github.com/laurent22/joplin/blob/master/CONTRIBUTING.md</a></p>
|
||||
<p>Please see the guide for information on how to contribute to the development of Joplin: <a href="https://github.com/laurent22/joplin/blob/dev/CONTRIBUTING.md">https://github.com/laurent22/joplin/blob/dev/CONTRIBUTING.md</a></p>
|
||||
<h1>Localisation<a name="localisation" href="#localisation" class="heading-anchor">🔗</a></h1>
|
||||
<p>Joplin is currently available in the languages below. If you would like to contribute a <strong>new translation</strong>, it is quite straightforward, please follow these steps:</p>
|
||||
<ul>
|
||||
<li><a href="https://poedit.net/">Download Poedit</a>, the translation editor, and install it.</li>
|
||||
<li><a href="https://raw.githubusercontent.com/laurent22/joplin/dev/CliClient/locales/joplin.pot">Download the file to be translated</a>.</li>
|
||||
<li><a href="https://raw.githubusercontent.com/laurent22/joplin/dev/packages/app-cli/locales/joplin.pot">Download the file to be translated</a>.</li>
|
||||
<li>In Poedit, open this .pot file, go into the Catalog menu and click Configuration. Change "Country" and "Language" to your own country and language.</li>
|
||||
<li>From then you can translate the file.</li>
|
||||
<li>Once it is done, please <a href="https://github.com/laurent22/joplin/pulls">open a pull request</a> and add the file to it.</li>
|
||||
@ -877,266 +877,266 @@ Eg. <code>:search -- "-tag:tag1"</code>.</p>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/arableague.png" alt=""></td>
|
||||
<td>Arabic</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/ar.po">ar</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/ar.po">ar</a></td>
|
||||
<td><a href="mailto:fi_ahmed_bacha@esi.dz">أحمد باشا إبراهيم</a></td>
|
||||
<td>78%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/es/basque_country.png" alt=""></td>
|
||||
<td>Basque</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/eu.po">eu</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/eu.po">eu</a></td>
|
||||
<td>juan.abasolo@ehu.eus</td>
|
||||
<td>33%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/ba.png" alt=""></td>
|
||||
<td>Bosnian</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/bs_BA.po">bs_BA</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/bs_BA.po">bs_BA</a></td>
|
||||
<td><a href="mailto:dervis.t@pm.me">Derviš T.</a></td>
|
||||
<td>82%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/bg.png" alt=""></td>
|
||||
<td>Bulgarian</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/bg_BG.po">bg_BG</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/bg_BG.po">bg_BG</a></td>
|
||||
<td></td>
|
||||
<td>65%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/es/catalonia.png" alt=""></td>
|
||||
<td>Catalan</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/ca.po">ca</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/ca.po">ca</a></td>
|
||||
<td>jmontane, 2019</td>
|
||||
<td>95%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/hr.png" alt=""></td>
|
||||
<td>Croatian</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/hr_HR.po">hr_HR</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/hr_HR.po">hr_HR</a></td>
|
||||
<td><a href="mailto:trbuhom@net.hr">Hrvoje Mandić</a></td>
|
||||
<td>27%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/cz.png" alt=""></td>
|
||||
<td>Czech</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/cs_CZ.po">cs_CZ</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/cs_CZ.po">cs_CZ</a></td>
|
||||
<td><a href="mailto:lukas@aiya.cz">Lukas Helebrandt</a></td>
|
||||
<td>98%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/dk.png" alt=""></td>
|
||||
<td>Dansk</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/da_DK.po">da_DK</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/da_DK.po">da_DK</a></td>
|
||||
<td><a href="mailto:mjjzf@syntaktisk.">Morten Juhl-Johansen Zölde-Fejér</a></td>
|
||||
<td>72%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/de.png" alt=""></td>
|
||||
<td>Deutsch</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/de_DE.po">de_DE</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/de_DE.po">de_DE</a></td>
|
||||
<td><a href="mailto:atalanttore@users.noreply.github.com">Ettore Atalan</a></td>
|
||||
<td>97%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/ee.png" alt=""></td>
|
||||
<td>Eesti Keel</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/et_EE.po">et_EE</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/et_EE.po">et_EE</a></td>
|
||||
<td></td>
|
||||
<td>65%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/gb.png" alt=""></td>
|
||||
<td>English (UK)</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/en_GB.po">en_GB</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/en_GB.po">en_GB</a></td>
|
||||
<td></td>
|
||||
<td>100%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/us.png" alt=""></td>
|
||||
<td>English (US)</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/en_US.po">en_US</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/en_US.po">en_US</a></td>
|
||||
<td></td>
|
||||
<td>100%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/es.png" alt=""></td>
|
||||
<td>Español</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/es_ES.po">es_ES</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/es_ES.po">es_ES</a></td>
|
||||
<td><a href="mailto:mario.campo@gmail.com">Mario Campo</a></td>
|
||||
<td>98%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/esperanto.png" alt=""></td>
|
||||
<td>Esperanto</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/eo.po">eo</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/eo.po">eo</a></td>
|
||||
<td>Marton Paulo</td>
|
||||
<td>37%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/fr.png" alt=""></td>
|
||||
<td>Français</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/fr_FR.po">fr_FR</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/fr_FR.po">fr_FR</a></td>
|
||||
<td>Laurent Cozic</td>
|
||||
<td>98%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/es/galicia.png" alt=""></td>
|
||||
<td>Galician</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/gl_ES.po">gl_ES</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/gl_ES.po">gl_ES</a></td>
|
||||
<td><a href="mailto:marcoslansgarza@gmail.com">Marcos Lans</a></td>
|
||||
<td>42%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/id.png" alt=""></td>
|
||||
<td>Indonesian</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/id_ID.po">id_ID</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/id_ID.po">id_ID</a></td>
|
||||
<td><a href="mailto:16875937+fathyar@users.noreply.github.com">Fathy AR</a></td>
|
||||
<td>92%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/it.png" alt=""></td>
|
||||
<td>Italiano</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/it_IT.po">it_IT</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/it_IT.po">it_IT</a></td>
|
||||
<td><a href="mailto:mailfilledwithspam@gmail.com">Alessandro Bernardello</a></td>
|
||||
<td>98%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/nl.png" alt=""></td>
|
||||
<td>Nederlands</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/nl_NL.po">nl_NL</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/nl_NL.po">nl_NL</a></td>
|
||||
<td><a href="mailto:metbril@users.noreply.github.com">MetBril</a></td>
|
||||
<td>94%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/be.png" alt=""></td>
|
||||
<td>Nederlands</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/nl_BE.po">nl_BE</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/nl_BE.po">nl_BE</a></td>
|
||||
<td></td>
|
||||
<td>33%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/no.png" alt=""></td>
|
||||
<td>Norwegian</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/nb_NO.po">nb_NO</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/nb_NO.po">nb_NO</a></td>
|
||||
<td><a href="mailto:code@mxe.no">Mats Estensen</a></td>
|
||||
<td>87%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/ir.png" alt=""></td>
|
||||
<td>Persian</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/fa.po">fa</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/fa.po">fa</a></td>
|
||||
<td><a href="mailto:kourox@protonmail.com">Kourosh Firoozbakht</a></td>
|
||||
<td>82%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/pl.png" alt=""></td>
|
||||
<td>Polski</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/pl_PL.po">pl_PL</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/pl_PL.po">pl_PL</a></td>
|
||||
<td></td>
|
||||
<td>97%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/pt.png" alt=""></td>
|
||||
<td>Português</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/pt_PT.po">pt_PT</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/pt_PT.po">pt_PT</a></td>
|
||||
<td><a href="mailto:jduar@protonmail.com">João Duarte</a></td>
|
||||
<td>98%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/br.png" alt=""></td>
|
||||
<td>Português (Brasil)</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/pt_BR.po">pt_BR</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/pt_BR.po">pt_BR</a></td>
|
||||
<td><a href="mailto:rnbastos@gmail.com">Renato Nunes Bastos</a></td>
|
||||
<td>96%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/ro.png" alt=""></td>
|
||||
<td>Română</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/ro.po">ro</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/ro.po">ro</a></td>
|
||||
<td><a href="mailto:cristi.duluta@gmail.com">Cristi Duluta</a></td>
|
||||
<td>77%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/si.png" alt=""></td>
|
||||
<td>Slovenian</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/sl_SI.po">sl_SI</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/sl_SI.po">sl_SI</a></td>
|
||||
<td></td>
|
||||
<td>41%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/se.png" alt=""></td>
|
||||
<td>Svenska</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/sv.po">sv</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/sv.po">sv</a></td>
|
||||
<td><a href="mailto:jonatan@autistici.org">Jonatan Nyberg</a></td>
|
||||
<td>70%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/th.png" alt=""></td>
|
||||
<td>Thai</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/th_TH.po">th_TH</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/th_TH.po">th_TH</a></td>
|
||||
<td></td>
|
||||
<td>52%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/vi.png" alt=""></td>
|
||||
<td>Tiếng Việt</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/vi.po">vi</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/vi.po">vi</a></td>
|
||||
<td></td>
|
||||
<td>84%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/tr.png" alt=""></td>
|
||||
<td>Türkçe</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/tr_TR.po">tr_TR</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/tr_TR.po">tr_TR</a></td>
|
||||
<td><a href="mailto:arda@kilicdagi.com">Arda Kılıçdağı</a></td>
|
||||
<td>97%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/gr.png" alt=""></td>
|
||||
<td>Ελληνικά</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/el_GR.po">el_GR</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/el_GR.po">el_GR</a></td>
|
||||
<td><a href="mailto:xaris@tuta.io">Harris Arvanitis</a></td>
|
||||
<td>95%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/ru.png" alt=""></td>
|
||||
<td>Русский</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/ru_RU.po">ru_RU</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/ru_RU.po">ru_RU</a></td>
|
||||
<td><a href="mailto:thesermanarm@gmail.com">Sergey Segeda</a></td>
|
||||
<td>94%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/rs.png" alt=""></td>
|
||||
<td>српски језик</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/sr_RS.po">sr_RS</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/sr_RS.po">sr_RS</a></td>
|
||||
<td></td>
|
||||
<td>70%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/cn.png" alt=""></td>
|
||||
<td>中文 (简体)</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/zh_CN.po">zh_CN</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/zh_CN.po">zh_CN</a></td>
|
||||
<td><a href="mailto:fungdaat31@outlook.com">WhiredPlanck</a></td>
|
||||
<td>95%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/tw.png" alt=""></td>
|
||||
<td>中文 (繁體)</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/zh_TW.po">zh_TW</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/zh_TW.po">zh_TW</a></td>
|
||||
<td><a href="mailto:yaozeye@yahoo.co.jp">Yaoze Ye</a></td>
|
||||
<td>94%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/jp.png" alt=""></td>
|
||||
<td>日本語</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/ja_JP.po">ja_JP</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/ja_JP.po">ja_JP</a></td>
|
||||
<td><a href="mailto:genneko217@gmail.com">genneko</a></td>
|
||||
<td>99%</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://joplinapp.org/images/flags/country-4x3/kr.png" alt=""></td>
|
||||
<td>한국어</td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/CliClient/locales/ko.po">ko</a></td>
|
||||
<td><a href="https://github.com/laurent22/joplin/blob/dev/packages/app-cli/locales/ko.po">ko</a></td>
|
||||
<td><a href="mailto:potatogim@potatogim.net">Ji-Hyeon Gim</a></td>
|
||||
<td>99%</td>
|
||||
</tr>
|
||||
|
@ -458,7 +458,7 @@ https://github.com/laurent22/joplin/blob/dev/readme/spec/e2ee.md
|
||||
</tbody>
|
||||
</table>
|
||||
<h2>Master Keys<a name="master-keys" href="#master-keys" class="heading-anchor">🔗</a></h2>
|
||||
<p>The master keys are used to encrypt and decrypt data. They can be generated from the Encryption Service and are saved to the database. They are themselves encrypted via a user password using a <a href="https://github.com/laurent22/joplin/blob/fb6dee32ac035b00153106273135fb16be4b4fa5/ReactNativeClient/lib/services/EncryptionService.js#L263">strong encryption method</a>.</p>
|
||||
<p>The master keys are used to encrypt and decrypt data. They can be generated from the Encryption Service and are saved to the database. They are themselves encrypted via a user password using a <a href="https://github.com/laurent22/joplin/blob/fb6dee32ac035b00153106273135fb16be4b4fa5/packages/app-mobile/lib/services/EncryptionService.js#L263">strong encryption method</a>.</p>
|
||||
<p>These encrypted master keys are transmitted with the sync data so that they can be available to each client. Each client will need to supply the user password to decrypt each key.</p>
|
||||
<p>The application supports multiple master keys in order to handle cases where one offline client starts encrypting notes, then another offline client starts encrypting notes too, and later both sync. Both master keys will have to be decrypted separately with the user password.</p>
|
||||
<p>Only one master key can be active for encryption purposes. For decryption, the algorithm will check the Master Key ID in the header, then check if it's available to the current app and, if so, use this for decryption.</p>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,424 @@
|
||||
# Joplin changelog
|
||||
|
||||
## [v1.3.18](https://github.com/laurent22/joplin/releases/tag/v1.3.18) - 2020-11-06T12:07:02Z
|
||||
|
||||
- Regression: Random crash when syncing due to undefined tags ([#4051](https://github.com/laurent22/joplin/issues/4051))
|
||||
- Fixed: Keymap editor crash when an invalid command is used ([#4049](https://github.com/laurent22/joplin/issues/4049))
|
||||
|
||||
* * *
|
||||
|
||||
- New: Add support for application plugins ([#3257](https://github.com/laurent22/joplin/issues/3257))
|
||||
- New: Added Thunderbird count for desktop client ([#3880](https://github.com/laurent22/joplin/issues/3880) by [@Technik-J](https://github.com/Technik-J))
|
||||
- New: Added support for Menu API for plugins
|
||||
- New: Added support for plugins packaged as JS bundles
|
||||
- New: Added `openProfileDirectory` command and menu item
|
||||
- New: Api: Added service to access resource external editing
|
||||
- New: Plugins: Add the openNote, openFolder and openTag commands
|
||||
- Security: Remove "link" and "meta" tags from notes to prevent XSS (Discovered by [Phil Holbrook](https://twitter.com/fhlipZero))
|
||||
- Improved: Make “update is available” dialog box easier to use ([#3877](https://github.com/laurent22/joplin/issues/3877) by [@roryokane](https://github.com/roryokane))
|
||||
- Improved: Sort tags in a case-insensitive way
|
||||
- Improved: Display more info while an ENEX file is being imported
|
||||
- Improved: Made toolbar buttons bigger and swap order of bullet and number lists
|
||||
- Improved: Api: Allow preserving timestamps when updating a note
|
||||
- Improved: Added support for a custom S3 URL ([#3921](https://github.com/laurent22/joplin/issues/3921)) ([#3691](https://github.com/laurent22/joplin/issues/3691) by [@aaron](https://github.com/aaron))
|
||||
- Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode ([#3897](https://github.com/laurent22/joplin/issues/3897) by Caleb John)
|
||||
- Improved: Simplified and improve command service, and added command palette
|
||||
- Improved: Tray: Exit -> Quit ([#3945](https://github.com/laurent22/joplin/issues/3945) by Helmut K. C. Tessarek)
|
||||
- Improved: Import `<strike>`, `<s>` tags (strikethrough) from Evernote ([#3936](https://github.com/laurent22/joplin/issues/3936) by Ian Slinger)
|
||||
- Improved: Make sidebar item font weight normal (not bold)
|
||||
- Improved: Plugin API - added support for settings.globalValue method
|
||||
- Improved: Remove Hide Joplin menu item on Linux and Windows
|
||||
- Improved: Removed OneDrive Dev sync target which was not really useful
|
||||
- Improved: Allow setting note geolocation attributes via API ([#3884](https://github.com/laurent22/joplin/issues/3884))
|
||||
- Improved: Disabled emoji highlighting in editor when emoji plugin is disabled ([#3852](https://github.com/laurent22/joplin/issues/3852) by Rahil Sarvaiya)
|
||||
- Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting ([#3777](https://github.com/laurent22/joplin/issues/3777) by [@shawnaxsom](https://github.com/shawnaxsom))
|
||||
- Improved: Make sure all commands appear in keymap editor
|
||||
- Fixed: Add history backward and forward commands to keymap and menus ([#4010](https://github.com/laurent22/joplin/issues/4010))
|
||||
- Fixed: Fixed handling of Option key for shortcuts in macOS
|
||||
- Fixed: Fix slow Katex rendering when there are many global definitions ([#3993](https://github.com/laurent22/joplin/issues/3993))
|
||||
- Fixed: Fix syntax of imported resources when importing ENEX as HTML
|
||||
- Fixed: Fixed OneDrive authentication
|
||||
- Fixed: Fixed sync issue when importing ENEX files that contain new line characters in the source URL attribute ([#3955](https://github.com/laurent22/joplin/issues/3955))
|
||||
- Fixed: Handle gzipped CSS files when importing from clipper ([#3986](https://github.com/laurent22/joplin/issues/3986))
|
||||
- Fixed: Update highlight.js to fix freeze for certain code blocks ([#3992](https://github.com/laurent22/joplin/issues/3992))
|
||||
- Fixed: Fix search filters when language is in Korean or with accents ([#3947](https://github.com/laurent22/joplin/issues/3947) by Naveen M V)
|
||||
- Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources ([#3958](https://github.com/laurent22/joplin/issues/3958))
|
||||
- Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working
|
||||
- Fixed: Fixed sidebar performance issue when there are many notebooks or tags ([#3893](https://github.com/laurent22/joplin/issues/3893))
|
||||
- Fixed: Allows toggling external editing off and on again ([#3886](https://github.com/laurent22/joplin/issues/3886))
|
||||
- Fixed: Fixed toggleNoteList and toggleSidebar commands
|
||||
- Fixed: Fixed Toggle Editor button tooltip and icon
|
||||
|
||||
## [v1.3.17](https://github.com/laurent22/joplin/releases/tag/v1.3.17) - 2020-11-06T11:35:15Z
|
||||
|
||||
- Regression: Random crash when syncing due to undefined tags ([#4051](https://github.com/laurent22/joplin/issues/4051))
|
||||
|
||||
* * *
|
||||
|
||||
- New: Add support for application plugins ([#3257](https://github.com/laurent22/joplin/issues/3257))
|
||||
- New: Added Thunderbird count for desktop client ([#3880](https://github.com/laurent22/joplin/issues/3880) by [@Technik-J](https://github.com/Technik-J))
|
||||
- New: Added support for Menu API for plugins
|
||||
- New: Added support for plugins packaged as JS bundles
|
||||
- New: Added `openProfileDirectory` command and menu item
|
||||
- New: Api: Added service to access resource external editing
|
||||
- New: Plugins: Add the openNote, openFolder and openTag commands
|
||||
- Security: Remove "link" and "meta" tags from notes to prevent XSS (Discovered by [Phil Holbrook](https://twitter.com/fhlipZero))
|
||||
- Improved: Make “update is available” dialog box easier to use ([#3877](https://github.com/laurent22/joplin/issues/3877) by [@roryokane](https://github.com/roryokane))
|
||||
- Improved: Sort tags in a case-insensitive way
|
||||
- Improved: Display more info while an ENEX file is being imported
|
||||
- Improved: Made toolbar buttons bigger and swap order of bullet and number lists
|
||||
- Improved: Api: Allow preserving timestamps when updating a note
|
||||
- Improved: Added support for a custom S3 URL ([#3921](https://github.com/laurent22/joplin/issues/3921)) ([#3691](https://github.com/laurent22/joplin/issues/3691) by [@aaron](https://github.com/aaron))
|
||||
- Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode ([#3897](https://github.com/laurent22/joplin/issues/3897) by Caleb John)
|
||||
- Improved: Simplified and improve command service, and added command palette
|
||||
- Improved: Tray: Exit -> Quit ([#3945](https://github.com/laurent22/joplin/issues/3945) by Helmut K. C. Tessarek)
|
||||
- Improved: Import `<strike>`, `<s>` tags (strikethrough) from Evernote ([#3936](https://github.com/laurent22/joplin/issues/3936) by Ian Slinger)
|
||||
- Improved: Make sidebar item font weight normal (not bold)
|
||||
- Improved: Plugin API - added support for settings.globalValue method
|
||||
- Improved: Remove Hide Joplin menu item on Linux and Windows
|
||||
- Improved: Removed OneDrive Dev sync target which was not really useful
|
||||
- Improved: Allow setting note geolocation attributes via API ([#3884](https://github.com/laurent22/joplin/issues/3884))
|
||||
- Improved: Disabled emoji highlighting in editor when emoji plugin is disabled ([#3852](https://github.com/laurent22/joplin/issues/3852) by Rahil Sarvaiya)
|
||||
- Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting ([#3777](https://github.com/laurent22/joplin/issues/3777) by [@shawnaxsom](https://github.com/shawnaxsom))
|
||||
- Improved: Make sure all commands appear in keymap editor
|
||||
- Fixed: Add history backward and forward commands to keymap and menus ([#4010](https://github.com/laurent22/joplin/issues/4010))
|
||||
- Fixed: Fixed handling of Option key for shortcuts in macOS
|
||||
- Fixed: Fix slow Katex rendering when there are many global definitions ([#3993](https://github.com/laurent22/joplin/issues/3993))
|
||||
- Fixed: Fix syntax of imported resources when importing ENEX as HTML
|
||||
- Fixed: Fixed OneDrive authentication
|
||||
- Fixed: Fixed sync issue when importing ENEX files that contain new line characters in the source URL attribute ([#3955](https://github.com/laurent22/joplin/issues/3955))
|
||||
- Fixed: Handle gzipped CSS files when importing from clipper ([#3986](https://github.com/laurent22/joplin/issues/3986))
|
||||
- Fixed: Update highlight.js to fix freeze for certain code blocks ([#3992](https://github.com/laurent22/joplin/issues/3992))
|
||||
- Fixed: Fix search filters when language is in Korean or with accents ([#3947](https://github.com/laurent22/joplin/issues/3947) by Naveen M V)
|
||||
- Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources ([#3958](https://github.com/laurent22/joplin/issues/3958))
|
||||
- Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working
|
||||
- Fixed: Fixed sidebar performance issue when there are many notebooks or tags ([#3893](https://github.com/laurent22/joplin/issues/3893))
|
||||
- Fixed: Allows toggling external editing off and on again ([#3886](https://github.com/laurent22/joplin/issues/3886))
|
||||
- Fixed: Fixed toggleNoteList and toggleSidebar commands
|
||||
- Fixed: Fixed Toggle Editor button tooltip and icon
|
||||
|
||||
## [v1.4.6](https://github.com/laurent22/joplin/releases/tag/v1.4.6) - 2020-11-05T22:44:12Z
|
||||
|
||||
IMPORTANT: If you use the Clipper API, please note that there are a few breaking changes in this version. See this link for more information: https://github.com/laurent22/joplin/pull/3983
|
||||
|
||||
- New: API: Adds ability to paginate data ([#3983](https://github.com/laurent22/joplin/issues/3983))
|
||||
- New: Adds spell checker support for Rich Text editor ([#3974](https://github.com/laurent22/joplin/issues/3974))
|
||||
- Improved: Change Markdown rendering to align with CommonMark spec ([#3839](https://github.com/laurent22/joplin/issues/3839))
|
||||
|
||||
## [v1.3.15](https://github.com/laurent22/joplin/releases/tag/v1.3.15) - 2020-11-04T12:22:50Z
|
||||
|
||||
- New: Add support for application plugins ([#3257](https://github.com/laurent22/joplin/issues/3257))
|
||||
- New: Added Thunderbird count for desktop client ([#3880](https://github.com/laurent22/joplin/issues/3880) by [@Technik-J](https://github.com/Technik-J))
|
||||
- New: Added support for Menu API for plugins
|
||||
- New: Added support for plugins packaged as JS bundles
|
||||
- New: Added `openProfileDirectory` command and menu item
|
||||
- New: Api: Added service to access resource external editing
|
||||
- New: Plugins: Add the openNote, openFolder and openTag commands
|
||||
- Security: Remove "link" and "meta" tags from notes to prevent XSS (Discovered by [Phil Holbrook](https://twitter.com/fhlipZero))
|
||||
- Improved: Make “update is available” dialog box easier to use ([#3877](https://github.com/laurent22/joplin/issues/3877) by [@roryokane](https://github.com/roryokane))
|
||||
- Improved: Sort tags in a case-insensitive way
|
||||
- Improved: Display more info while an ENEX file is being imported
|
||||
- Improved: Made toolbar buttons bigger and swap order of bullet and number lists
|
||||
- Improved: Api: Allow preserving timestamps when updating a note
|
||||
- Improved: Added support for a custom S3 URL ([#3921](https://github.com/laurent22/joplin/issues/3921)) ([#3691](https://github.com/laurent22/joplin/issues/3691) by [@aaron](https://github.com/aaron))
|
||||
- Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode ([#3897](https://github.com/laurent22/joplin/issues/3897) by Caleb John)
|
||||
- Improved: Simplified and improve command service, and added command palette
|
||||
- Improved: Tray: Exit -> Quit ([#3945](https://github.com/laurent22/joplin/issues/3945) by Helmut K. C. Tessarek)
|
||||
- Improved: Import `<strike>`, `<s>` tags (strikethrough) from Evernote ([#3936](https://github.com/laurent22/joplin/issues/3936) by Ian Slinger)
|
||||
- Improved: Make sidebar item font weight normal (not bold)
|
||||
- Improved: Plugin API - added support for settings.globalValue method
|
||||
- Improved: Remove Hide Joplin menu item on Linux and Windows
|
||||
- Improved: Removed OneDrive Dev sync target which was not really useful
|
||||
- Improved: Allow setting note geolocation attributes via API ([#3884](https://github.com/laurent22/joplin/issues/3884))
|
||||
- Improved: Disabled emoji highlighting in editor when emoji plugin is disabled ([#3852](https://github.com/laurent22/joplin/issues/3852) by Rahil Sarvaiya)
|
||||
- Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting ([#3777](https://github.com/laurent22/joplin/issues/3777) by [@shawnaxsom](https://github.com/shawnaxsom))
|
||||
- Improved: Make sure all commands appear in keymap editor
|
||||
- Fixed: Add history backward and forward commands to keymap and menus ([#4010](https://github.com/laurent22/joplin/issues/4010))
|
||||
- Fixed: Fixed handling of Option key for shortcuts in macOS
|
||||
- Fixed: Fix slow Katex rendering when there are many global definitions ([#3993](https://github.com/laurent22/joplin/issues/3993))
|
||||
- Fixed: Fix syntax of imported resources when importing ENEX as HTML
|
||||
- Fixed: Fixed OneDrive authentication
|
||||
- Fixed: Fixed sync issue when importing ENEX files that contain new line characters in the source URL attribute ([#3955](https://github.com/laurent22/joplin/issues/3955))
|
||||
- Fixed: Handle gzipped CSS files when importing from clipper ([#3986](https://github.com/laurent22/joplin/issues/3986))
|
||||
- Fixed: Update highlight.js to fix freeze for certain code blocks ([#3992](https://github.com/laurent22/joplin/issues/3992))
|
||||
- Fixed: Fix search filters when language is in Korean or with accents ([#3947](https://github.com/laurent22/joplin/issues/3947) by Naveen M V)
|
||||
- Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources ([#3958](https://github.com/laurent22/joplin/issues/3958))
|
||||
- Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working
|
||||
- Fixed: Fixed sidebar performance issue when there are many notebooks or tags ([#3893](https://github.com/laurent22/joplin/issues/3893))
|
||||
- Fixed: Allows toggling external editing off and on again ([#3886](https://github.com/laurent22/joplin/issues/3886))
|
||||
- Fixed: Fixed toggleNoteList and toggleSidebar commands
|
||||
- Fixed: Fixed Toggle Editor button tooltip and icon
|
||||
|
||||
## [v1.3.11](https://github.com/laurent22/joplin/releases/tag/v1.3.11) - 2020-10-31T13:22:20Z
|
||||
|
||||
- Improved: Make sure all commands appear in keymap editor
|
||||
- Fixed: Add history backward and forward commands to keymap and menus ([#4010](https://github.com/laurent22/joplin/issues/4010))
|
||||
- Fixed: Fixed handling of Option key for shortcuts in macOS
|
||||
- Security: Remove "link" and "meta" tags from notes to prevent XSS
|
||||
|
||||
* * *
|
||||
|
||||
- New: Add support for application plugins ([#3257](https://github.com/laurent22/joplin/issues/3257))
|
||||
- New: Added Thunderbird count for desktop client ([#3880](https://github.com/laurent22/joplin/issues/3880) by [@Technik-J](https://github.com/Technik-J))
|
||||
- New: Added support for Menu API for plugins
|
||||
- New: Added support for plugins packaged as JS bundles
|
||||
- New: Added `openProfileDirectory` command and menu item
|
||||
- New: Api: Added service to access resource external editing
|
||||
- New: Plugins: Add the openNote, openFolder and openTag commands
|
||||
- Improved: Make “update is available” dialog box easier to use ([#3877](https://github.com/laurent22/joplin/issues/3877) by [@roryokane](https://github.com/roryokane))
|
||||
- Improved: Sort tags in a case-insensitive way
|
||||
- Improved: Display more info while an ENEX file is being imported
|
||||
- Improved: Made toolbar buttons bigger and swap order of bullet and number lists
|
||||
- Improved: Api: Allow preserving timestamps when updating a note
|
||||
- Improved: Added support for a custom S3 URL ([#3921](https://github.com/laurent22/joplin/issues/3921)) ([#3691](https://github.com/laurent22/joplin/issues/3691) by [@aaron](https://github.com/aaron))
|
||||
- Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode ([#3897](https://github.com/laurent22/joplin/issues/3897) by Caleb John)
|
||||
- Improved: Simplified and improve command service, and added command palette
|
||||
- Improved: Tray: Exit -> Quit ([#3945](https://github.com/laurent22/joplin/issues/3945) by Helmut K. C. Tessarek)
|
||||
- Improved: Import `<strike>`, `<s>` tags (strikethrough) from Evernote ([#3936](https://github.com/laurent22/joplin/issues/3936) by Ian Slinger)
|
||||
- Improved: Make sidebar item font weight normal (not bold)
|
||||
- Improved: Plugin API - added support for settings.globalValue method
|
||||
- Improved: Remove Hide Joplin menu item on Linux and Windows
|
||||
- Improved: Removed OneDrive Dev sync target which was not really useful
|
||||
- Improved: Allow setting note geolocation attributes via API ([#3884](https://github.com/laurent22/joplin/issues/3884))
|
||||
- Improved: Disabled emoji highlighting in editor when emoji plugin is disabled ([#3852](https://github.com/laurent22/joplin/issues/3852) by Rahil Sarvaiya)
|
||||
- Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting ([#3777](https://github.com/laurent22/joplin/issues/3777) by [@shawnaxsom](https://github.com/shawnaxsom))
|
||||
- Fixed: Fix slow Katex rendering when there are many global definitions ([#3993](https://github.com/laurent22/joplin/issues/3993))
|
||||
- Fixed: Fix syntax of imported resources when importing ENEX as HTML
|
||||
- Fixed: Fixed OneDrive authentication
|
||||
- Fixed: Fixed sync issue when importing ENEX files that contain new line characters in the source URL attribute ([#3955](https://github.com/laurent22/joplin/issues/3955))
|
||||
- Fixed: Handle gzipped CSS files when importing from clipper ([#3986](https://github.com/laurent22/joplin/issues/3986))
|
||||
- Fixed: Update highlight.js to fix freeze for certain code blocks ([#3992](https://github.com/laurent22/joplin/issues/3992))
|
||||
- Fixed: Fix search filters when language is in Korean or with accents ([#3947](https://github.com/laurent22/joplin/issues/3947) by Naveen M V)
|
||||
- Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources ([#3958](https://github.com/laurent22/joplin/issues/3958))
|
||||
- Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working
|
||||
- Fixed: Fixed sidebar performance issue when there are many notebooks or tags ([#3893](https://github.com/laurent22/joplin/issues/3893))
|
||||
- Fixed: Allows toggling external editing off and on again ([#3886](https://github.com/laurent22/joplin/issues/3886))
|
||||
- Fixed: Fixed toggleNoteList and toggleSidebar commands
|
||||
- Fixed: Fixed Toggle Editor button toolip and icon
|
||||
|
||||
## [v1.3.10](https://github.com/laurent22/joplin/releases/tag/v1.3.10) - 2020-10-29T13:27:14Z
|
||||
|
||||
- New: Api: Added service to access resource external editing
|
||||
- New: Plugins: Add the openNote, openFolder and openTag commands
|
||||
- Fixed: Regression: Keyboard shortcut would not save in some cases
|
||||
- Fixed: Regression: Restore "New sub-notebook" command
|
||||
- Fixed: Command Palette click did not work
|
||||
- Fixed: Fix slow Katex rendering when there are many global definitions ([#3993](https://github.com/laurent22/joplin/issues/3993))
|
||||
- Fixed: Fix syntax of imported resources when importing ENEX as HTML
|
||||
- Fixed: Fixed OneDrive authentication
|
||||
- Fixed: Fixed sync issue when importing ENEX files that contain new line characters in the source URL attribute ([#3955](https://github.com/laurent22/joplin/issues/3955))
|
||||
- Fixed: Handle gzipped CSS files when importing from clipper ([#3986](https://github.com/laurent22/joplin/issues/3986))
|
||||
- Fixed: Update highlight.js to fix freeze for certain code blocks ([#3992](https://github.com/laurent22/joplin/issues/3992))
|
||||
|
||||
* * *
|
||||
|
||||
- New: Add support for application plugins ([#3257](https://github.com/laurent22/joplin/issues/3257))
|
||||
- New: Added Thunderbird count for desktop client ([#3880](https://github.com/laurent22/joplin/issues/3880) by [@Technik-J](https://github.com/Technik-J))
|
||||
- New: Added support for Menu API for plugins
|
||||
- New: Added support for plugins packaged as JS bundles
|
||||
- New: Added `openProfileDirectory` command and menu item
|
||||
- Improved: Make “update is available” dialog box easier to use ([#3877](https://github.com/laurent22/joplin/issues/3877) by [@roryokane](https://github.com/roryokane))
|
||||
- Improved: Sort tags in a case-insensitive way
|
||||
- Improved: Display more info while an ENEX file is being imported
|
||||
- Improved: Made toolbar buttons bigger and swap order of bullet and number lists
|
||||
- Improved: Api: Allow preserving timestamps when updating a note
|
||||
- Improved: Added support for a custom S3 URL ([#3921](https://github.com/laurent22/joplin/issues/3921)) ([#3691](https://github.com/laurent22/joplin/issues/3691) by [@aaron](https://github.com/aaron))
|
||||
- Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode ([#3897](https://github.com/laurent22/joplin/issues/3897) by Caleb John)
|
||||
- Improved: Simplified and improve command service, and added command palette
|
||||
- Improved: Tray: Exit -> Quit ([#3945](https://github.com/laurent22/joplin/issues/3945) by Helmut K. C. Tessarek)
|
||||
- Improved: Import `<strike>`, `<s>` tags (strikethrough) from Evernote ([#3936](https://github.com/laurent22/joplin/issues/3936) by Ian Slinger)
|
||||
- Improved: Make sidebar item font weight normal (not bold)
|
||||
- Improved: Plugin API - added support for settings.globalValue method
|
||||
- Improved: Remove Hide Joplin menu item on Linux and Windows
|
||||
- Improved: Removed OneDrive Dev sync target which was not really useful
|
||||
- Improved: Allow setting note geolocation attributes via API ([#3884](https://github.com/laurent22/joplin/issues/3884))
|
||||
- Improved: Disabled emoji highlighting in editor when emoji plugin is disabled ([#3852](https://github.com/laurent22/joplin/issues/3852) by Rahil Sarvaiya)
|
||||
- Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting ([#3777](https://github.com/laurent22/joplin/issues/3777) by [@shawnaxsom](https://github.com/shawnaxsom))
|
||||
- Fixed: Fix search filters when language is in Korean or with accents ([#3947](https://github.com/laurent22/joplin/issues/3947) by Naveen M V)
|
||||
- Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources ([#3958](https://github.com/laurent22/joplin/issues/3958))
|
||||
- Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working
|
||||
- Fixed: Fixed sidebar performance issue when there are many notebooks or tags ([#3893](https://github.com/laurent22/joplin/issues/3893))
|
||||
- Fixed: Allows toggling external editing off and on again ([#3886](https://github.com/laurent22/joplin/issues/3886))
|
||||
- Fixed: Fixed toggleNoteList and toggleSidebar commands
|
||||
- Fixed: Fixed Toggle Editor button toolip and icon
|
||||
|
||||
## [v1.3.9](https://github.com/laurent22/joplin/releases/tag/v1.3.9) - 2020-10-23T16:04:26Z
|
||||
|
||||
- New: Added `openProfileDirectory` command and menu item
|
||||
- Improved: Make “update is available” dialog box easier to use ([#3877](https://github.com/laurent22/joplin/issues/3877) by [@roryokane](https://github.com/roryokane))
|
||||
- Improved: Sort tags in a case-insensitive way
|
||||
- Fixed: Fix invalid tag state issue when importing notes or syncing
|
||||
- Fixed: Fix search filters when language is in Korean or with accents ([#3947](https://github.com/laurent22/joplin/issues/3947) by Naveen M V)
|
||||
- Fixed: Fixed Cut menu item
|
||||
|
||||
* * *
|
||||
|
||||
- New: Add support for application plugins ([#3257](https://github.com/laurent22/joplin/issues/3257))
|
||||
- New: Added Thunderbird count for desktop client ([#3880](https://github.com/laurent22/joplin/issues/3880) by [@Technik-J](https://github.com/Technik-J))
|
||||
- New: Added support for Menu API for plugins
|
||||
- New: Added support for plugins packaged as JS bundles
|
||||
- Improved: Display more info while an ENEX file is being imported
|
||||
- Improved: Made toolbar buttons bigger and swap order of bullet and number lists
|
||||
- Improved: Api: Allow preserving timestamps when updating a note
|
||||
- Improved: Added support for a custom S3 URL ([#3921](https://github.com/laurent22/joplin/issues/3921)) ([#3691](https://github.com/laurent22/joplin/issues/3691) by [@aaron](https://github.com/aaron))
|
||||
- Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode ([#3897](https://github.com/laurent22/joplin/issues/3897) by Caleb John)
|
||||
- Improved: Simplified and improve command service, and added command palette
|
||||
- Improved: Tray: Exit -> Quit ([#3945](https://github.com/laurent22/joplin/issues/3945) by Helmut K. C. Tessarek)
|
||||
- Improved: Import `<strike>`, `<s>` tags (strikethrough) from Evernote ([#3936](https://github.com/laurent22/joplin/issues/3936) by Ian Slinger)
|
||||
- Improved: Make sidebar item font weight normal (not bold)
|
||||
- Improved: Plugin API - added support for settings.globalValue method
|
||||
- Improved: Remove Hide Joplin menu item on Linux and Windows
|
||||
- Improved: Removed OneDrive Dev sync target which was not really useful
|
||||
- Improved: Allow setting note geolocation attributes via API ([#3884](https://github.com/laurent22/joplin/issues/3884))
|
||||
- Improved: Disabled emoji highlighting in editor when emoji plugin is disabled ([#3852](https://github.com/laurent22/joplin/issues/3852) by Rahil Sarvaiya)
|
||||
- Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting ([#3777](https://github.com/laurent22/joplin/issues/3777) by [@shawnaxsom](https://github.com/shawnaxsom))
|
||||
- Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources ([#3958](https://github.com/laurent22/joplin/issues/3958))
|
||||
- Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working
|
||||
- Fixed: Fixed sidebar performance issue when there are many notebooks or tags ([#3893](https://github.com/laurent22/joplin/issues/3893))
|
||||
- Fixed: Allows toggling external editing off and on again ([#3886](https://github.com/laurent22/joplin/issues/3886))
|
||||
- Fixed: Fixed toggleNoteList and toggleSidebar commands
|
||||
- Fixed: Fixed Toggle Editor button toolip and icon
|
||||
|
||||
## [v1.3.8](https://github.com/laurent22/joplin/releases/tag/v1.3.8) - 2020-10-21T18:46:29Z
|
||||
|
||||
- New: Plugins: Added support for content scripts
|
||||
- Improved: Api: Allow preserving timestamps when updating a note
|
||||
- Improved: Display more info while an ENEX file is being imported
|
||||
- Improved: Made toolbar buttons bigger and swap order of bullet and number lists
|
||||
- Improved: Plugins: Allow custom commands to return a result
|
||||
- Fixed: Certain commands no longer worked. ([#3962](https://github.com/laurent22/joplin/issues/3962))
|
||||
- Fixed: Fixed freeze when importing ENEX as HTML, and fixed potential error when importing resources ([#3958](https://github.com/laurent22/joplin/issues/3958))
|
||||
- Fixed: Fixed setting issue that would cause a password to be saved in plain text in the database, even when the keychain is working
|
||||
- Fixed: Regression: Fixed format of copied version info
|
||||
|
||||
* * *
|
||||
|
||||
- New: Add support for application plugins ([#3257](https://github.com/laurent22/joplin/issues/3257))
|
||||
- New: Added Thunderbird count for desktop client ([#3880](https://github.com/laurent22/joplin/issues/3880) by [@Technik-J](https://github.com/Technik-J))
|
||||
- New: Added support for Menu API for plugins
|
||||
- New: Added support for plugins packaged as JS bundles
|
||||
- Improved: Added support for a custom S3 URL ([#3921](https://github.com/laurent22/joplin/issues/3921)) ([#3691](https://github.com/laurent22/joplin/issues/3691) by [@aaron](https://github.com/aaron))
|
||||
- Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode ([#3897](https://github.com/laurent22/joplin/issues/3897) by Caleb John)
|
||||
- Improved: Simplified and improve command service, and added command palette
|
||||
- Improved: Tray: Exit -> Quit ([#3945](https://github.com/laurent22/joplin/issues/3945) by Helmut K. C. Tessarek)
|
||||
- Improved: Import `<strike>`, `<s>` tags (strikethrough) from Evernote ([#3936](https://github.com/laurent22/joplin/issues/3936) by Ian Slinger)
|
||||
- Improved: Make sidebar item font weight normal (not bold)
|
||||
- Improved: Plugin API - added support for settings.globalValue method
|
||||
- Improved: Remove Hide Joplin menu item on Linux and Windows
|
||||
- Improved: Removed OneDrive Dev sync target which was not really useful
|
||||
- Improved: Allow setting note geolocation attributes via API ([#3884](https://github.com/laurent22/joplin/issues/3884))
|
||||
- Improved: Disabled emoji highlighting in editor when emoji plugin is disabled ([#3852](https://github.com/laurent22/joplin/issues/3852) by Rahil Sarvaiya)
|
||||
- Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting ([#3777](https://github.com/laurent22/joplin/issues/3777) by [@shawnaxsom](https://github.com/shawnaxsom))
|
||||
- Fixed: Fixed sidebar performance issue when there are many notebooks or tags ([#3893](https://github.com/laurent22/joplin/issues/3893))
|
||||
- Fixed: Allows toggling external editing off and on again ([#3886](https://github.com/laurent22/joplin/issues/3886))
|
||||
- Fixed: Fixed toggleNoteList and toggleSidebar commands
|
||||
- Fixed: Fixed Toggle Editor button toolip and icon
|
||||
|
||||
## [v1.3.7](https://github.com/laurent22/joplin/releases/tag/v1.3.7) - 2020-10-20T11:35:55Z
|
||||
|
||||
- Improved: Added support for a custom S3 URL ([#3921](https://github.com/laurent22/joplin/issues/3921)) ([#3691](https://github.com/laurent22/joplin/issues/3691) by [@aaron](https://github.com/aaron))
|
||||
- Improved: Import `<strike>`, `<s>` tags (strikethrough) from Evernote ([#3936](https://github.com/laurent22/joplin/issues/3936) by Ian Slinger)
|
||||
- Improved: Simplified and improve command service, and added command palette
|
||||
- Improved: Tray: Exit -> Quit ([#3945](https://github.com/laurent22/joplin/issues/3945) by Helmut K. C. Tessarek)
|
||||
- Fixed: Trying to fix sidebar performance issue when there are many notebooks or tags ([#3893](https://github.com/laurent22/joplin/issues/3893))
|
||||
|
||||
* * *
|
||||
|
||||
- New: Add support for application plugins ([#3257](https://github.com/laurent22/joplin/issues/3257))
|
||||
- New: Added Thunderbird count for desktop client ([#3880](https://github.com/laurent22/joplin/issues/3880) by [@Technik-J](https://github.com/Technik-J))
|
||||
- New: Added support for Menu API for plugins
|
||||
- New: Added support for plugins packaged as JS bundles
|
||||
- Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode ([#3897](https://github.com/laurent22/joplin/issues/3897) by Caleb John)
|
||||
- Improved: Make sidebar item font weight normal (not bold)
|
||||
- Improved: Plugin API - added support for settings.globalValue method
|
||||
- Improved: Remove Hide Joplin menu item on Linux and Windows
|
||||
- Improved: Removed OneDrive Dev sync target which was not really useful
|
||||
- Improved: Allow setting note geolocation attributes via API ([#3884](https://github.com/laurent22/joplin/issues/3884))
|
||||
- Improved: Disabled emoji highlighting in editor when emoji plugin is disabled ([#3852](https://github.com/laurent22/joplin/issues/3852) by Rahil Sarvaiya)
|
||||
- Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting ([#3777](https://github.com/laurent22/joplin/issues/3777) by [@shawnaxsom](https://github.com/shawnaxsom))
|
||||
- Fixed: Allows toggling external editing off and on again ([#3886](https://github.com/laurent22/joplin/issues/3886))
|
||||
- Fixed: Fixed toggleNoteList and toggleSidebar commands
|
||||
- Fixed: Fixed Toggle Editor button toolip and icon
|
||||
|
||||
## [v1.3.5](https://github.com/laurent22/joplin/releases/tag/v1.3.5) - 2020-10-17T14:26:35Z
|
||||
|
||||
- Fixed: Regression: Remove Hide Joplin menu item on Linux too
|
||||
- Fixed: Regression: Editor toolbar was disabled when importing note from MD file ([#3915](https://github.com/laurent22/joplin/issues/3915))
|
||||
- Fixed: Regression: Header links with special characters were no longer working ([#3903](https://github.com/laurent22/joplin/issues/3903))
|
||||
- Fixed: Regression: Importing ENEX as HTML was importing as Markdown ([#3923](https://github.com/laurent22/joplin/issues/3923))
|
||||
- Fixed: Regression - Layout Button Sequence menu items were disabled ([#3899](https://github.com/laurent22/joplin/issues/3899))
|
||||
- Fixed: Regression: Fix export of pluginAssets when exporting to html/pdf ([#3927](https://github.com/laurent22/joplin/issues/3927) by Caleb John)
|
||||
- Fixed: Regression: Fixed check for update
|
||||
- Fixed: Regression: Fixed move to notebook from context menu
|
||||
- Fixed: Regression: Fixed opening links
|
||||
|
||||
* * *
|
||||
|
||||
- New: Add support for application plugins ([#3257](https://github.com/laurent22/joplin/issues/3257))
|
||||
- New: Added Thunderbird count for desktop client ([#3880](https://github.com/laurent22/joplin/issues/3880) by [@Technik-J](https://github.com/Technik-J))
|
||||
- New: Added support for Menu API for plugins
|
||||
- New: Added support for plugins packaged as JS bundles
|
||||
- Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode ([#3897](https://github.com/laurent22/joplin/issues/3897) by Caleb John)
|
||||
- Improved: Make sidebar item font weight normal (not bold)
|
||||
- Improved: Plugin API - added support for settings.globalValue method
|
||||
- Improved: Remove Hide Joplin menu item on Linux and Windows
|
||||
- Improved: Removed OneDrive Dev sync target which was not really useful
|
||||
- Improved: Allow setting note geolocation attributes via API ([#3884](https://github.com/laurent22/joplin/issues/3884))
|
||||
- Improved: Disabled emoji highlighting in editor when emoji plugin is disabled ([#3852](https://github.com/laurent22/joplin/issues/3852) by Rahil Sarvaiya)
|
||||
- Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting ([#3777](https://github.com/laurent22/joplin/issues/3777) by [@shawnaxsom](https://github.com/shawnaxsom))
|
||||
- Fixed: Allows toggling external editing off and on again ([#3886](https://github.com/laurent22/joplin/issues/3886))
|
||||
- Fixed: Fixed toggleNoteList and toggleSidebar commands
|
||||
- Fixed: Fixed Toggle Editor button toolip and icon
|
||||
|
||||
## [v1.3.3](https://github.com/laurent22/joplin/releases/tag/v1.3.3) - 2020-10-17T10:56:57Z
|
||||
|
||||
- Fixed: Regression: Remove Hide Joplin menu item on Linux too
|
||||
- Fixed: Regression: Editor toolbar was disabled when importing note from MD file ([#3915](https://github.com/laurent22/joplin/issues/3915))
|
||||
- Fixed: Regression: Header links with special characters were no longer working ([#3903](https://github.com/laurent22/joplin/issues/3903))
|
||||
- Fixed: Regression: Importing ENEX as HTML was importing as Markdown ([#3923](https://github.com/laurent22/joplin/issues/3923))
|
||||
- Fixed: Regression - Layout Button Sequence menu items were disabled ([#3899](https://github.com/laurent22/joplin/issues/3899))
|
||||
- Fixed: Regression: Fix export of pluginAssets when exporting to html/pdf ([#3927](https://github.com/laurent22/joplin/issues/3927) by Caleb John)
|
||||
- Fixed: Regression: Fixed check for update
|
||||
- Fixed: Regression: Fixed move to notebook from context menu
|
||||
|
||||
* * *
|
||||
|
||||
- New: Add support for application plugins ([#3257](https://github.com/laurent22/joplin/issues/3257))
|
||||
- New: Added Thunderbird count for desktop client ([#3880](https://github.com/laurent22/joplin/issues/3880) by [@Technik-J](https://github.com/Technik-J))
|
||||
- New: Added support for Menu API for plugins
|
||||
- New: Added support for plugins packaged as JS bundles
|
||||
- Improved: Actually enter insert mode after pressing o/O in CodeMirror vim mode ([#3897](https://github.com/laurent22/joplin/issues/3897) by Caleb John)
|
||||
- Improved: Make sidebar item font weight normal (not bold)
|
||||
- Improved: Plugin API - added support for settings.globalValue method
|
||||
- Improved: Remove Hide Joplin menu item on Linux and Windows
|
||||
- Improved: Removed OneDrive Dev sync target which was not really useful
|
||||
- Improved: Allow setting note geolocation attributes via API ([#3884](https://github.com/laurent22/joplin/issues/3884))
|
||||
- Improved: Disabled emoji highlighting in editor when emoji plugin is disabled ([#3852](https://github.com/laurent22/joplin/issues/3852) by Rahil Sarvaiya)
|
||||
- Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting ([#3777](https://github.com/laurent22/joplin/issues/3777) by [@shawnaxsom](https://github.com/shawnaxsom))
|
||||
- Fixed: Allows toggling external editing off and on again ([#3886](https://github.com/laurent22/joplin/issues/3886))
|
||||
- Fixed: Fixed toggleNoteList and toggleSidebar commands
|
||||
- Fixed: Fixed Toggle Editor button toolip and icon
|
||||
|
||||
## [v1.3.2](https://github.com/laurent22/joplin/releases/tag/v1.3.2) - 2020-10-11T20:39:49Z
|
||||
|
||||
- Fixed: Regression: Context menu in sidebar could point to wrong item
|
||||
|
||||
* * *
|
||||
|
||||
- New: Add support for application plugins ([#3257](https://github.com/laurent22/joplin/issues/3257))
|
||||
- Improved: Allow setting note geolocation attributes via API ([#3884](https://github.com/laurent22/joplin/issues/3884))
|
||||
- Improved: Disabled emoji highlighting in editor when emoji plugin is disabled ([#3852](https://github.com/laurent22/joplin/issues/3852) by Rahil Sarvaiya)
|
||||
- Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting ([#3777](https://github.com/laurent22/joplin/issues/3777) by [@shawnaxsom](https://github.com/shawnaxsom))
|
||||
- Fixed: Allows toggling external editing off and on again ([#3886](https://github.com/laurent22/joplin/issues/3886))
|
||||
|
||||
## [v1.3.1](https://github.com/laurent22/joplin/releases/tag/v1.3.1) - 2020-10-11T15:10:18Z
|
||||
|
||||
- New: Add support for application plugins ([#3257](https://github.com/laurent22/joplin/issues/3257))
|
||||
- Improved: Allow setting note geolocation attributes via API ([#3884](https://github.com/laurent22/joplin/issues/3884))
|
||||
- Improved: Disabled emoji highlighting in editor when emoji plugin is disabled ([#3852](https://github.com/laurent22/joplin/issues/3852) by Rahil Sarvaiya)
|
||||
- Improved: Sort search results by average of multiple criteria, including 'Sort notes by' field setting ([#3777](https://github.com/laurent22/joplin/issues/3777) by [@shawnaxsom](https://github.com/shawnaxsom))
|
||||
- Fixed: Allows toggling external editing off and on again ([#3886](https://github.com/laurent22/joplin/issues/3886))
|
||||
|
||||
## [v1.2.6](https://github.com/laurent22/joplin/releases/tag/v1.2.6) - 2020-10-09T13:56:59Z
|
||||
|
||||
- New: Updated UI ([#3586](https://github.com/laurent22/joplin/issues/3586))
|
||||
|
251
readme/stats.md
251
readme/stats.md
@ -2,159 +2,172 @@
|
||||
|
||||
Name | Value
|
||||
--- | ---
|
||||
Total Windows downloads | 1,067,900
|
||||
Total macOs downloads | 415,155
|
||||
Total Linux downloads | 299,762
|
||||
Total Windows downloads | 1,119,966
|
||||
Total macOs downloads | 436,003
|
||||
Total Linux downloads | 318,326
|
||||
Windows % | 60%
|
||||
macOS % | 23%
|
||||
Linux % | 17%
|
||||
|
||||
Version | Date | Windows | macOS | Linux | Total
|
||||
--- | --- | --- | --- | --- | ---
|
||||
[v1.2.6](https://github.com/laurent22/joplin/releases/tag/v1.2.6) | 2020-10-09T13:56:59Z | 5 | 1 | 0 | 6
|
||||
[v1.2.4](https://github.com/laurent22/joplin/releases/tag/v1.2.4) | 2020-09-30T07:34:29Z | 750 | 208 | 761 | 1,719
|
||||
[v1.2.3](https://github.com/laurent22/joplin/releases/tag/v1.2.3) | 2020-09-29T15:13:02Z | 159 | 39 | 60 | 258
|
||||
[v1.2.2](https://github.com/laurent22/joplin/releases/tag/v1.2.2) | 2020-09-22T20:31:55Z | 717 | 175 | 619 | 1,511
|
||||
[v1.1.4](https://github.com/laurent22/joplin/releases/tag/v1.1.4) | 2020-09-21T11:20:09Z | 26,825 | 13,288 | 7,639 | 47,752
|
||||
[v1.1.3](https://github.com/laurent22/joplin/releases/tag/v1.1.3) | 2020-09-17T10:30:37Z | 533 | 128 | 441 | 1,102
|
||||
[v1.1.2](https://github.com/laurent22/joplin/releases/tag/v1.1.2) | 2020-09-15T12:58:38Z | 335 | 94 | 237 | 666
|
||||
[v1.1.1](https://github.com/laurent22/joplin/releases/tag/v1.1.1) | 2020-09-11T23:32:47Z | 470 | 173 | 332 | 975
|
||||
[v1.0.245](https://github.com/laurent22/joplin/releases/tag/v1.0.245) | 2020-09-09T12:56:10Z | 20,669 | 9,907 | 5,603 | 36,179
|
||||
[v1.0.242](https://github.com/laurent22/joplin/releases/tag/v1.0.242) | 2020-09-04T22:00:34Z | 12,272 | 6,375 | 2,999 | 21,646
|
||||
[v1.0.241](https://github.com/laurent22/joplin/releases/tag/v1.0.241) | 2020-09-04T18:06:00Z | 22,836 | 5,609 | 4,892 | 33,337
|
||||
[v1.0.239](https://github.com/laurent22/joplin/releases/tag/v1.0.239) | 2020-09-01T21:56:36Z | 555 | 207 | 391 | 1,153
|
||||
[v1.0.237](https://github.com/laurent22/joplin/releases/tag/v1.0.237) | 2020-08-29T15:38:04Z | 567 | 888 | 331 | 1,786
|
||||
[v1.0.236](https://github.com/laurent22/joplin/releases/tag/v1.0.236) | 2020-08-28T09:16:54Z | 294 | 92 | 97 | 483
|
||||
[v1.0.235](https://github.com/laurent22/joplin/releases/tag/v1.0.235) | 2020-08-18T22:08:01Z | 1,617 | 471 | 912 | 3,000
|
||||
[v1.0.234](https://github.com/laurent22/joplin/releases/tag/v1.0.234) | 2020-08-17T23:13:02Z | 507 | 107 | 92 | 706
|
||||
[v1.0.233](https://github.com/laurent22/joplin/releases/tag/v1.0.233) | 2020-08-01T14:51:15Z | 41,907 | 18,121 | 12,336 | 72,364
|
||||
[v1.0.232](https://github.com/laurent22/joplin/releases/tag/v1.0.232) | 2020-07-28T22:34:40Z | 631 | 204 | 171 | 1,006
|
||||
[v1.0.227](https://github.com/laurent22/joplin/releases/tag/v1.0.227) | 2020-07-07T20:44:54Z | 40,069 | 15,223 | 9,599 | 64,891
|
||||
[v1.0.226](https://github.com/laurent22/joplin/releases/tag/v1.0.226) | 2020-07-04T10:21:26Z | 4,847 | 2,218 | 680 | 7,745
|
||||
[v1.0.224](https://github.com/laurent22/joplin/releases/tag/v1.0.224) | 2020-06-20T22:26:08Z | 24,678 | 10,958 | 5,994 | 41,630
|
||||
[v1.0.223](https://github.com/laurent22/joplin/releases/tag/v1.0.223) | 2020-06-20T11:51:27Z | 166 | 94 | 71 | 331
|
||||
[v1.0.221](https://github.com/laurent22/joplin/releases/tag/v1.0.221) | 2020-06-20T01:44:20Z | 833 | 185 | 201 | 1,219
|
||||
[v1.0.220](https://github.com/laurent22/joplin/releases/tag/v1.0.220) | 2020-06-13T18:26:22Z | 31,468 | 9,879 | 6,404 | 47,751
|
||||
[v1.0.218](https://github.com/laurent22/joplin/releases/tag/v1.0.218) | 2020-06-07T10:43:34Z | 14,452 | 6,940 | 2,949 | 24,341
|
||||
[v1.0.217](https://github.com/laurent22/joplin/releases/tag/v1.0.217) | 2020-06-06T15:17:27Z | 213 | 82 | 51 | 346
|
||||
[v1.0.216](https://github.com/laurent22/joplin/releases/tag/v1.0.216) | 2020-05-24T14:21:01Z | 36,093 | 14,211 | 10,166 | 60,470
|
||||
[v1.0.214](https://github.com/laurent22/joplin/releases/tag/v1.0.214) | 2020-05-21T17:15:15Z | 6,395 | 3,442 | 756 | 10,593
|
||||
[v1.0.212](https://github.com/laurent22/joplin/releases/tag/v1.0.212) | 2020-05-21T07:48:39Z | 199 | 60 | 43 | 302
|
||||
[v1.0.211](https://github.com/laurent22/joplin/releases/tag/v1.0.211) | 2020-05-20T08:59:16Z | 291 | 125 | 82 | 498
|
||||
[v1.0.209](https://github.com/laurent22/joplin/releases/tag/v1.0.209) | 2020-05-17T18:32:51Z | 1,385 | 827 | 144 | 2,356
|
||||
[v1.0.207](https://github.com/laurent22/joplin/releases/tag/v1.0.207) | 2020-05-10T16:37:35Z | 1,175 | 257 | 1,010 | 2,442
|
||||
[v1.0.201](https://github.com/laurent22/joplin/releases/tag/v1.0.201) | 2020-04-15T22:55:13Z | 52,065 | 20,021 | 18,163 | 90,249
|
||||
[v1.0.200](https://github.com/laurent22/joplin/releases/tag/v1.0.200) | 2020-04-12T12:17:46Z | 9,539 | 4,883 | 1,897 | 16,319
|
||||
[v1.0.199](https://github.com/laurent22/joplin/releases/tag/v1.0.199) | 2020-04-10T18:41:58Z | 19,219 | 5,876 | 3,780 | 28,875
|
||||
[v1.0.197](https://github.com/laurent22/joplin/releases/tag/v1.0.197) | 2020-03-30T17:21:22Z | 22,033 | 9,504 | 5,591 | 37,128
|
||||
[v1.0.195](https://github.com/laurent22/joplin/releases/tag/v1.0.195) | 2020-03-22T19:56:12Z | 18,853 | 7,936 | 4,499 | 31,288
|
||||
[v1.0.194](https://github.com/laurent22/joplin/releases/tag/v1.0.194) | 2020-03-14T00:00:32Z | 1,269 | 1,367 | 496 | 3,132
|
||||
[v1.0.193](https://github.com/laurent22/joplin/releases/tag/v1.0.193) | 2020-03-08T08:58:53Z | 28,581 | 10,891 | 7,348 | 46,820
|
||||
[v1.0.192](https://github.com/laurent22/joplin/releases/tag/v1.0.192) | 2020-03-06T23:27:52Z | 459 | 113 | 84 | 656
|
||||
[v1.0.190](https://github.com/laurent22/joplin/releases/tag/v1.0.190) | 2020-03-06T01:22:22Z | 358 | 81 | 81 | 520
|
||||
[v1.0.189](https://github.com/laurent22/joplin/releases/tag/v1.0.189) | 2020-03-04T17:27:15Z | 333 | 89 | 88 | 510
|
||||
[v1.0.187](https://github.com/laurent22/joplin/releases/tag/v1.0.187) | 2020-03-01T12:31:06Z | 913 | 224 | 260 | 1,397
|
||||
[v1.0.179](https://github.com/laurent22/joplin/releases/tag/v1.0.179) | 2020-01-24T22:42:41Z | 70,928 | 28,453 | 22,483 | 121,864
|
||||
[v1.0.178](https://github.com/laurent22/joplin/releases/tag/v1.0.178) | 2020-01-20T19:06:45Z | 17,523 | 5,954 | 2,578 | 26,055
|
||||
[v1.0.177](https://github.com/laurent22/joplin/releases/tag/v1.0.177) | 2019-12-30T14:40:40Z | 1,932 | 429 | 648 | 3,009
|
||||
[v1.0.176](https://github.com/laurent22/joplin/releases/tag/v1.0.176) | 2019-12-14T10:36:44Z | 3,115 | 2,527 | 463 | 6,105
|
||||
[v1.0.175](https://github.com/laurent22/joplin/releases/tag/v1.0.175) | 2019-12-08T11:48:47Z | 71,877 | 16,846 | 16,462 | 105,185
|
||||
[v1.0.174](https://github.com/laurent22/joplin/releases/tag/v1.0.174) | 2019-11-12T18:20:58Z | 30,385 | 11,674 | 8,216 | 50,275
|
||||
[v1.0.173](https://github.com/laurent22/joplin/releases/tag/v1.0.173) | 2019-11-11T08:33:35Z | 5,054 | 2,070 | 738 | 7,862
|
||||
[v1.0.170](https://github.com/laurent22/joplin/releases/tag/v1.0.170) | 2019-10-13T22:13:04Z | 27,367 | 8,734 | 7,667 | 43,768
|
||||
[v1.0.169](https://github.com/laurent22/joplin/releases/tag/v1.0.169) | 2019-09-27T18:35:13Z | 17,078 | 5,913 | 3,750 | 26,741
|
||||
[v1.0.168](https://github.com/laurent22/joplin/releases/tag/v1.0.168) | 2019-09-25T21:21:38Z | 5,322 | 2,264 | 714 | 8,300
|
||||
[v1.0.167](https://github.com/laurent22/joplin/releases/tag/v1.0.167) | 2019-09-10T08:48:37Z | 16,777 | 5,696 | 3,700 | 26,173
|
||||
[v1.3.18](https://github.com/laurent22/joplin/releases/tag/v1.3.18) | 2020-11-06T12:07:02Z | 806 | 317 | 320 | 1,443
|
||||
[v1.3.17](https://github.com/laurent22/joplin/releases/tag/v1.3.17) | 2020-11-06T11:35:15Z | 22 | 5 | 9 | 36
|
||||
[v1.4.6](https://github.com/laurent22/joplin/releases/tag/v1.4.6) | 2020-11-05T22:44:12Z | 196 | 60 | 36 | 292
|
||||
[v1.3.15](https://github.com/laurent22/joplin/releases/tag/v1.3.15) | 2020-11-04T12:22:50Z | 2,065 | 1,224 | 799 | 4,088
|
||||
[v1.3.11](https://github.com/laurent22/joplin/releases/tag/v1.3.11) | 2020-10-31T13:22:20Z | 680 | 166 | 466 | 1,312
|
||||
[v1.3.10](https://github.com/laurent22/joplin/releases/tag/v1.3.10) | 2020-10-29T13:27:14Z | 331 | 99 | 301 | 731
|
||||
[v1.3.9](https://github.com/laurent22/joplin/releases/tag/v1.3.9) | 2020-10-23T16:04:26Z | 795 | 221 | 611 | 1,627
|
||||
[v1.3.8](https://github.com/laurent22/joplin/releases/tag/v1.3.8) | 2020-10-21T18:46:29Z | 468 | 91 | 315 | 874
|
||||
[v1.3.7](https://github.com/laurent22/joplin/releases/tag/v1.3.7) | 2020-10-20T11:35:55Z | 252 | 63 | 328 | 643
|
||||
[v1.3.5](https://github.com/laurent22/joplin/releases/tag/v1.3.5) | 2020-10-17T14:26:35Z | 427 | 114 | 393 | 934
|
||||
[v1.3.3](https://github.com/laurent22/joplin/releases/tag/v1.3.3) | 2020-10-17T10:56:57Z | 96 | 23 | 21 | 140
|
||||
[v1.3.2](https://github.com/laurent22/joplin/releases/tag/v1.3.2) | 2020-10-11T20:39:49Z | 642 | 161 | 550 | 1,353
|
||||
[v1.3.1](https://github.com/laurent22/joplin/releases/tag/v1.3.1) | 2020-10-11T15:10:18Z | 62 | 30 | 31 | 123
|
||||
[v1.2.6](https://github.com/laurent22/joplin/releases/tag/v1.2.6) | 2020-10-09T13:56:59Z | 43,075 | 17,608 | 13,970 | 74,653
|
||||
[v1.2.4](https://github.com/laurent22/joplin/releases/tag/v1.2.4) | 2020-09-30T07:34:29Z | 771 | 229 | 785 | 1,785
|
||||
[v1.2.3](https://github.com/laurent22/joplin/releases/tag/v1.2.3) | 2020-09-29T15:13:02Z | 177 | 50 | 68 | 295
|
||||
[v1.2.2](https://github.com/laurent22/joplin/releases/tag/v1.2.2) | 2020-09-22T20:31:55Z | 736 | 188 | 628 | 1,552
|
||||
[v1.1.4](https://github.com/laurent22/joplin/releases/tag/v1.1.4) | 2020-09-21T11:20:09Z | 27,381 | 13,453 | 7,690 | 48,524
|
||||
[v1.1.3](https://github.com/laurent22/joplin/releases/tag/v1.1.3) | 2020-09-17T10:30:37Z | 543 | 137 | 454 | 1,134
|
||||
[v1.1.2](https://github.com/laurent22/joplin/releases/tag/v1.1.2) | 2020-09-15T12:58:38Z | 343 | 102 | 241 | 686
|
||||
[v1.1.1](https://github.com/laurent22/joplin/releases/tag/v1.1.1) | 2020-09-11T23:32:47Z | 480 | 182 | 336 | 998
|
||||
[v1.0.245](https://github.com/laurent22/joplin/releases/tag/v1.0.245) | 2020-09-09T12:56:10Z | 20,756 | 9,956 | 5,615 | 36,327
|
||||
[v1.0.242](https://github.com/laurent22/joplin/releases/tag/v1.0.242) | 2020-09-04T22:00:34Z | 12,297 | 6,392 | 3,003 | 21,692
|
||||
[v1.0.241](https://github.com/laurent22/joplin/releases/tag/v1.0.241) | 2020-09-04T18:06:00Z | 23,061 | 5,683 | 4,959 | 33,703
|
||||
[v1.0.239](https://github.com/laurent22/joplin/releases/tag/v1.0.239) | 2020-09-01T21:56:36Z | 562 | 213 | 394 | 1,169
|
||||
[v1.0.237](https://github.com/laurent22/joplin/releases/tag/v1.0.237) | 2020-08-29T15:38:04Z | 574 | 898 | 333 | 1,805
|
||||
[v1.0.236](https://github.com/laurent22/joplin/releases/tag/v1.0.236) | 2020-08-28T09:16:54Z | 300 | 98 | 100 | 498
|
||||
[v1.0.235](https://github.com/laurent22/joplin/releases/tag/v1.0.235) | 2020-08-18T22:08:01Z | 1,624 | 477 | 916 | 3,017
|
||||
[v1.0.234](https://github.com/laurent22/joplin/releases/tag/v1.0.234) | 2020-08-17T23:13:02Z | 515 | 113 | 96 | 724
|
||||
[v1.0.233](https://github.com/laurent22/joplin/releases/tag/v1.0.233) | 2020-08-01T14:51:15Z | 42,141 | 18,142 | 12,342 | 72,625
|
||||
[v1.0.232](https://github.com/laurent22/joplin/releases/tag/v1.0.232) | 2020-07-28T22:34:40Z | 637 | 210 | 174 | 1,021
|
||||
[v1.0.227](https://github.com/laurent22/joplin/releases/tag/v1.0.227) | 2020-07-07T20:44:54Z | 40,124 | 15,233 | 9,610 | 64,967
|
||||
[v1.0.226](https://github.com/laurent22/joplin/releases/tag/v1.0.226) | 2020-07-04T10:21:26Z | 4,862 | 2,228 | 684 | 7,774
|
||||
[v1.0.224](https://github.com/laurent22/joplin/releases/tag/v1.0.224) | 2020-06-20T22:26:08Z | 24,700 | 10,974 | 5,999 | 41,673
|
||||
[v1.0.223](https://github.com/laurent22/joplin/releases/tag/v1.0.223) | 2020-06-20T11:51:27Z | 172 | 100 | 74 | 346
|
||||
[v1.0.221](https://github.com/laurent22/joplin/releases/tag/v1.0.221) | 2020-06-20T01:44:20Z | 840 | 191 | 204 | 1,235
|
||||
[v1.0.220](https://github.com/laurent22/joplin/releases/tag/v1.0.220) | 2020-06-13T18:26:22Z | 31,501 | 9,886 | 6,407 | 47,794
|
||||
[v1.0.218](https://github.com/laurent22/joplin/releases/tag/v1.0.218) | 2020-06-07T10:43:34Z | 14,477 | 6,946 | 2,950 | 24,373
|
||||
[v1.0.217](https://github.com/laurent22/joplin/releases/tag/v1.0.217) | 2020-06-06T15:17:27Z | 216 | 84 | 52 | 352
|
||||
[v1.0.216](https://github.com/laurent22/joplin/releases/tag/v1.0.216) | 2020-05-24T14:21:01Z | 36,286 | 14,228 | 10,169 | 60,683
|
||||
[v1.0.214](https://github.com/laurent22/joplin/releases/tag/v1.0.214) | 2020-05-21T17:15:15Z | 6,416 | 3,450 | 757 | 10,623
|
||||
[v1.0.212](https://github.com/laurent22/joplin/releases/tag/v1.0.212) | 2020-05-21T07:48:39Z | 203 | 62 | 44 | 309
|
||||
[v1.0.211](https://github.com/laurent22/joplin/releases/tag/v1.0.211) | 2020-05-20T08:59:16Z | 294 | 127 | 83 | 504
|
||||
[v1.0.209](https://github.com/laurent22/joplin/releases/tag/v1.0.209) | 2020-05-17T18:32:51Z | 1,387 | 833 | 145 | 2,365
|
||||
[v1.0.207](https://github.com/laurent22/joplin/releases/tag/v1.0.207) | 2020-05-10T16:37:35Z | 1,181 | 259 | 1,011 | 2,451
|
||||
[v1.0.201](https://github.com/laurent22/joplin/releases/tag/v1.0.201) | 2020-04-15T22:55:13Z | 52,297 | 20,030 | 18,166 | 90,493
|
||||
[v1.0.200](https://github.com/laurent22/joplin/releases/tag/v1.0.200) | 2020-04-12T12:17:46Z | 9,543 | 4,885 | 1,898 | 16,326
|
||||
[v1.0.199](https://github.com/laurent22/joplin/releases/tag/v1.0.199) | 2020-04-10T18:41:58Z | 19,234 | 5,878 | 3,783 | 28,895
|
||||
[v1.0.197](https://github.com/laurent22/joplin/releases/tag/v1.0.197) | 2020-03-30T17:21:22Z | 22,056 | 9,506 | 5,606 | 37,168
|
||||
[v1.0.195](https://github.com/laurent22/joplin/releases/tag/v1.0.195) | 2020-03-22T19:56:12Z | 18,859 | 7,939 | 4,501 | 31,299
|
||||
[v1.0.194](https://github.com/laurent22/joplin/releases/tag/v1.0.194) | 2020-03-14T00:00:32Z | 1,271 | 1,369 | 498 | 3,138
|
||||
[v1.0.193](https://github.com/laurent22/joplin/releases/tag/v1.0.193) | 2020-03-08T08:58:53Z | 28,592 | 10,894 | 7,355 | 46,841
|
||||
[v1.0.192](https://github.com/laurent22/joplin/releases/tag/v1.0.192) | 2020-03-06T23:27:52Z | 464 | 116 | 85 | 665
|
||||
[v1.0.190](https://github.com/laurent22/joplin/releases/tag/v1.0.190) | 2020-03-06T01:22:22Z | 363 | 83 | 82 | 528
|
||||
[v1.0.189](https://github.com/laurent22/joplin/releases/tag/v1.0.189) | 2020-03-04T17:27:15Z | 335 | 90 | 88 | 513
|
||||
[v1.0.187](https://github.com/laurent22/joplin/releases/tag/v1.0.187) | 2020-03-01T12:31:06Z | 913 | 224 | 261 | 1,398
|
||||
[v1.0.179](https://github.com/laurent22/joplin/releases/tag/v1.0.179) | 2020-01-24T22:42:41Z | 70,935 | 28,463 | 22,489 | 121,887
|
||||
[v1.0.178](https://github.com/laurent22/joplin/releases/tag/v1.0.178) | 2020-01-20T19:06:45Z | 17,525 | 5,955 | 2,578 | 26,058
|
||||
[v1.0.177](https://github.com/laurent22/joplin/releases/tag/v1.0.177) | 2019-12-30T14:40:40Z | 1,933 | 430 | 656 | 3,019
|
||||
[v1.0.176](https://github.com/laurent22/joplin/releases/tag/v1.0.176) | 2019-12-14T10:36:44Z | 3,116 | 2,528 | 463 | 6,107
|
||||
[v1.0.175](https://github.com/laurent22/joplin/releases/tag/v1.0.175) | 2019-12-08T11:48:47Z | 71,963 | 16,855 | 16,474 | 105,292
|
||||
[v1.0.174](https://github.com/laurent22/joplin/releases/tag/v1.0.174) | 2019-11-12T18:20:58Z | 30,387 | 11,684 | 8,216 | 50,287
|
||||
[v1.0.173](https://github.com/laurent22/joplin/releases/tag/v1.0.173) | 2019-11-11T08:33:35Z | 5,057 | 2,070 | 739 | 7,866
|
||||
[v1.0.170](https://github.com/laurent22/joplin/releases/tag/v1.0.170) | 2019-10-13T22:13:04Z | 27,368 | 8,735 | 7,668 | 43,771
|
||||
[v1.0.169](https://github.com/laurent22/joplin/releases/tag/v1.0.169) | 2019-09-27T18:35:13Z | 17,080 | 5,914 | 3,750 | 26,744
|
||||
[v1.0.168](https://github.com/laurent22/joplin/releases/tag/v1.0.168) | 2019-09-25T21:21:38Z | 5,322 | 2,265 | 714 | 8,301
|
||||
[v1.0.167](https://github.com/laurent22/joplin/releases/tag/v1.0.167) | 2019-09-10T08:48:37Z | 16,777 | 5,698 | 3,700 | 26,175
|
||||
[v1.0.166](https://github.com/laurent22/joplin/releases/tag/v1.0.166) | 2019-09-09T17:35:54Z | 1,950 | 556 | 234 | 2,740
|
||||
[v1.0.165](https://github.com/laurent22/joplin/releases/tag/v1.0.165) | 2019-08-14T21:46:29Z | 18,872 | 6,967 | 5,459 | 31,298
|
||||
[v1.0.161](https://github.com/laurent22/joplin/releases/tag/v1.0.161) | 2019-07-13T18:30:00Z | 19,270 | 6,348 | 4,131 | 29,749
|
||||
[v1.0.160](https://github.com/laurent22/joplin/releases/tag/v1.0.160) | 2019-06-15T00:21:40Z | 30,425 | 7,738 | 8,098 | 46,261
|
||||
[v1.0.159](https://github.com/laurent22/joplin/releases/tag/v1.0.159) | 2019-06-08T00:00:19Z | 5,188 | 2,173 | 1,104 | 8,465
|
||||
[v1.0.165](https://github.com/laurent22/joplin/releases/tag/v1.0.165) | 2019-08-14T21:46:29Z | 18,875 | 6,967 | 5,459 | 31,301
|
||||
[v1.0.161](https://github.com/laurent22/joplin/releases/tag/v1.0.161) | 2019-07-13T18:30:00Z | 19,271 | 6,348 | 4,131 | 29,750
|
||||
[v1.0.160](https://github.com/laurent22/joplin/releases/tag/v1.0.160) | 2019-06-15T00:21:40Z | 30,450 | 7,738 | 8,098 | 46,286
|
||||
[v1.0.159](https://github.com/laurent22/joplin/releases/tag/v1.0.159) | 2019-06-08T00:00:19Z | 5,188 | 2,174 | 1,104 | 8,466
|
||||
[v1.0.158](https://github.com/laurent22/joplin/releases/tag/v1.0.158) | 2019-05-27T19:01:18Z | 9,808 | 3,533 | 1,934 | 15,275
|
||||
[v1.0.157](https://github.com/laurent22/joplin/releases/tag/v1.0.157) | 2019-05-26T17:55:53Z | 2,173 | 840 | 289 | 3,302
|
||||
[v1.0.153](https://github.com/laurent22/joplin/releases/tag/v1.0.153) | 2019-05-15T06:27:29Z | 843 | 96 | 103 | 1,042
|
||||
[v1.0.152](https://github.com/laurent22/joplin/releases/tag/v1.0.152) | 2019-05-13T09:08:07Z | 13,859 | 4,421 | 4,059 | 22,339
|
||||
[v1.0.153](https://github.com/laurent22/joplin/releases/tag/v1.0.153) | 2019-05-15T06:27:29Z | 844 | 97 | 104 | 1,045
|
||||
[v1.0.152](https://github.com/laurent22/joplin/releases/tag/v1.0.152) | 2019-05-13T09:08:07Z | 13,859 | 4,423 | 4,059 | 22,341
|
||||
[v1.0.151](https://github.com/laurent22/joplin/releases/tag/v1.0.151) | 2019-05-12T15:14:32Z | 1,948 | 529 | 955 | 3,432
|
||||
[v1.0.150](https://github.com/laurent22/joplin/releases/tag/v1.0.150) | 2019-05-12T11:27:48Z | 415 | 128 | 66 | 609
|
||||
[v1.0.148](https://github.com/laurent22/joplin/releases/tag/v1.0.148) | 2019-05-08T19:12:24Z | 125 | 51 | 94 | 270
|
||||
[v1.0.145](https://github.com/laurent22/joplin/releases/tag/v1.0.145) | 2019-05-03T09:16:53Z | 6,996 | 2,857 | 1,434 | 11,287
|
||||
[v1.0.143](https://github.com/laurent22/joplin/releases/tag/v1.0.143) | 2019-04-22T10:51:38Z | 11,909 | 3,546 | 2,776 | 18,231
|
||||
[v1.0.142](https://github.com/laurent22/joplin/releases/tag/v1.0.142) | 2019-04-02T16:44:51Z | 14,645 | 4,557 | 4,724 | 23,926
|
||||
[v1.0.140](https://github.com/laurent22/joplin/releases/tag/v1.0.140) | 2019-03-10T20:59:58Z | 13,619 | 4,165 | 3,161 | 20,945
|
||||
[v1.0.139](https://github.com/laurent22/joplin/releases/tag/v1.0.139) | 2019-03-09T10:06:48Z | 117 | 56 | 43 | 216
|
||||
[v1.0.138](https://github.com/laurent22/joplin/releases/tag/v1.0.138) | 2019-03-03T17:23:00Z | 141 | 82 | 82 | 305
|
||||
[v1.0.150](https://github.com/laurent22/joplin/releases/tag/v1.0.150) | 2019-05-12T11:27:48Z | 417 | 128 | 66 | 611
|
||||
[v1.0.148](https://github.com/laurent22/joplin/releases/tag/v1.0.148) | 2019-05-08T19:12:24Z | 127 | 52 | 94 | 273
|
||||
[v1.0.145](https://github.com/laurent22/joplin/releases/tag/v1.0.145) | 2019-05-03T09:16:53Z | 6,998 | 2,857 | 1,434 | 11,289
|
||||
[v1.0.143](https://github.com/laurent22/joplin/releases/tag/v1.0.143) | 2019-04-22T10:51:38Z | 11,910 | 3,546 | 2,776 | 18,232
|
||||
[v1.0.142](https://github.com/laurent22/joplin/releases/tag/v1.0.142) | 2019-04-02T16:44:51Z | 14,647 | 4,557 | 4,724 | 23,928
|
||||
[v1.0.140](https://github.com/laurent22/joplin/releases/tag/v1.0.140) | 2019-03-10T20:59:58Z | 13,621 | 4,165 | 3,172 | 20,958
|
||||
[v1.0.139](https://github.com/laurent22/joplin/releases/tag/v1.0.139) | 2019-03-09T10:06:48Z | 117 | 57 | 43 | 217
|
||||
[v1.0.138](https://github.com/laurent22/joplin/releases/tag/v1.0.138) | 2019-03-03T17:23:00Z | 143 | 82 | 82 | 307
|
||||
[v1.0.137](https://github.com/laurent22/joplin/releases/tag/v1.0.137) | 2019-03-03T01:12:51Z | 584 | 54 | 81 | 719
|
||||
[v1.0.135](https://github.com/laurent22/joplin/releases/tag/v1.0.135) | 2019-02-27T23:36:57Z | 12,481 | 3,952 | 4,071 | 20,504
|
||||
[v1.0.134](https://github.com/laurent22/joplin/releases/tag/v1.0.134) | 2019-02-27T10:21:44Z | 1,461 | 562 | 217 | 2,240
|
||||
[v1.0.135](https://github.com/laurent22/joplin/releases/tag/v1.0.135) | 2019-02-27T23:36:57Z | 12,483 | 3,952 | 4,071 | 20,506
|
||||
[v1.0.134](https://github.com/laurent22/joplin/releases/tag/v1.0.134) | 2019-02-27T10:21:44Z | 1,462 | 563 | 217 | 2,242
|
||||
[v1.0.132](https://github.com/laurent22/joplin/releases/tag/v1.0.132) | 2019-02-26T23:02:05Z | 1,081 | 447 | 93 | 1,621
|
||||
[v1.0.127](https://github.com/laurent22/joplin/releases/tag/v1.0.127) | 2019-02-14T23:12:48Z | 9,727 | 3,164 | 2,927 | 15,818
|
||||
[v1.0.126](https://github.com/laurent22/joplin/releases/tag/v1.0.126) | 2019-02-09T19:46:16Z | 926 | 65 | 115 | 1,106
|
||||
[v1.0.125](https://github.com/laurent22/joplin/releases/tag/v1.0.125) | 2019-01-26T18:14:33Z | 10,243 | 3,551 | 1,700 | 15,494
|
||||
[v1.0.120](https://github.com/laurent22/joplin/releases/tag/v1.0.120) | 2019-01-10T21:42:53Z | 15,598 | 5,195 | 6,512 | 27,305
|
||||
[v1.0.119](https://github.com/laurent22/joplin/releases/tag/v1.0.119) | 2018-12-18T12:40:22Z | 8,900 | 3,255 | 2,011 | 14,166
|
||||
[v1.0.118](https://github.com/laurent22/joplin/releases/tag/v1.0.118) | 2019-01-11T08:34:13Z | 712 | 242 | 87 | 1,041
|
||||
[v1.0.117](https://github.com/laurent22/joplin/releases/tag/v1.0.117) | 2018-11-24T12:05:24Z | 16,250 | 4,887 | 6,378 | 27,515
|
||||
[v1.0.116](https://github.com/laurent22/joplin/releases/tag/v1.0.116) | 2018-11-20T19:09:24Z | 3,467 | 1,116 | 712 | 5,295
|
||||
[v1.0.127](https://github.com/laurent22/joplin/releases/tag/v1.0.127) | 2019-02-14T23:12:48Z | 9,734 | 3,164 | 2,927 | 15,825
|
||||
[v1.0.126](https://github.com/laurent22/joplin/releases/tag/v1.0.126) | 2019-02-09T19:46:16Z | 926 | 67 | 115 | 1,108
|
||||
[v1.0.125](https://github.com/laurent22/joplin/releases/tag/v1.0.125) | 2019-01-26T18:14:33Z | 10,245 | 3,552 | 1,701 | 15,498
|
||||
[v1.0.120](https://github.com/laurent22/joplin/releases/tag/v1.0.120) | 2019-01-10T21:42:53Z | 15,598 | 5,196 | 6,512 | 27,306
|
||||
[v1.0.119](https://github.com/laurent22/joplin/releases/tag/v1.0.119) | 2018-12-18T12:40:22Z | 8,900 | 3,257 | 2,012 | 14,169
|
||||
[v1.0.118](https://github.com/laurent22/joplin/releases/tag/v1.0.118) | 2019-01-11T08:34:13Z | 712 | 243 | 87 | 1,042
|
||||
[v1.0.117](https://github.com/laurent22/joplin/releases/tag/v1.0.117) | 2018-11-24T12:05:24Z | 16,252 | 4,889 | 6,378 | 27,519
|
||||
[v1.0.116](https://github.com/laurent22/joplin/releases/tag/v1.0.116) | 2018-11-20T19:09:24Z | 3,468 | 1,116 | 712 | 5,296
|
||||
[v1.0.115](https://github.com/laurent22/joplin/releases/tag/v1.0.115) | 2018-11-16T16:52:02Z | 3,652 | 1,298 | 797 | 5,747
|
||||
[v1.0.114](https://github.com/laurent22/joplin/releases/tag/v1.0.114) | 2018-10-24T20:14:10Z | 11,390 | 3,492 | 3,828 | 18,710
|
||||
[v1.0.111](https://github.com/laurent22/joplin/releases/tag/v1.0.111) | 2018-09-30T20:15:09Z | 11,999 | 3,280 | 3,660 | 18,939
|
||||
[v1.0.110](https://github.com/laurent22/joplin/releases/tag/v1.0.110) | 2018-09-29T12:29:21Z | 956 | 404 | 115 | 1,475
|
||||
[v1.0.109](https://github.com/laurent22/joplin/releases/tag/v1.0.109) | 2018-09-27T18:01:41Z | 2,094 | 700 | 326 | 3,120
|
||||
[v1.0.114](https://github.com/laurent22/joplin/releases/tag/v1.0.114) | 2018-10-24T20:14:10Z | 11,391 | 3,492 | 3,828 | 18,711
|
||||
[v1.0.111](https://github.com/laurent22/joplin/releases/tag/v1.0.111) | 2018-09-30T20:15:09Z | 12,006 | 3,285 | 3,660 | 18,951
|
||||
[v1.0.110](https://github.com/laurent22/joplin/releases/tag/v1.0.110) | 2018-09-29T12:29:21Z | 956 | 404 | 116 | 1,476
|
||||
[v1.0.109](https://github.com/laurent22/joplin/releases/tag/v1.0.109) | 2018-09-27T18:01:41Z | 2,096 | 700 | 326 | 3,122
|
||||
[v1.0.108](https://github.com/laurent22/joplin/releases/tag/v1.0.108) | 2018-09-29T18:49:29Z | 25 | 17 | 11 | 53
|
||||
[v1.0.107](https://github.com/laurent22/joplin/releases/tag/v1.0.107) | 2018-09-16T19:51:07Z | 7,145 | 2,132 | 1,705 | 10,982
|
||||
[v1.0.106](https://github.com/laurent22/joplin/releases/tag/v1.0.106) | 2018-09-08T15:23:40Z | 4,552 | 1,453 | 315 | 6,320
|
||||
[v1.0.105](https://github.com/laurent22/joplin/releases/tag/v1.0.105) | 2018-09-05T11:29:36Z | 4,651 | 1,583 | 1,451 | 7,685
|
||||
[v1.0.104](https://github.com/laurent22/joplin/releases/tag/v1.0.104) | 2018-06-28T20:25:36Z | 15,036 | 4,692 | 7,324 | 27,052
|
||||
[v1.0.103](https://github.com/laurent22/joplin/releases/tag/v1.0.103) | 2018-06-21T19:38:13Z | 2,048 | 881 | 678 | 3,607
|
||||
[v1.0.106](https://github.com/laurent22/joplin/releases/tag/v1.0.106) | 2018-09-08T15:23:40Z | 4,553 | 1,453 | 316 | 6,322
|
||||
[v1.0.105](https://github.com/laurent22/joplin/releases/tag/v1.0.105) | 2018-09-05T11:29:36Z | 4,651 | 1,584 | 1,451 | 7,686
|
||||
[v1.0.104](https://github.com/laurent22/joplin/releases/tag/v1.0.104) | 2018-06-28T20:25:36Z | 15,038 | 4,695 | 7,326 | 27,059
|
||||
[v1.0.103](https://github.com/laurent22/joplin/releases/tag/v1.0.103) | 2018-06-21T19:38:13Z | 2,048 | 882 | 678 | 3,608
|
||||
[v1.0.101](https://github.com/laurent22/joplin/releases/tag/v1.0.101) | 2018-06-17T18:35:11Z | 1,304 | 603 | 407 | 2,314
|
||||
[v1.0.100](https://github.com/laurent22/joplin/releases/tag/v1.0.100) | 2018-06-14T17:41:43Z | 875 | 428 | 237 | 1,540
|
||||
[v1.0.99](https://github.com/laurent22/joplin/releases/tag/v1.0.99) | 2018-06-10T13:18:23Z | 1,250 | 592 | 378 | 2,220
|
||||
[v1.0.100](https://github.com/laurent22/joplin/releases/tag/v1.0.100) | 2018-06-14T17:41:43Z | 875 | 429 | 238 | 1,542
|
||||
[v1.0.99](https://github.com/laurent22/joplin/releases/tag/v1.0.99) | 2018-06-10T13:18:23Z | 1,250 | 593 | 378 | 2,221
|
||||
[v1.0.97](https://github.com/laurent22/joplin/releases/tag/v1.0.97) | 2018-06-09T19:23:34Z | 309 | 154 | 59 | 522
|
||||
[v1.0.96](https://github.com/laurent22/joplin/releases/tag/v1.0.96) | 2018-05-26T16:36:39Z | 2,715 | 1,219 | 1,579 | 5,513
|
||||
[v1.0.95](https://github.com/laurent22/joplin/releases/tag/v1.0.95) | 2018-05-25T13:04:30Z | 414 | 214 | 115 | 743
|
||||
[v1.0.94](https://github.com/laurent22/joplin/releases/tag/v1.0.94) | 2018-05-21T20:52:59Z | 1,126 | 580 | 393 | 2,099
|
||||
[v1.0.93](https://github.com/laurent22/joplin/releases/tag/v1.0.93) | 2018-05-14T11:36:01Z | 1,785 | 1,068 | 755 | 3,608
|
||||
[v1.0.96](https://github.com/laurent22/joplin/releases/tag/v1.0.96) | 2018-05-26T16:36:39Z | 2,715 | 1,220 | 1,599 | 5,534
|
||||
[v1.0.95](https://github.com/laurent22/joplin/releases/tag/v1.0.95) | 2018-05-25T13:04:30Z | 414 | 215 | 115 | 744
|
||||
[v1.0.94](https://github.com/laurent22/joplin/releases/tag/v1.0.94) | 2018-05-21T20:52:59Z | 1,128 | 580 | 393 | 2,101
|
||||
[v1.0.93](https://github.com/laurent22/joplin/releases/tag/v1.0.93) | 2018-05-14T11:36:01Z | 1,785 | 1,079 | 755 | 3,619
|
||||
[v1.0.91](https://github.com/laurent22/joplin/releases/tag/v1.0.91) | 2018-05-10T14:48:04Z | 824 | 547 | 303 | 1,674
|
||||
[v1.0.89](https://github.com/laurent22/joplin/releases/tag/v1.0.89) | 2018-05-09T13:05:05Z | 488 | 225 | 107 | 820
|
||||
[v1.0.85](https://github.com/laurent22/joplin/releases/tag/v1.0.85) | 2018-05-01T21:08:24Z | 1,646 | 946 | 627 | 3,219
|
||||
[v1.0.83](https://github.com/laurent22/joplin/releases/tag/v1.0.83) | 2018-04-04T19:43:58Z | 4,803 | 2,528 | 2,655 | 9,986
|
||||
[v1.0.82](https://github.com/laurent22/joplin/releases/tag/v1.0.82) | 2018-03-31T19:16:31Z | 692 | 399 | 119 | 1,210
|
||||
[v1.0.81](https://github.com/laurent22/joplin/releases/tag/v1.0.81) | 2018-03-28T08:13:58Z | 999 | 594 | 779 | 2,372
|
||||
[v1.0.79](https://github.com/laurent22/joplin/releases/tag/v1.0.79) | 2018-03-23T18:00:11Z | 929 | 533 | 376 | 1,838
|
||||
[v1.0.78](https://github.com/laurent22/joplin/releases/tag/v1.0.78) | 2018-03-17T15:27:18Z | 1,310 | 868 | 867 | 3,045
|
||||
[v1.0.89](https://github.com/laurent22/joplin/releases/tag/v1.0.89) | 2018-05-09T13:05:05Z | 488 | 227 | 107 | 822
|
||||
[v1.0.85](https://github.com/laurent22/joplin/releases/tag/v1.0.85) | 2018-05-01T21:08:24Z | 1,647 | 946 | 627 | 3,220
|
||||
[v1.0.83](https://github.com/laurent22/joplin/releases/tag/v1.0.83) | 2018-04-04T19:43:58Z | 4,806 | 2,529 | 2,656 | 9,991
|
||||
[v1.0.82](https://github.com/laurent22/joplin/releases/tag/v1.0.82) | 2018-03-31T19:16:31Z | 692 | 400 | 119 | 1,211
|
||||
[v1.0.81](https://github.com/laurent22/joplin/releases/tag/v1.0.81) | 2018-03-28T08:13:58Z | 999 | 595 | 780 | 2,374
|
||||
[v1.0.79](https://github.com/laurent22/joplin/releases/tag/v1.0.79) | 2018-03-23T18:00:11Z | 930 | 534 | 377 | 1,841
|
||||
[v1.0.78](https://github.com/laurent22/joplin/releases/tag/v1.0.78) | 2018-03-17T15:27:18Z | 1,311 | 868 | 867 | 3,046
|
||||
[v1.0.77](https://github.com/laurent22/joplin/releases/tag/v1.0.77) | 2018-03-16T15:12:35Z | 176 | 103 | 44 | 323
|
||||
[v1.0.72](https://github.com/laurent22/joplin/releases/tag/v1.0.72) | 2018-03-14T09:44:35Z | 405 | 254 | 54 | 713
|
||||
[v1.0.70](https://github.com/laurent22/joplin/releases/tag/v1.0.70) | 2018-02-28T20:04:30Z | 1,853 | 1,049 | 1,251 | 4,153
|
||||
[v1.0.67](https://github.com/laurent22/joplin/releases/tag/v1.0.67) | 2018-02-19T22:51:08Z | 1,814 | 600 | 0 | 2,414
|
||||
[v1.0.66](https://github.com/laurent22/joplin/releases/tag/v1.0.66) | 2018-02-18T23:09:09Z | 326 | 134 | 85 | 545
|
||||
[v1.0.65](https://github.com/laurent22/joplin/releases/tag/v1.0.65) | 2018-02-17T20:02:25Z | 193 | 123 | 133 | 449
|
||||
[v1.0.65](https://github.com/laurent22/joplin/releases/tag/v1.0.65) | 2018-02-17T20:02:25Z | 193 | 124 | 133 | 450
|
||||
[v1.0.64](https://github.com/laurent22/joplin/releases/tag/v1.0.64) | 2018-02-16T00:58:20Z | 1,084 | 543 | 1,123 | 2,750
|
||||
[v1.0.63](https://github.com/laurent22/joplin/releases/tag/v1.0.63) | 2018-02-14T19:40:36Z | 300 | 159 | 93 | 552
|
||||
[v1.0.62](https://github.com/laurent22/joplin/releases/tag/v1.0.62) | 2018-02-12T20:19:58Z | 557 | 297 | 367 | 1,221
|
||||
[v0.10.61](https://github.com/laurent22/joplin/releases/tag/v0.10.61) | 2018-02-08T18:27:39Z | 971 | 630 | 957 | 2,558
|
||||
[v0.10.60](https://github.com/laurent22/joplin/releases/tag/v0.10.60) | 2018-02-06T13:09:56Z | 721 | 518 | 552 | 1,791
|
||||
[v0.10.54](https://github.com/laurent22/joplin/releases/tag/v0.10.54) | 2018-01-31T20:21:30Z | 1,819 | 1,458 | 320 | 3,597
|
||||
[v1.0.62](https://github.com/laurent22/joplin/releases/tag/v1.0.62) | 2018-02-12T20:19:58Z | 558 | 297 | 367 | 1,222
|
||||
[v0.10.61](https://github.com/laurent22/joplin/releases/tag/v0.10.61) | 2018-02-08T18:27:39Z | 971 | 630 | 958 | 2,559
|
||||
[v0.10.60](https://github.com/laurent22/joplin/releases/tag/v0.10.60) | 2018-02-06T13:09:56Z | 721 | 519 | 552 | 1,792
|
||||
[v0.10.54](https://github.com/laurent22/joplin/releases/tag/v0.10.54) | 2018-01-31T20:21:30Z | 1,819 | 1,458 | 321 | 3,598
|
||||
[v0.10.52](https://github.com/laurent22/joplin/releases/tag/v0.10.52) | 2018-01-31T19:25:18Z | 46 | 632 | 15 | 693
|
||||
[v0.10.51](https://github.com/laurent22/joplin/releases/tag/v0.10.51) | 2018-01-28T18:47:02Z | 1,327 | 1,598 | 327 | 3,252
|
||||
[v0.10.48](https://github.com/laurent22/joplin/releases/tag/v0.10.48) | 2018-01-23T11:19:51Z | 1,963 | 1,750 | 28 | 3,741
|
||||
[v0.10.48](https://github.com/laurent22/joplin/releases/tag/v0.10.48) | 2018-01-23T11:19:51Z | 1,964 | 1,750 | 29 | 3,743
|
||||
[v0.10.47](https://github.com/laurent22/joplin/releases/tag/v0.10.47) | 2018-01-16T17:27:17Z | 1,228 | 1,268 | 67 | 2,563
|
||||
[v0.10.43](https://github.com/laurent22/joplin/releases/tag/v0.10.43) | 2018-01-08T10:12:10Z | 3,437 | 2,353 | 1,205 | 6,995
|
||||
[v0.10.41](https://github.com/laurent22/joplin/releases/tag/v0.10.41) | 2018-01-05T20:38:12Z | 1,036 | 1,547 | 237 | 2,820
|
||||
[v0.10.43](https://github.com/laurent22/joplin/releases/tag/v0.10.43) | 2018-01-08T10:12:10Z | 3,437 | 2,354 | 1,205 | 6,996
|
||||
[v0.10.41](https://github.com/laurent22/joplin/releases/tag/v0.10.41) | 2018-01-05T20:38:12Z | 1,036 | 1,547 | 238 | 2,821
|
||||
[v0.10.40](https://github.com/laurent22/joplin/releases/tag/v0.10.40) | 2018-01-02T23:16:57Z | 1,594 | 1,786 | 338 | 3,718
|
||||
[v0.10.39](https://github.com/laurent22/joplin/releases/tag/v0.10.39) | 2017-12-11T21:19:44Z | 5,771 | 4,245 | 3,145 | 13,161
|
||||
[v0.10.39](https://github.com/laurent22/joplin/releases/tag/v0.10.39) | 2017-12-11T21:19:44Z | 5,781 | 4,254 | 3,157 | 13,192
|
||||
[v0.10.38](https://github.com/laurent22/joplin/releases/tag/v0.10.38) | 2017-12-08T10:12:06Z | 1,048 | 1,229 | 306 | 2,583
|
||||
[v0.10.37](https://github.com/laurent22/joplin/releases/tag/v0.10.37) | 2017-12-07T19:38:05Z | 264 | 842 | 81 | 1,187
|
||||
[v0.10.36](https://github.com/laurent22/joplin/releases/tag/v0.10.36) | 2017-12-05T09:34:40Z | 1,013 | 1,354 | 437 | 2,804
|
||||
[v0.10.37](https://github.com/laurent22/joplin/releases/tag/v0.10.37) | 2017-12-07T19:38:05Z | 264 | 843 | 81 | 1,188
|
||||
[v0.10.36](https://github.com/laurent22/joplin/releases/tag/v0.10.36) | 2017-12-05T09:34:40Z | 1,014 | 1,354 | 437 | 2,805
|
||||
[v0.10.35](https://github.com/laurent22/joplin/releases/tag/v0.10.35) | 2017-12-02T15:56:08Z | 1,576 | 1,546 | 744 | 3,866
|
||||
[v0.10.34](https://github.com/laurent22/joplin/releases/tag/v0.10.34) | 2017-12-02T14:50:28Z | 88 | 668 | 59 | 815
|
||||
[v0.10.33](https://github.com/laurent22/joplin/releases/tag/v0.10.33) | 2017-12-02T13:20:39Z | 60 | 655 | 21 | 736
|
||||
[v0.10.34](https://github.com/laurent22/joplin/releases/tag/v0.10.34) | 2017-12-02T14:50:28Z | 89 | 668 | 59 | 816
|
||||
[v0.10.33](https://github.com/laurent22/joplin/releases/tag/v0.10.33) | 2017-12-02T13:20:39Z | 60 | 657 | 21 | 738
|
||||
[v0.10.31](https://github.com/laurent22/joplin/releases/tag/v0.10.31) | 2017-12-01T09:56:44Z | 891 | 1,449 | 406 | 2,746
|
||||
[v0.10.30](https://github.com/laurent22/joplin/releases/tag/v0.10.30) | 2017-11-30T20:28:16Z | 722 | 1,367 | 419 | 2,508
|
||||
[v0.10.28](https://github.com/laurent22/joplin/releases/tag/v0.10.28) | 2017-11-30T01:07:46Z | 1,328 | 1,698 | 872 | 3,898
|
||||
[v0.10.26](https://github.com/laurent22/joplin/releases/tag/v0.10.26) | 2017-11-29T16:02:17Z | 185 | 699 | 260 | 1,144
|
||||
[v0.10.25](https://github.com/laurent22/joplin/releases/tag/v0.10.25) | 2017-11-24T14:27:49Z | 148 | 694 | 6,341 | 7,183
|
||||
[v0.10.26](https://github.com/laurent22/joplin/releases/tag/v0.10.26) | 2017-11-29T16:02:17Z | 186 | 699 | 260 | 1,145
|
||||
[v0.10.25](https://github.com/laurent22/joplin/releases/tag/v0.10.25) | 2017-11-24T14:27:49Z | 148 | 694 | 6,373 | 7,215
|
||||
[v0.10.23](https://github.com/laurent22/joplin/releases/tag/v0.10.23) | 2017-11-21T19:38:41Z | 132 | 645 | 27 | 804
|
||||
[v0.10.22](https://github.com/laurent22/joplin/releases/tag/v0.10.22) | 2017-11-20T21:45:57Z | 83 | 642 | 18 | 743
|
||||
[v0.10.22](https://github.com/laurent22/joplin/releases/tag/v0.10.22) | 2017-11-20T21:45:57Z | 84 | 643 | 18 | 745
|
||||
[v0.10.21](https://github.com/laurent22/joplin/releases/tag/v0.10.21) | 2017-11-18T00:53:15Z | 51 | 636 | 12 | 699
|
||||
[v0.10.20](https://github.com/laurent22/joplin/releases/tag/v0.10.20) | 2017-11-17T17:18:25Z | 32 | 647 | 21 | 700
|
||||
[v0.10.19](https://github.com/laurent22/joplin/releases/tag/v0.10.19) | 2017-11-20T18:59:48Z | 15 | 641 | 12 | 668
|
||||
[v0.10.19](https://github.com/laurent22/joplin/releases/tag/v0.10.19) | 2017-11-20T18:59:48Z | 15 | 642 | 12 | 669
|
Loading…
Reference in New Issue
Block a user