Skip to content

Commit 62ac8dc

Browse files
committed
Merge branch 'master' into milestone/12.3
2 parents 57c2046 + d0a3b3d commit 62ac8dc

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Table of Contents
22

3+
* [Changelog for 12.2.1](#changelog-for-owncloud-ios-client-1221-2024-04-30)
34
* [Changelog for 12.2.0](#changelog-for-owncloud-ios-client-1220-2024-04-23)
45
* [Changelog for 12.1.0](#changelog-for-owncloud-ios-client-1210-2024-01-29)
56
* [Changelog for 12.0.3](#changelog-for-owncloud-ios-client-1203-2023-08-31)
@@ -23,6 +24,25 @@
2324
* [Changelog for 11.5.1](#changelog-for-owncloud-ios-client-1151-2021-02-17)
2425
* [Changelog for 11.5.0](#changelog-for-owncloud-ios-client-1150-2021-02-10)
2526
* [Changelog for 11.4.5 versions and below](#changelog-for-1145-versions-and-below)
27+
# Changelog for ownCloud iOS Client [12.2.1] (2024-04-30)
28+
The following sections list the changes in ownCloud iOS Client 12.2.1 relevant to
29+
ownCloud admins and users.
30+
31+
[12.2.1]: https://github.com/owncloud/ios-app/compare/milestone/12.2.0...milestone/12.2.1
32+
33+
## Summary
34+
35+
* Bugfix - Detect attempts to bypass a lock timeout by changing the clock: [#1347](https://github.com/owncloud/ios-app/pull/1347)
36+
37+
## Details
38+
39+
* Bugfix - Detect attempts to bypass a lock timeout by changing the clock: [#1347](https://github.com/owncloud/ios-app/pull/1347)
40+
41+
- detect attempts to bypass a lock timeout by changing the clock - code
42+
cleanups/modernizations of `AppLockManager` - supersedes #1324
43+
44+
https://github.com/owncloud/ios-app/pull/1347
45+
2646
# Changelog for ownCloud iOS Client [12.2.0] (2024-04-23)
2747
The following sections list the changes in ownCloud iOS Client 12.2.0 relevant to
2848
ownCloud admins and users.

changelog/12.2.1_2024-04-30/1347

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Fix: Detect attempts to bypass a lock timeout by changing the clock
1+
Bugfix: Detect attempts to bypass a lock timeout by changing the clock
22

33
- detect attempts to bypass a lock timeout by changing the clock
44
- code cleanups/modernizations of `AppLockManager`

ownCloud/Licensing/Offers/LicenseOfferButton.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ class LicenseOfferButton: ThemeButton {
3030
self.translatesAutoresizingMaskIntoConstraints = false
3131
self.setContentCompressionResistancePriority(.required, for: .horizontal)
3232
self.setContentCompressionResistancePriority(.required, for: .vertical)
33+
self.configuration = .filled()
3334
self.buttonFont = UIFont.systemFont(ofSize: UIFont.labelFontSize)
3435
self.buttonVerticalPadding = -5
3536
self.buttonHorizontalPadding = 23
@@ -49,6 +50,7 @@ class LicenseOfferButton: ThemeButton {
4950
super.init(frame: .zero)
5051

5152
self.translatesAutoresizingMaskIntoConstraints = false
53+
self.configuration = .filled()
5254
self.buttonFont = UIFont.systemFont(ofSize: UIFont.labelFontSize)
5355

5456
self.buttonVerticalPadding = 15

0 commit comments

Comments
 (0)