From fcd76dabac893fa73c378dbb3013cb10cf99a7ff Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Tue, 21 Jan 2020 09:42:27 +0000 Subject: [PATCH] Update website --- README.md | 6 +- Tools/build-all.sh | 32 ++++++++++- docs/api/index.html | 71 ++++++++++++++++++++++++ docs/changelog/index.html | 16 ++++++ docs/gsoc2020/ideas.html | 6 +- docs/index.html | 69 +++++++++++------------ docs/stats/index.html | 114 ++++++++++++++++++++------------------ readme/api.md | 26 +++++++++ readme/changelog.md | 16 ++++++ readme/stats.md | 47 ++++++++-------- 10 files changed, 286 insertions(+), 117 deletions(-) diff --git a/README.md b/README.md index 0e79f1054..3f357af24 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,9 @@ Three types of applications are available: for the **desktop** (Windows, macOS a Operating System | Download | Alternative -----------------|--------|------------------- -Windows (32 and 64-bit) | Get it on Windows | Or get the Portable version

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 | Get it on macOS | You can also use Homebrew: `brew cask install joplin` -Linux | Get it on Linux | An Arch Linux package [is also available](#terminal-application).

If it works with your distribution (it has been tested on Ubuntu, Fedora, Gnome and Mint), the recommended way is to use this script as it will handle the desktop icon too:

`wget -O - https://raw.githubusercontent.com/laurent22/joplin/master/Joplin_install_and_update.sh \| bash` +Windows (32 and 64-bit) | Get it on Windows | Or get the Portable version

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 | Get it on macOS | You can also use Homebrew: `brew cask install joplin` +Linux | Get it on Linux | An Arch Linux package [is also available](#terminal-application).

If it works with your distribution (it has been tested on Ubuntu, Fedora, Gnome and Mint), the recommended way is to use this script as it will handle the desktop icon too:

`wget -O - https://raw.githubusercontent.com/laurent22/joplin/master/Joplin_install_and_update.sh \| bash` ## Mobile applications diff --git a/Tools/build-all.sh b/Tools/build-all.sh index 3d1962fdf..1ed010320 100755 --- a/Tools/build-all.sh +++ b/Tools/build-all.sh @@ -1,5 +1,35 @@ #!/bin/bash +set -e + ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +echo "---------------------------------------------------" +echo "Rebuild API doc..." +echo "---------------------------------------------------" # TODO: When the apidoc command fails, it copy the failure in api.md, but shouldn't be doing that -"$ROOT_DIR/../CliClient/run.sh" apidoc > "$ROOT_DIR/../readme/api.md" && node "$ROOT_DIR/update-readme-download.js" && node "$ROOT_DIR/build-release-stats.js" && node "$ROOT_DIR/build-welcome.js" && node "$ROOT_DIR/build-website.js" && git add -A && git commit -m "Update website" && git pull && git push \ No newline at end of file +"$ROOT_DIR/../CliClient/run.sh" apidoc > "$ROOT_DIR/../readme/api.md" + +echo "---------------------------------------------------" +echo "$ROOT_DIR/update-readme-download.js..." +echo "---------------------------------------------------" +node "$ROOT_DIR/update-readme-download.js" + +echo "---------------------------------------------------" +echo "$ROOT_DIR/build-release-stats.js..." +echo "---------------------------------------------------" +node "$ROOT_DIR/build-release-stats.js" + +echo "---------------------------------------------------" +echo "$ROOT_DIR/build-welcome.js..." +echo "---------------------------------------------------" +node "$ROOT_DIR/build-welcome.js" + +echo "---------------------------------------------------" +echo "$ROOT_DIR/build-website.js..." +echo "---------------------------------------------------" +node "$ROOT_DIR/build-website.js" + +echo "---------------------------------------------------" +echo "Commit changes..." +echo "---------------------------------------------------" +git add -A && git commit -m "Update website" && git pull && git push \ No newline at end of file diff --git a/docs/api/index.html b/docs/api/index.html index e808922e8..4a8e78936 100644 --- a/docs/api/index.html +++ b/docs/api/index.html @@ -384,6 +384,77 @@ for (let portToTest = 41184; portToTest <= 41194; portToTest++) {

Call GET /ping to check if the service is available. It should return "JoplinClipperServer" if it works.

Searching🔗

Call GET /search?query=YOUR_QUERY to search for notes. This end-point supports the field parameter which is recommended to use so that you only get the data that you need. The query syntax is as described in the main documentation: https://joplinapp.org/#searching

+

To retrieve non-notes items, such as notebooks or tags, add a type parameter and set it to the required item type name. In that case, full text search will not be used - instead it will be a simple case-insensitive search. You can also use * as a wildcard. This is convenient for example to retrieve notebooks or tags by title.

+

For example, to retrieve the notebook named "recipes": GET /search?query=recipes&type=folder
+To retrieve all the tags that start with "project-": GET /search?query=project-*&type=tag

+

Item type IDs🔗

+

Item type IDs might be refered to in certain object you will retrieve from the API. This is the correspondance between name and ID:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameValue
note1
folder2
setting3
resource4
tag5
note_tag6
search7
alarm8
master_key9
item_change10
note_resource11
resource_local_state12
revision13
migration14

Notes🔗

Properties🔗

diff --git a/docs/changelog/index.html b/docs/changelog/index.html index f745cfbec..e58e0a060 100644 --- a/docs/changelog/index.html +++ b/docs/changelog/index.html @@ -333,6 +333,22 @@ https://github.com/laurent22/joplin/blob/master/readme/changelog.md

Joplin changelog🔗

+

v1.0.178 - 2020-01-20T19:06:45Z🔗

+

v1.0.177 - 2019-12-30T14:40:40Z🔗

This is to test the Electron framework upgrade and the switch to a separate note renderer. If you find any bug please report on the forum or GitHub tracker.

- - + + - + - + @@ -501,6 +501,7 @@ https://github.com/laurent22/joplin/blob/master/
  • Seafile
  • Stack
  • WebDAV Nav, a macOS server.
  • +
  • Yandex Disk
  • Zimbra
  • OneDrive synchronisation🔗

    @@ -669,57 +670,57 @@ Details: - - + + - + - + - + - + - + - + - + @@ -747,70 +748,70 @@ Details: - + - + - + - + - + - + - + - + - + - + @@ -824,70 +825,70 @@ Details: - + - + - + - + - + - + - + - + - + - - + + diff --git a/docs/stats/index.html b/docs/stats/index.html index f3f1c95cc..26db8e779 100644 --- a/docs/stats/index.html +++ b/docs/stats/index.html @@ -343,15 +343,15 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md - + - + - + @@ -363,7 +363,7 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md - +
    Windows (32 and 64-bit)Get it on WindowsOr get the Portable version

    The 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.
    Get it on WindowsOr get the Portable version

    The 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.
    macOSGet it on macOSGet it on macOS You can also use Homebrew: brew cask install joplin
    LinuxGet it on LinuxGet it on Linux An Arch Linux package is also available.

    If it works with your distribution (it has been tested on Ubuntu, Fedora, Gnome and Mint), the recommended way is to use this script as it will handle the desktop icon too:

    wget -O - https://raw.githubusercontent.com/laurent22/joplin/master/Joplin_install_and_update.sh | bash
    Arabic arعبد الناصر سعيد (as@althobaity.com)75%أحمد باشا إبراهيم (fi_ahmed_bacha@esi.dz)96%
    Basque eu juan.abasolo@ehu.eus42%41%
    Bosnian bs_BA Derviš T. (dervis.t@pm.me)94%91%
    Bulgarian bg_BG 83%80%
    Catalan ca jmontane, 201966%64%
    Croatian hr_HR Hrvoje Mandić (trbuhom@net.hr)35%34%
    Czech cs_CZ Lukas Helebrandt (lukas@aiya.cz)96%93%
    Dansk da_DK Morten Juhl-Johansen Zölde-Fejér (mjjzf@syntaktisk.93%90%
    Español es_ES Andros Fenollosa (andros@fenollosa.email)96%93%
    Esperanto eo Marton Paulo (martonpss@gmail.com)48%46%
    Français fr_FR Laurent Cozic96%93%
    Galician gl_ES Marcos Lans (marcoslansgarza@gmail.com)54%52%
    Italiano it_IT 91%88%
    Nederlands nl_BE 43%42%
    Nederlands nl_NL Robert (metbril@outlook.com)91%88%
    Norwegian nb_NO Mats Estensen (code@mxe.no)96%93%
    Persian fa Mehrad Mahmoudian (mehrad@mahmoudian.me)41%39%
    Polski pl_PL 82%79%
    Português (Brasil) pt_BR Marton Paulo (martonpss@gmail.com)95%92%
    Română ro 42%41%
    Slovenian sl_SI 53%52%
    Svenska sv Jonatan Nyberg (jonatan@autistici.org)73%71%
    Türkçe tr_TR Hüseyin Fahri Uzun (mail@fahriuzun.com)89%96%
    Ελληνικά el_GR Harris Arvanitis (xaris@tuta.io)96%93%
    Русский ru_RU Artyom Karlov (artyom.karlov@gmail.com)92%89%
    српски језик sr_RS 82%79%
    中文 (简体) zh_CN 90%87%
    中文 (繁體) zh_TWpenguinsam (samliu@gmail.com)66%Ethan Chen (ethan42411@gmail.com)96%
    Total Windows downloads524,159529,913
    Total macOs downloads195,691197,259
    Total Linux downloads152,774153,954
    Windows %
    Linux %18%17%
    @@ -380,60 +380,68 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md +v1.0.178 +2020-01-20T19:06:45Z +3,121 +905 +205 +4,231 + + v1.0.177 2019-12-30T14:40:40Z -1,668 -378 -470 -2,516 +1,808 +392 +522 +2,722 v1.0.176 2019-12-14T10:36:44Z -3,079 -2,420 -345 -5,844 +3,085 +2,421 +347 +5,853 v1.0.175 2019-12-08T11:48:47Z -66,983 -15,760 -15,002 -97,745 +69,449 +16,399 +15,915 +101,763 v1.0.174 2019-11-12T18:20:58Z -30,054 +30,058 11,543 8,157 -49,754 +49,758 v1.0.173 2019-11-11T08:33:35Z -5,008 +5,009 2,050 716 -7,774 +7,775 v1.0.170 2019-10-13T22:13:04Z -27,221 -8,577 +27,223 +8,582 7,636 -43,434 +43,441 v1.0.169 2019-09-27T18:35:13Z -16,993 -5,851 +16,995 +5,852 3,739 -26,583 +26,586 v1.0.168 @@ -462,18 +470,18 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md v1.0.165 2019-08-14T21:46:29Z -18,832 +18,834 6,909 5,449 -31,190 +31,192 v1.0.161 2019-07-13T18:30:00Z 19,197 -6,293 +6,294 4,102 -29,592 +29,593 v1.0.160 @@ -502,10 +510,10 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md v1.0.157 2019-05-26T17:55:53Z -2,148 +2,149 819 278 -3,245 +3,246 v1.0.153 @@ -550,10 +558,10 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md v1.0.145 2019-05-03T09:16:53Z -6,937 +6,939 2,840 1,427 -11,204 +11,206 v1.0.143 @@ -566,10 +574,10 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md v1.0.142 2019-04-02T16:44:51Z -14,567 +14,569 4,525 4,715 -23,807 +23,809 v1.0.140 @@ -606,10 +614,10 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md v1.0.135 2019-02-27T23:36:57Z -12,396 +12,398 3,926 4,049 -20,371 +20,373 v1.0.134 @@ -656,8 +664,8 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md 2019-01-10T21:42:53Z 15,577 5,172 -6,499 -27,248 +6,500 +27,249 v1.0.119 @@ -711,9 +719,9 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md v1.0.111 2018-09-30T20:15:09Z 11,959 -3,186 +3,187 3,654 -18,799 +18,800 v1.0.110 @@ -816,8 +824,8 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md 2018-05-26T16:36:39Z 2,695 1,207 -1,373 -5,275 +1,374 +5,276 v1.0.95 @@ -1062,10 +1070,10 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md v0.10.39 2017-12-11T21:19:44Z -5,667 -4,143 -3,046 -12,856 +5,669 +4,144 +3,047 +12,860 v0.10.38 @@ -1126,10 +1134,10 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md v0.10.30 2017-11-30T20:28:16Z -713 +714 1,355 -411 -2,479 +413 +2,482 v0.10.28 @@ -1152,8 +1160,8 @@ https://github.com/laurent22/joplin/blob/master/readme/stats.md 2017-11-24T14:27:49Z 142 681 -5,933 -6,756 +5,936 +6,759 v0.10.23 diff --git a/readme/api.md b/readme/api.md index 19f69f5a3..b903812e8 100644 --- a/readme/api.md +++ b/readme/api.md @@ -72,6 +72,32 @@ Call **GET /ping** to check if the service is available. It should return "Jopli Call **GET /search?query=YOUR_QUERY** to search for notes. This end-point supports the `field` parameter which is recommended to use so that you only get the data that you need. The query syntax is as described in the main documentation: https://joplinapp.org/#searching +To retrieve non-notes items, such as notebooks or tags, add a `type` parameter and set it to the required [item type name](#item-type-id). In that case, full text search will not be used - instead it will be a simple case-insensitive search. You can also use `*` as a wildcard. This is convenient for example to retrieve notebooks or tags by title. + +For example, to retrieve the notebook named "recipes": **GET /search?query=recipes&type=folder** +To retrieve all the tags that start with "project-": **GET /search?query=project-*&type=tag** + +# Item type IDs + +Item type IDs might be refered to in certain object you will retrieve from the API. This is the correspondance between name and ID: + +Name | Value +---- | ----- +note | 1 +folder | 2 +setting | 3 +resource | 4 +tag | 5 +note_tag | 6 +search | 7 +alarm | 8 +master_key | 9 +item_change | 10 +note_resource | 11 +resource_local_state | 12 +revision | 13 +migration | 14 + # Notes ## Properties diff --git a/readme/changelog.md b/readme/changelog.md index 230723bb3..5d78b5640 100644 --- a/readme/changelog.md +++ b/readme/changelog.md @@ -1,5 +1,21 @@ # Joplin changelog +## [v1.0.178](https://github.com/laurent22/joplin/releases/tag/v1.0.178) - 2020-01-20T19:06:45Z + +- New: Add ability to search by folder or tag title +- New: Add option to disable auto-matching braces ([#2251](https://github.com/laurent22/joplin/issues/2251)) +- New: Display selected tags under a note title ([#2217](https://github.com/laurent22/joplin/issues/2217)) +- New: Add external editor actions to the note context menu. ([#2214](https://github.com/laurent22/joplin/issues/2214)) +- Improved: When importing MD files create resources for local linked files ([#2262](https://github.com/laurent22/joplin/issues/2262)) +- Improved: Update Electron to 7.1.9 ([#2314](https://github.com/laurent22/joplin/issues/2314)) +- Improved: Show completed date in note properties ([#2292](https://github.com/laurent22/joplin/issues/2292)) +- Improved: Maintain selection when non-selected note is deleted ([#2290](https://github.com/laurent22/joplin/issues/2290)) +- Improved: Don't count completed to-dos in note counts when they are not shown ([#2288](https://github.com/laurent22/joplin/issues/2288)) +- Improved: Replace note links with relative paths in MD Exporter ([#2161](https://github.com/laurent22/joplin/issues/2161)) +- Fixed: Fix pdf export when mouse over non-selected note in notelist. ([#2255](https://github.com/laurent22/joplin/issues/2255)) ([#2254](https://github.com/laurent22/joplin/issues/2254)) +- Fixed: Fixed regression in HTML note rendering +- Fixed: Fixed export to HTML, PDF and printing + ## [v1.0.177](https://github.com/laurent22/joplin/releases/tag/v1.0.177) - 2019-12-30T14:40:40Z This is to test the Electron framework upgrade and the switch to a separate note renderer. If you find any bug please report on the forum or GitHub tracker. diff --git a/readme/stats.md b/readme/stats.md index ee3224c91..404990222 100644 --- a/readme/stats.md +++ b/readme/stats.md @@ -2,57 +2,58 @@ Name | Value --- | --- -Total Windows downloads | 524,159 -Total macOs downloads | 195,691 -Total Linux downloads | 152,774 +Total Windows downloads | 529,913 +Total macOs downloads | 197,259 +Total Linux downloads | 153,954 Windows % | 60% macOS % | 22% -Linux % | 18% +Linux % | 17% Version | Date | Windows | macOS | Linux | Total --- | --- | --- | --- | --- | --- -[v1.0.177](https://github.com/laurent22/joplin/releases/tag/v1.0.177) | 2019-12-30T14:40:40Z | 1,668 | 378 | 470 | 2,516 -[v1.0.176](https://github.com/laurent22/joplin/releases/tag/v1.0.176) | 2019-12-14T10:36:44Z | 3,079 | 2,420 | 345 | 5,844 -[v1.0.175](https://github.com/laurent22/joplin/releases/tag/v1.0.175) | 2019-12-08T11:48:47Z | 66,983 | 15,760 | 15,002 | 97,745 -[v1.0.174](https://github.com/laurent22/joplin/releases/tag/v1.0.174) | 2019-11-12T18:20:58Z | 30,054 | 11,543 | 8,157 | 49,754 -[v1.0.173](https://github.com/laurent22/joplin/releases/tag/v1.0.173) | 2019-11-11T08:33:35Z | 5,008 | 2,050 | 716 | 7,774 -[v1.0.170](https://github.com/laurent22/joplin/releases/tag/v1.0.170) | 2019-10-13T22:13:04Z | 27,221 | 8,577 | 7,636 | 43,434 -[v1.0.169](https://github.com/laurent22/joplin/releases/tag/v1.0.169) | 2019-09-27T18:35:13Z | 16,993 | 5,851 | 3,739 | 26,583 +[v1.0.178](https://github.com/laurent22/joplin/releases/tag/v1.0.178) | 2020-01-20T19:06:45Z | 3,121 | 905 | 205 | 4,231 +[v1.0.177](https://github.com/laurent22/joplin/releases/tag/v1.0.177) | 2019-12-30T14:40:40Z | 1,808 | 392 | 522 | 2,722 +[v1.0.176](https://github.com/laurent22/joplin/releases/tag/v1.0.176) | 2019-12-14T10:36:44Z | 3,085 | 2,421 | 347 | 5,853 +[v1.0.175](https://github.com/laurent22/joplin/releases/tag/v1.0.175) | 2019-12-08T11:48:47Z | 69,449 | 16,399 | 15,915 | 101,763 +[v1.0.174](https://github.com/laurent22/joplin/releases/tag/v1.0.174) | 2019-11-12T18:20:58Z | 30,058 | 11,543 | 8,157 | 49,758 +[v1.0.173](https://github.com/laurent22/joplin/releases/tag/v1.0.173) | 2019-11-11T08:33:35Z | 5,009 | 2,050 | 716 | 7,775 +[v1.0.170](https://github.com/laurent22/joplin/releases/tag/v1.0.170) | 2019-10-13T22:13:04Z | 27,223 | 8,582 | 7,636 | 43,441 +[v1.0.169](https://github.com/laurent22/joplin/releases/tag/v1.0.169) | 2019-09-27T18:35:13Z | 16,995 | 5,852 | 3,739 | 26,586 [v1.0.168](https://github.com/laurent22/joplin/releases/tag/v1.0.168) | 2019-09-25T21:21:38Z | 5,291 | 2,244 | 701 | 8,236 [v1.0.167](https://github.com/laurent22/joplin/releases/tag/v1.0.167) | 2019-09-10T08:48:37Z | 16,674 | 5,646 | 3,686 | 26,006 [v1.0.166](https://github.com/laurent22/joplin/releases/tag/v1.0.166) | 2019-09-09T17:35:54Z | 1,930 | 537 | 221 | 2,688 -[v1.0.165](https://github.com/laurent22/joplin/releases/tag/v1.0.165) | 2019-08-14T21:46:29Z | 18,832 | 6,909 | 5,449 | 31,190 -[v1.0.161](https://github.com/laurent22/joplin/releases/tag/v1.0.161) | 2019-07-13T18:30:00Z | 19,197 | 6,293 | 4,102 | 29,592 +[v1.0.165](https://github.com/laurent22/joplin/releases/tag/v1.0.165) | 2019-08-14T21:46:29Z | 18,834 | 6,909 | 5,449 | 31,192 +[v1.0.161](https://github.com/laurent22/joplin/releases/tag/v1.0.161) | 2019-07-13T18:30:00Z | 19,197 | 6,294 | 4,102 | 29,593 [v1.0.160](https://github.com/laurent22/joplin/releases/tag/v1.0.160) | 2019-06-15T00:21:40Z | 30,327 | 7,708 | 8,085 | 46,120 [v1.0.159](https://github.com/laurent22/joplin/releases/tag/v1.0.159) | 2019-06-08T00:00:19Z | 5,167 | 2,154 | 1,090 | 8,411 [v1.0.158](https://github.com/laurent22/joplin/releases/tag/v1.0.158) | 2019-05-27T19:01:18Z | 9,782 | 3,507 | 1,923 | 15,212 -[v1.0.157](https://github.com/laurent22/joplin/releases/tag/v1.0.157) | 2019-05-26T17:55:53Z | 2,148 | 819 | 278 | 3,245 +[v1.0.157](https://github.com/laurent22/joplin/releases/tag/v1.0.157) | 2019-05-26T17:55:53Z | 2,149 | 819 | 278 | 3,246 [v1.0.153](https://github.com/laurent22/joplin/releases/tag/v1.0.153) | 2019-05-15T06:27:29Z | 828 | 79 | 97 | 1,004 [v1.0.152](https://github.com/laurent22/joplin/releases/tag/v1.0.152) | 2019-05-13T09:08:07Z | 13,832 | 4,398 | 4,052 | 22,282 [v1.0.151](https://github.com/laurent22/joplin/releases/tag/v1.0.151) | 2019-05-12T15:14:32Z | 1,936 | 517 | 950 | 3,403 [v1.0.150](https://github.com/laurent22/joplin/releases/tag/v1.0.150) | 2019-05-12T11:27:48Z | 404 | 116 | 59 | 579 [v1.0.148](https://github.com/laurent22/joplin/releases/tag/v1.0.148) | 2019-05-08T19:12:24Z | 115 | 42 | 85 | 242 -[v1.0.145](https://github.com/laurent22/joplin/releases/tag/v1.0.145) | 2019-05-03T09:16:53Z | 6,937 | 2,840 | 1,427 | 11,204 +[v1.0.145](https://github.com/laurent22/joplin/releases/tag/v1.0.145) | 2019-05-03T09:16:53Z | 6,939 | 2,840 | 1,427 | 11,206 [v1.0.143](https://github.com/laurent22/joplin/releases/tag/v1.0.143) | 2019-04-22T10:51:38Z | 11,890 | 3,529 | 2,769 | 18,188 -[v1.0.142](https://github.com/laurent22/joplin/releases/tag/v1.0.142) | 2019-04-02T16:44:51Z | 14,567 | 4,525 | 4,715 | 23,807 +[v1.0.142](https://github.com/laurent22/joplin/releases/tag/v1.0.142) | 2019-04-02T16:44:51Z | 14,569 | 4,525 | 4,715 | 23,809 [v1.0.140](https://github.com/laurent22/joplin/releases/tag/v1.0.140) | 2019-03-10T20:59:58Z | 13,590 | 4,141 | 3,060 | 20,791 [v1.0.139](https://github.com/laurent22/joplin/releases/tag/v1.0.139) | 2019-03-09T10:06:48Z | 92 | 35 | 29 | 156 [v1.0.138](https://github.com/laurent22/joplin/releases/tag/v1.0.138) | 2019-03-03T17:23:00Z | 124 | 60 | 71 | 255 [v1.0.137](https://github.com/laurent22/joplin/releases/tag/v1.0.137) | 2019-03-03T01:12:51Z | 555 | 32 | 71 | 658 -[v1.0.135](https://github.com/laurent22/joplin/releases/tag/v1.0.135) | 2019-02-27T23:36:57Z | 12,396 | 3,926 | 4,049 | 20,371 +[v1.0.135](https://github.com/laurent22/joplin/releases/tag/v1.0.135) | 2019-02-27T23:36:57Z | 12,398 | 3,926 | 4,049 | 20,373 [v1.0.134](https://github.com/laurent22/joplin/releases/tag/v1.0.134) | 2019-02-27T10:21:44Z | 1,437 | 539 | 204 | 2,180 [v1.0.132](https://github.com/laurent22/joplin/releases/tag/v1.0.132) | 2019-02-26T23:02:05Z | 1,059 | 425 | 82 | 1,566 [v1.0.127](https://github.com/laurent22/joplin/releases/tag/v1.0.127) | 2019-02-14T23:12:48Z | 9,640 | 3,137 | 2,911 | 15,688 [v1.0.126](https://github.com/laurent22/joplin/releases/tag/v1.0.126) | 2019-02-09T19:46:16Z | 916 | 55 | 110 | 1,081 [v1.0.125](https://github.com/laurent22/joplin/releases/tag/v1.0.125) | 2019-01-26T18:14:33Z | 10,233 | 3,537 | 1,694 | 15,464 -[v1.0.120](https://github.com/laurent22/joplin/releases/tag/v1.0.120) | 2019-01-10T21:42:53Z | 15,577 | 5,172 | 6,499 | 27,248 +[v1.0.120](https://github.com/laurent22/joplin/releases/tag/v1.0.120) | 2019-01-10T21:42:53Z | 15,577 | 5,172 | 6,500 | 27,249 [v1.0.119](https://github.com/laurent22/joplin/releases/tag/v1.0.119) | 2018-12-18T12:40:22Z | 8,873 | 3,216 | 1,998 | 14,087 [v1.0.118](https://github.com/laurent22/joplin/releases/tag/v1.0.118) | 2019-01-11T08:34:13Z | 688 | 221 | 78 | 987 [v1.0.117](https://github.com/laurent22/joplin/releases/tag/v1.0.117) | 2018-11-24T12:05:24Z | 16,220 | 4,863 | 6,364 | 27,447 [v1.0.116](https://github.com/laurent22/joplin/releases/tag/v1.0.116) | 2018-11-20T19:09:24Z | 3,460 | 1,093 | 708 | 5,261 [v1.0.115](https://github.com/laurent22/joplin/releases/tag/v1.0.115) | 2018-11-16T16:52:02Z | 3,636 | 1,284 | 788 | 5,708 [v1.0.114](https://github.com/laurent22/joplin/releases/tag/v1.0.114) | 2018-10-24T20:14:10Z | 11,377 | 3,479 | 3,823 | 18,679 -[v1.0.111](https://github.com/laurent22/joplin/releases/tag/v1.0.111) | 2018-09-30T20:15:09Z | 11,959 | 3,186 | 3,654 | 18,799 +[v1.0.111](https://github.com/laurent22/joplin/releases/tag/v1.0.111) | 2018-09-30T20:15:09Z | 11,959 | 3,187 | 3,654 | 18,800 [v1.0.110](https://github.com/laurent22/joplin/releases/tag/v1.0.110) | 2018-09-29T12:29:21Z | 934 | 382 | 106 | 1,422 [v1.0.109](https://github.com/laurent22/joplin/releases/tag/v1.0.109) | 2018-09-27T18:01:41Z | 2,079 | 687 | 317 | 3,083 [v1.0.108](https://github.com/laurent22/joplin/releases/tag/v1.0.108) | 2018-09-29T18:49:29Z | 15 | 8 | 7 | 30 @@ -65,7 +66,7 @@ Version | Date | Windows | macOS | Linux | Total [v1.0.100](https://github.com/laurent22/joplin/releases/tag/v1.0.100) | 2018-06-14T17:41:43Z | 863 | 413 | 229 | 1,505 [v1.0.99](https://github.com/laurent22/joplin/releases/tag/v1.0.99) | 2018-06-10T13:18:23Z | 1,242 | 584 | 373 | 2,199 [v1.0.97](https://github.com/laurent22/joplin/releases/tag/v1.0.97) | 2018-06-09T19:23:34Z | 302 | 142 | 55 | 499 -[v1.0.96](https://github.com/laurent22/joplin/releases/tag/v1.0.96) | 2018-05-26T16:36:39Z | 2,695 | 1,207 | 1,373 | 5,275 +[v1.0.96](https://github.com/laurent22/joplin/releases/tag/v1.0.96) | 2018-05-26T16:36:39Z | 2,695 | 1,207 | 1,374 | 5,276 [v1.0.95](https://github.com/laurent22/joplin/releases/tag/v1.0.95) | 2018-05-25T13:04:30Z | 393 | 196 | 93 | 682 [v1.0.94](https://github.com/laurent22/joplin/releases/tag/v1.0.94) | 2018-05-21T20:52:59Z | 1,106 | 563 | 368 | 2,037 [v1.0.93](https://github.com/laurent22/joplin/releases/tag/v1.0.93) | 2018-05-14T11:36:01Z | 1,774 | 986 | 745 | 3,505 @@ -96,7 +97,7 @@ Version | Date | Windows | macOS | Linux | Total [v0.10.43](https://github.com/laurent22/joplin/releases/tag/v0.10.43) | 2018-01-08T10:12:10Z | 3,430 | 2,340 | 1,201 | 6,971 [v0.10.41](https://github.com/laurent22/joplin/releases/tag/v0.10.41) | 2018-01-05T20:38:12Z | 1,031 | 1,536 | 232 | 2,799 [v0.10.40](https://github.com/laurent22/joplin/releases/tag/v0.10.40) | 2018-01-02T23:16:57Z | 1,588 | 1,761 | 332 | 3,681 -[v0.10.39](https://github.com/laurent22/joplin/releases/tag/v0.10.39) | 2017-12-11T21:19:44Z | 5,667 | 4,143 | 3,046 | 12,856 +[v0.10.39](https://github.com/laurent22/joplin/releases/tag/v0.10.39) | 2017-12-11T21:19:44Z | 5,669 | 4,144 | 3,047 | 12,860 [v0.10.38](https://github.com/laurent22/joplin/releases/tag/v0.10.38) | 2017-12-08T10:12:06Z | 1,042 | 1,216 | 300 | 2,558 [v0.10.37](https://github.com/laurent22/joplin/releases/tag/v0.10.37) | 2017-12-07T19:38:05Z | 257 | 832 | 75 | 1,164 [v0.10.36](https://github.com/laurent22/joplin/releases/tag/v0.10.36) | 2017-12-05T09:34:40Z | 1,009 | 1,342 | 433 | 2,784 @@ -104,10 +105,10 @@ Version | Date | Windows | macOS | Linux | Total [v0.10.34](https://github.com/laurent22/joplin/releases/tag/v0.10.34) | 2017-12-02T14:50:28Z | 81 | 655 | 54 | 790 [v0.10.33](https://github.com/laurent22/joplin/releases/tag/v0.10.33) | 2017-12-02T13:20:39Z | 53 | 643 | 14 | 710 [v0.10.31](https://github.com/laurent22/joplin/releases/tag/v0.10.31) | 2017-12-01T09:56:44Z | 886 | 1,438 | 402 | 2,726 -[v0.10.30](https://github.com/laurent22/joplin/releases/tag/v0.10.30) | 2017-11-30T20:28:16Z | 713 | 1,355 | 411 | 2,479 +[v0.10.30](https://github.com/laurent22/joplin/releases/tag/v0.10.30) | 2017-11-30T20:28:16Z | 714 | 1,355 | 413 | 2,482 [v0.10.28](https://github.com/laurent22/joplin/releases/tag/v0.10.28) | 2017-11-30T01:07:46Z | 1,304 | 1,686 | 865 | 3,855 [v0.10.26](https://github.com/laurent22/joplin/releases/tag/v0.10.26) | 2017-11-29T16:02:17Z | 181 | 687 | 256 | 1,124 -[v0.10.25](https://github.com/laurent22/joplin/releases/tag/v0.10.25) | 2017-11-24T14:27:49Z | 142 | 681 | 5,933 | 6,756 +[v0.10.25](https://github.com/laurent22/joplin/releases/tag/v0.10.25) | 2017-11-24T14:27:49Z | 142 | 681 | 5,936 | 6,759 [v0.10.23](https://github.com/laurent22/joplin/releases/tag/v0.10.23) | 2017-11-21T19:38:41Z | 127 | 632 | 22 | 781 [v0.10.22](https://github.com/laurent22/joplin/releases/tag/v0.10.22) | 2017-11-20T21:45:57Z | 79 | 631 | 14 | 724 [v0.10.21](https://github.com/laurent22/joplin/releases/tag/v0.10.21) | 2017-11-18T00:53:15Z | 46 | 624 | 6 | 676