diff --git a/CHANGELOG.md b/CHANGELOG.md index 064dc53e79..87ac7eb91e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [5.4.0] - 2024-11-28 +## [5.4.0] - 2024-11-30 ### New * enh(Tree): Add confirmation before deleting items @@ -11,11 +11,16 @@ * [native] enh: Allow selecting up down sync by long press on sync button * [native] enh: Remember sort option & sort folders first * [native] enh: Improve search by ranking better matches higher +* enh(Account#sync): Allow forcing sync when profile is scheduled + +### Fixed * [native] fix(DialogChooseFolder): Sort folders according to sort order setting * [native] fix(newbookmark): Use neutral user agent to get correct title -* fix(Scanner): Improve move stability with same-titled folders * [native] fix(Tree): Sorting by link +* [native] fix: Properly reset accounts on load +* fix(Scanner): Improve move stability with same-titled folders * fix(GoogleDrive|WebDAV): fix _.includes is not a function error +* fix(Account#sync): Do not break lock automatically ## [5.3.4] - 2024-11-17 diff --git a/android/app/build.gradle b/android/app/build.gradle index 8bb27b270d..3869b5a218 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 5003004 - versionName "5.3.4" + versionCode 5004000 + versionName "5.4.0" 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 9781016123..45f208811e 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.4", + "version": "5.4.0", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/manifest.firefox.json b/manifest.firefox.json index 37597d644e..cfe2c1fa00 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.4", + "version": "5.4.0", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/manifest.json b/manifest.json index 9781016123..45f208811e 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "floccus bookmarks sync", "short_name": "floccus", - "version": "5.3.4", + "version": "5.4.0", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/package.json b/package.json index bfee00bf1a..d43945b82b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "floccus", - "version": "5.3.4", + "version": "5.4.0", "description": "Sync your bookmarks privately across browsers and devices", "scripts": { "build": "NODE_OPTIONS=--max-old-space-size=5000 gulp",