Skip to content

Commit 3726323

Browse files
committed
v5.4.5
Signed-off-by: Marcel Klehr <[email protected]>
1 parent b170108 commit 3726323

File tree

6 files changed

+25
-11
lines changed

6 files changed

+25
-11
lines changed

CHANGELOG.md

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

3+
## [5.4.5] - 2025-03-20
4+
5+
### Fixed
6+
7+
* Upgrade to capacitor 7 and Java 21
8+
* fix(Tree#search): Harden search
9+
* fix(Controller): Cap exponential backoff at 1h
10+
* fix(Account): Don't call onSyncFail twice if onSyncStart failed
11+
* fix: Reduce intervention frequency to avoid annoying users
12+
* fix(App): Allow opening any view in a new tab
13+
* fix(Git): Make sure foreign locks are freed when forceLock is set
14+
* fix(NextcloudBookmarks): Make sure lock is freed when forceLock is set
15+
* fix(LocalTabs): Speed up tabs updated callback
16+
317
## [5.4.4]
418

519
### 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 5004004
11-
versionName "5.4.4"
10+
versionCode 5004005
11+
versionName "5.4.5"
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.

ios/App/App.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@
361361
INFOPLIST_FILE = "Floccus New Bookmark/Info.plist";
362362
INFOPLIST_KEY_CFBundleDisplayName = "Floccus New Bookmark";
363363
INFOPLIST_KEY_NSHumanReadableCopyright = "";
364-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
364+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
365365
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
366366
MARKETING_VERSION = 5.4.1;
367367
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
@@ -395,7 +395,7 @@
395395
INFOPLIST_FILE = "Floccus New Bookmark/Info.plist";
396396
INFOPLIST_KEY_CFBundleDisplayName = "Floccus New Bookmark";
397397
INFOPLIST_KEY_NSHumanReadableCopyright = "";
398-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
398+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
399399
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
400400
MARKETING_VERSION = 5.4.1;
401401
MTL_FAST_MATH = YES;
@@ -458,7 +458,7 @@
458458
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
459459
GCC_WARN_UNUSED_FUNCTION = YES;
460460
GCC_WARN_UNUSED_VARIABLE = YES;
461-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
461+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
462462
MARKETING_VERSION = 5.4.1;
463463
MTL_ENABLE_DEBUG_INFO = YES;
464464
ONLY_ACTIVE_ARCH = YES;
@@ -510,7 +510,7 @@
510510
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
511511
GCC_WARN_UNUSED_FUNCTION = YES;
512512
GCC_WARN_UNUSED_VARIABLE = YES;
513-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
513+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
514514
MARKETING_VERSION = 5.4.1;
515515
MTL_ENABLE_DEBUG_INFO = NO;
516516
SDKROOT = iphoneos;
@@ -535,7 +535,7 @@
535535
INFOPLIST_FILE = App/Info.plist;
536536
INFOPLIST_KEY_CFBundleDisplayName = Floccus;
537537
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.productivity";
538-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
538+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
539539
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
540540
MARKETING_VERSION = 5.4.1;
541541
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
@@ -565,7 +565,7 @@
565565
INFOPLIST_FILE = App/Info.plist;
566566
INFOPLIST_KEY_CFBundleDisplayName = Floccus;
567567
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.productivity";
568-
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
568+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
569569
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
570570
MARKETING_VERSION = 5.4.1;
571571
PRODUCT_BUNDLE_IDENTIFIER = org.handmadeideas.floccus;

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.4.4",
5+
"version": "5.4.5",
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.4.4",
5+
"version": "5.4.5",
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.4.4",
3+
"version": "5.4.5",
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)