Skip to content

Commit 48249b1

Browse files
committed
v5.5.3
Signed-off-by: Marcel Klehr <[email protected]>
1 parent 30b0e49 commit 48249b1

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

CHANGELOG.md

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

3+
## [5.5.3] - 2025-04-27
4+
5+
### Fixed
6+
* perf(GoogleDrive): Speed up "no changes" code path
7+
* perf(Folder#clone): Make Folder#clone use prototype inheritance to save ALOT of memory
8+
* perf(BrowserAccount): Don't use browser.bookmarks.getTree() if avoidable
9+
* refactor(isUsingBrowserTabs): Expose Resource#isUsingBrowserTabs
10+
* fix(CachingTreeWrapper): Allow changes to the live tree without disturbing the cache
11+
* fix(App#openInNewTab): Use browser.tabs to open new tab instead of window.open (Didn't work in Edge for Android)
12+
* fix(Default#applyAdditionFailsafe): Only kick in if at least 20 bookmarks are being added
13+
* fix(WebDAV): Add Depth header to PROPFIND for getting filesize
14+
315
## [5.5.2] - 2025-04-16
416

517
### 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 5005002
11-
versionName "5.5.2"
10+
versionCode 5005003
11+
versionName "5.5.3"
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.5.2",
5+
"version": "5.5.3",
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.5.2",
5+
"version": "5.5.3",
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.5.2",
3+
"version": "5.5.3",
44
"description": "Sync your bookmarks privately across browsers and devices",
55
"scripts": {
66
"build": "NODE_OPTIONS=--max-old-space-size=5000 gulp",

0 commit comments

Comments
 (0)