Skip to content

Commit d70a4dc

Browse files
committed
v5.8.4
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
1 parent 804d859 commit d70a4dc

File tree

5 files changed

+30
-5
lines changed

5 files changed

+30
-5
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## [5.8.4]
4+
5+
* feat(Logger): Persist logs intermittently
6+
* feat(NewAccount): Add predefined webdav service URLs
7+
* fix(Controller): Only schedule sync if current error is transient
8+
* fix: Display allowRedirects option on mobile
9+
* fix(SyncProcess): Fix serialization for continuation persistence
10+
* Fix: Reduce memory pressure by reducing ACTION_CONCURRENCY
11+
* fix(Unidirectional): Only do a single Scanner pass to improve performance
12+
* fix(childrenSimilarity): Make O(n) instead of O(n²)
13+
* fix: Fix typeof undefined checks to handle null
14+
* fix(Diff): Do not call .toString on null
15+
* fix(Folder#toJSON): Make sure children are properly serialized
16+
* fix(BrowserAccountStorage): Use setEntry instead of changeEntry
17+
* fix(Caching#orderFolder): Fix orderFolder algorithm
18+
* fix(LocalTabs): Properly distinguish between window IDs and group IDs
19+
* fix(continuation): Fix continuation loading
20+
* fix(index): Update index incrementally instead of recreating it every time
21+
* fix(SyncProcess): Reduce size of continuation on disk to prevent breaking sync with large amounts of bookmarks
22+
* fix(CachingAdapter): Whitelist more browser-specific URL schemes
23+
* fix(Non-Atomic adapters): Reduce HTTP request parallelism for better throughput
24+
* fix(Account): Add log statement for continuation loading error
25+
* fix(Mappings#remove): Correct logic to always handle both remote and local IDs
26+
* chore: Update dependencies
27+
328
## [5.8.3] - 2025-12-20
429

530
### Fixed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "org.handmadeideas.floccus"
88
minSdkVersion rootProject.ext.minSdkVersion
99
targetSdkVersion rootProject.ext.targetSdkVersion
10-
versionCode 5008003
11-
versionName "5.8.3"
10+
versionCode 5008004
11+
versionName "5.8.4"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
aaptOptions {
1414
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

manifest.chrome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "floccus bookmarks sync",
44
"short_name": "floccus",
5-
"version": "5.8.3",
5+
"version": "5.8.4",
66
"description": "__MSG_DescriptionExtension__",
77
"icons": {
88
"48": "icons/logo.png",

manifest.firefox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "floccus bookmarks sync",
44
"short_name": "floccus",
5-
"version": "5.8.3",
5+
"version": "5.8.4",
66
"description": "__MSG_DescriptionExtension__",
77
"icons": {
88
"48": "icons/logo.png",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "floccus",
3-
"version": "5.8.3",
3+
"version": "5.8.4",
44
"description": "Sync your bookmarks privately across browsers and devices",
55
"scripts": {
66
"build": "NODE_OPTIONS=--max-old-space-size=12000 gulp",

0 commit comments

Comments
 (0)