diff --git a/CHANGELOG.md b/CHANGELOG.md index 41f40787..cbb4ed86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,21 @@ # Changelog +## [5.2.7] - 2024-09-03 + +### Fixed + +* fix: Filter out "file:" URLs when syncing tabs on firefox +* fix: Log error from google API when retrieving access token +* [native] fix: Tree comparison on RELOAD_TREE_FROM_DISK was broken +* [native] fix: make builds reproducible again +* fix(Html): Encode unsafe characters as HTML entities + ## [5.2.6] - 2024-08-11 ### Fixed -* chore: update capacitor/core Marcel Klehr 2 minutes ago -* fix(Update): Show floccus logo on update page Marcel Klehr Today 10:32 +* chore: update capacitor/core +* fix(Update): Show floccus logo on update page * fix: Refactor sync algorithm introducing location types (fixed 6 correctness bugs along the way) ## [5.2.5] - 2024-07-25 diff --git a/android/app/build.gradle b/android/app/build.gradle index b89a51d1..c6e99466 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 5002006 - versionName "5.2.6" + versionCode 5002007 + versionName "5.2.7" 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 4ab7d14c..2c8944a2 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.2.6", + "version": "5.2.7", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/manifest.firefox.json b/manifest.firefox.json index 453abdf5..a218b421 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.2.6", + "version": "5.2.7", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/manifest.json b/manifest.json index 4ab7d14c..2c8944a2 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "floccus bookmarks sync", "short_name": "floccus", - "version": "5.2.6", + "version": "5.2.7", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/package.json b/package.json index 7ac62429..cf899d1e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "floccus", - "version": "5.2.6", + "version": "5.2.7", "description": "Sync your bookmarks privately across browsers and devices", "scripts": { "build": "NODE_OPTIONS=--max-old-space-size=5000 gulp",