File tree Expand file tree Collapse file tree 3 files changed +23
-1
lines changed
changelog/12.2.1_2024-04-30
ownCloud/Licensing/Offers Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Table of Contents
2
2
3
+ * [ Changelog for 12.2.1] ( #changelog-for-owncloud-ios-client-1221-2024-04-30 )
3
4
* [ Changelog for 12.2.0] ( #changelog-for-owncloud-ios-client-1220-2024-04-23 )
4
5
* [ Changelog for 12.1.0] ( #changelog-for-owncloud-ios-client-1210-2024-01-29 )
5
6
* [ Changelog for 12.0.3] ( #changelog-for-owncloud-ios-client-1203-2023-08-31 )
23
24
* [ Changelog for 11.5.1] ( #changelog-for-owncloud-ios-client-1151-2021-02-17 )
24
25
* [ Changelog for 11.5.0] ( #changelog-for-owncloud-ios-client-1150-2021-02-10 )
25
26
* [ 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
+
26
46
# Changelog for ownCloud iOS Client [ 12.2.0] (2024-04-23)
27
47
The following sections list the changes in ownCloud iOS Client 12.2.0 relevant to
28
48
ownCloud admins and users.
Original file line number Diff line number Diff line change 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
2
2
3
3
- detect attempts to bypass a lock timeout by changing the clock
4
4
- code cleanups/modernizations of `AppLockManager`
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ class LicenseOfferButton: ThemeButton {
30
30
self . translatesAutoresizingMaskIntoConstraints = false
31
31
self . setContentCompressionResistancePriority ( . required, for: . horizontal)
32
32
self . setContentCompressionResistancePriority ( . required, for: . vertical)
33
+ self . configuration = . filled( )
33
34
self . buttonFont = UIFont . systemFont ( ofSize: UIFont . labelFontSize)
34
35
self . buttonVerticalPadding = - 5
35
36
self . buttonHorizontalPadding = 23
@@ -49,6 +50,7 @@ class LicenseOfferButton: ThemeButton {
49
50
super. init ( frame: . zero)
50
51
51
52
self . translatesAutoresizingMaskIntoConstraints = false
53
+ self . configuration = . filled( )
52
54
self . buttonFont = UIFont . systemFont ( ofSize: UIFont . labelFontSize)
53
55
54
56
self . buttonVerticalPadding = 15
You can’t perform that action at this time.
0 commit comments