From 0581204dd70d3433f698766295a3154f633bb20d Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Sun, 26 Jun 2022 12:34:18 +0200 Subject: [PATCH] v4.16.0 --- CHANGELOG.md | 18 ++++++++++++++++++ android/app/build.gradle | 4 ++-- ios/App/App/Info.plist | 2 ++ manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 6 files changed, 26 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af2b9975f8..c6d2c09d2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## v4.16.0 + +### New + - Performance improvements + - Improve speed for Nextcloud Bookmarks + +### Fixed + - SyncProcesses: Remove superfluous awaits that would stall the whole app + - a11y: improve syncing icon in browser + - ios: Hide status bar + - Fix InAppBrowser usage to comply with Apple policies + - getFavicon: Load /favicon.ico as a fallback + - UX: Remove min-width on #app + - Replace merge icon to avoid confusion with sync icon (#1198) + - OptionSyncStrategy: Improve wording + - Options: Do not show strategy if isBrowser + - [native] Fix Alphabetical sorting + ## v4.15.0 ### New diff --git a/android/app/build.gradle b/android/app/build.gradle index 0f6afc21ff..856c772b7d 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -6,8 +6,8 @@ android { applicationId "org.handmadeideas.floccus" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 4015000 - versionName "4.15.0" + versionCode 4016000 + versionName "4.16.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/ios/App/App/Info.plist b/ios/App/App/Info.plist index 26013d8db6..acd9fd17a8 100644 --- a/ios/App/App/Info.plist +++ b/ios/App/App/Info.plist @@ -37,6 +37,8 @@ armv7 + UIStatusBarHidden + UISupportedInterfaceOrientations UIInterfaceOrientationPortrait diff --git a/manifest.json b/manifest.json index 39955611fc..212f216822 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "floccus bookmarks sync", "short_name": "floccus", - "version": "4.15.0", + "version": "4.16.0", "description": "__MSG_DescriptionExtension__", "icons": { "48": "icons/logo.png", diff --git a/package-lock.json b/package-lock.json index 450f19604e..a07e620406 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "floccus", - "version": "4.15.0", + "version": "4.16.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "floccus", - "version": "4.15.0", + "version": "4.16.0", "license": "MPL-2.0", "dependencies": { "@byteowls/capacitor-oauth2": "^3.0.1", diff --git a/package.json b/package.json index e1d0f02b47..57da5b83fc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "floccus", - "version": "4.15.0", + "version": "4.16.0", "description": "Sync your bookmarks privately across browsers and devices", "scripts": { "build": "gulp",