-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[milestone/11.10.1] Milestone 11.10.1 (#1131)
* - Changed app version - Added In-App release notes section * changed app version to unused value * updated Xcode version for release build * [fix/share-sheet-biometrical-unlock] Biometrical Unlock in Share Sheet (#1129) * #5256 workaround for fixing the biometrical unlock in the share sheet, when opening from Boxer app. View disappeared after the biometrical unlock succeeded. Probably because 'completeRequest' was sent from the biometrical unlock extension, which caused a dismiss in the share sheet extension. * - added new app lock setting if biometrical unlock should be used in share sheet - share unlock and last application background date via app and extensions * change default value to YES for using biometrical unlock in share sheet * - normalize code indentation * - normalize code indentation for better comparison * - Branding: add -appURLSchemesForBundleURLName: method to retrieve URL schemes from the app bundle - UIViewController+HostBundleID: category to return the bundle ID of the app hosting/invoking a (share) extension - ShareNavigationController: set OCAppIdentity.hostAppBundleIdentifier using UIViewController+HostBundleID - AppLockSettings: - replace "use-biometrical-unlock-share-sheet" boolean with "share-sheet-biometrical-unlock-by-app" dictionary - implement new logic to turn off biometric authentication based on share sheet invoking app - AppLockManager: - make LAContext() optional throughout methods - move invocation of openURL to central place - remove fixed URL opening of owncloud:// and replace it with the dynamically composed URL AppLockSettings.biometricalAuthenticationRedirectionTargetURL - PasscodeViewController: rename cancelButtonHidden to cancelButtonAvailable because the latter is what it actually does - ownCloud Share Extension/Info.plist: add missing OCAppComponentIdentifier key so that OCAppIdentity.componentIdentifier returns the correct value * - fix code comment * - fix finding #1 by @jesmrec in #1129 Co-authored-by: Matthias Hühne <> Co-authored-by: Felix Schwarz <[email protected]> * QueryFileListTableViewController (#1134) - add category to OCCoreConnectionStatus to quickly determine offline-like states - fix bug #1130 where the folder contents wasn't shown when offline * #5199 fix some automatic color values, if the branding color is bright. Before we only had a look if the branding color is white, but this does not work. Introduced a new welcome style for informal button, because the general informal button color does not work for the login screen in all cases (#1132) Co-authored-by: Matthias Hühne <> * - updated changelog files - updated In-App release notes * Calens changelog updated * moved Calens changelog files to release folder * Calens changelog updated * added fastlane App Store release notes Co-authored-by: Matthias Hühne <> Co-authored-by: Felix Schwarz <[email protected]> Co-authored-by: hosy <[email protected]>
- Loading branch information
1 parent
171987a
commit 327f78f
Showing
28 changed files
with
490 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
13.3.1 | ||
13.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Bugfix: (Branding) Biometrical Unlock in Share Sheet | ||
|
||
Biometrical unlock in the share sheet does not work in some third party apps like Boxer. With new branding parameters it is now possible to disable biometrical unlock in the share sheet or to exclude specific apps. | ||
|
||
https://github.com/owncloud/ios-app/pull/1129 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Bugfix: Show folder contents from cache when offline | ||
|
||
With this fix the app shows the contents of the available folders when offline. | ||
|
||
https://github.com/owncloud/ios-app/issues/1130 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Bugfix: (Branding) Color Issues | ||
|
||
Fix some automatic color values, if the branding color is bright by checking the brightness of the color. | ||
|
||
https://github.com/owncloud/ios-app/pull/1132 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
• UI fixes on iOS 15 | ||
This version fixes some UI problems on iOS 15. | ||
|
||
• Shortcuts Action | ||
The shortcuts action Delete Path Item did not provided configured accounts. | ||
|
||
• Increased Timeout for Copy Action | ||
Timeout for Copy Action was increased up to 10 minutes. | ||
• Available Offline Folders | ||
Shows the contents of the available folders when offline. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
• UI fixes on iOS 15 | ||
This version fixes some UI problems on iOS 15. | ||
|
||
• Shortcuts Action | ||
The shortcuts action Delete Path Item did not provided configured accounts. | ||
|
||
• Increased Timeout for Copy Action | ||
Timeout for Copy Action was increased up to 10 minutes. | ||
• Available Offline Folders | ||
Shows the contents of the available folders when offline. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
• UI fixes on iOS 15 | ||
This version fixes some UI problems on iOS 15. | ||
|
||
• Shortcuts Action | ||
The shortcuts action Delete Path Item did not provided configured accounts. | ||
|
||
• Increased Timeout for Copy Action | ||
Timeout for Copy Action was increased up to 10 minutes. | ||
• Available Offline Folders | ||
Shows the contents of the available folders when offline. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.