diff --git a/CHANGELOG.md b/CHANGELOG.md index 79d3df338d..59258c21f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [5.3.1] - 2024-10-09 + +### Fixed + +* [native] fix(Linkwarden): Remove dispatch of REQUEST_NETWORK_PERMISSIONS +* [native] fix(Linkwarden): Options were not showing +* fix: Don't break if browser doesn't implement permissions API +* fix(GoogleDrive): Try to delete superfluous files +* fix(NextcloudBookmarks): Run javascript feature detection earlier to avoid losing javascript bookmarks upon browser start +* fix(Html): Only escape unsafe characters in HTML + ## [5.3.0] - 2024-09-28 (aka v5.3.0.2) diff --git a/android/app/build.gradle b/android/app/build.gradle index e513dfdb21..f6aac55365 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 5003000 - versionName "5.3.0" + versionCode 5003001 + versionName "5.3.1" 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.chrome.json b/manifest.chrome.json index 2d08401ac3..3f5d968645 100644 --- a/manifest.chrome.json +++ b/manifest.chrome.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "floccus bookmarks sync", "short_name": "floccus", - "version": "5.3.0.2", + "version": "5.3.1", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/manifest.firefox.json b/manifest.firefox.json index 719c39bba9..79f012916b 100644 --- a/manifest.firefox.json +++ b/manifest.firefox.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "floccus bookmarks sync", "short_name": "floccus", - "version": "5.3.0.2", + "version": "5.3.1", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/manifest.json b/manifest.json index 2d08401ac3..3f5d968645 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "floccus bookmarks sync", "short_name": "floccus", - "version": "5.3.0.2", + "version": "5.3.1", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/package.json b/package.json index 4819535261..a453c499d7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "floccus", - "version": "5.3.0", + "version": "5.3.1", "description": "Sync your bookmarks privately across browsers and devices", "scripts": { "build": "NODE_OPTIONS=--max-old-space-size=5000 gulp",