From c61e4cae4dc52665734346e76ad53b29afd6b9cb Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Fri, 24 Jan 2020 23:17:46 +0000 Subject: [PATCH] CLI v1.0.153 --- CliClient/package-lock.json | 2 +- CliClient/package.json | 2 +- CliClient/publish.sh | 3 +++ readme/changelog_cli.md | 18 ++++++++++++++++++ 4 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CliClient/package-lock.json b/CliClient/package-lock.json index a85b64b538..61b99a4d98 100644 --- a/CliClient/package-lock.json +++ b/CliClient/package-lock.json @@ -1,6 +1,6 @@ { "name": "joplin", - "version": "1.0.150", + "version": "1.0.153", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/CliClient/package.json b/CliClient/package.json index c14cae11fa..281141a740 100644 --- a/CliClient/package.json +++ b/CliClient/package.json @@ -20,7 +20,7 @@ ], "owner": "Laurent Cozic" }, - "version": "1.0.150", + "version": "1.0.153", "bin": { "joplin": "./main.js" }, diff --git a/CliClient/publish.sh b/CliClient/publish.sh index cca107eeee..0a5c6d080b 100755 --- a/CliClient/publish.sh +++ b/CliClient/publish.sh @@ -1,4 +1,7 @@ #!/bin/bash +echo "Deprecated! Use `node Tools/release-cli.js`" +exit 1 + set -e SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" diff --git a/readme/changelog_cli.md b/readme/changelog_cli.md index f59b98b1de..32d726d8c5 100644 --- a/readme/changelog_cli.md +++ b/readme/changelog_cli.md @@ -1,5 +1,23 @@ # Joplin terminal app changelog +## [cli-v1.0.153](https://github.com/laurent22/joplin/releases/tag/cli-v1.0.153) - 2020-01-24T23:16:32Z + +- New: Added new, more secure encryption methods, so that they can be switched to at a later time +- New: Add --export, --import, and --import-file flags to joplin config (#2179 by Marcus Hill) +- New: Added more logging for resource fetching to try to debug issue +- New: Add warning message when user tries to upload a file 10MB or larger (#2102) (#2097 by Marcus Hill) +- Improved: Replace note links with relative paths in MD Exporter (#2161 by Vaidotas Simkus) +- Improved: Upgrade sqlite (#2248 by Devon Zuegel) +- Improved: Extract note renderer to separate package (WIP) (#2206 by Laurent Cozic) +- Improved: Better handling of resource download errors, and added resource info to sync status screen +- Improved: Update CliClient node dependency to 10+ (#2177 by [@joeltaylor](https://github.com/joeltaylor)) +- Improved: Allow exporting a note as HTML +- Improved: Improved logging during sync to allow finding bugs more easily +- Fixed: Handle WebDAV servers that do not return a last modified date (fixes mail.ru) (#2091) +- Fixed: Restaured translations that had been accidentally deleted (#2126) +- Fixed: Prevent synch from happening if target dir could not be created, in local sync (#2117) +- Fixed: Handle rare case when notebook has a parent that no longer exists, which causes a crash when sorting (#2088) + ## [cli-v1.0.150](https://github.com/laurent22/joplin/releases/tag/cli-v1.0.150) - 2019-11-11T19:19:03Z - New: Add command to list all tags for a note (#2003) (#1974)