diff --git a/CHANGELOG.md b/CHANGELOG.md index 63168cf242..39e14a6502 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [5.4.3] + +### Fixed + +* fix(OptionsLinkwarden): Allow changing server folder +* fix(Storage): Don't give up when storage entry can not be parsed +* refactor(Account#setData): Accept partial data and use lock to set data (fixes hanging sync on iOS) +* fix(README): Add APK cert fingerprint +* fix(GoogleDrive|WebDAV): Try to catch more errors when file is encrypted +* enh(AutoSync): Add an explantion in settings +* [native] Try to find a valid URL when an app shares title+URL stuffed together (thanks to Andy Balaam) +* [native] Check that a URL is valid as soon as we load the Add Bookmark dialog (thanks to Andy Balaam) +* [native] Prevent saving a newly-added bookmark if the URL is bad (thanks to Andy Balaam) +* [native] Catch and log any errors we encounter when parsing a URL to display its hostname (thanks to Andy Balaam) + ## [5.4.2] (aka 5.4.2.1) diff --git a/android/app/build.gradle b/android/app/build.gradle index d19fefa0d1..0d7e8c7adb 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -7,8 +7,8 @@ android { applicationId "org.handmadeideas.floccus" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 5004002 - versionName "5.4.2" + versionCode 5004003 + versionName "5.4.3" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/manifest.json b/manifest.json index a1eaebdb69..e1848cfef2 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "floccus bookmarks sync", "short_name": "floccus", - "version": "5.4.2.1", + "version": "5.4.3", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/package-lock.json b/package-lock.json index 4e9414b298..d10cceced1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "floccus", - "version": "5.2.5", + "version": "5.4.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "floccus", - "version": "5.2.5", + "version": "5.4.3", "license": "MPL-2.0", "dependencies": { "@byteowls/capacitor-oauth2": "5.x", @@ -5190,6 +5190,26 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/caniuse-lite": { + "version": "1.0.30001695", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001695.tgz", + "integrity": "sha512-vHyLade6wTgI2u1ec3WQBxv+2BrTERV28UXQu9LO6lZ9pYeMk34vjXFLOxo1A4UBA8XTL4njRQZdno/yYaSmWw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, "node_modules/caseless": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", @@ -20780,4 +20800,4 @@ } } } -} \ No newline at end of file +} diff --git a/package.json b/package.json index c941a3525f..c45a5d6807 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "floccus", - "version": "5.4.2", + "version": "5.4.3", "description": "Sync your bookmarks privately across browsers and devices", "scripts": { "build": "NODE_OPTIONS=--max-old-space-size=5000 gulp",