File tree Expand file tree Collapse file tree 7 files changed +2575
-18284
lines changed
Classes/ViewRelated/Aztec/Extensions Expand file tree Collapse file tree 7 files changed +2575
-18284
lines changed Original file line number Diff line number Diff line change 55 base64
66 nkf
77 rexml
8- activesupport (7.2.1 )
8+ activesupport (7.2.2 )
99 base64
10+ benchmark (>= 0.3 )
1011 bigdecimal
1112 concurrent-ruby (~> 1.0 , >= 1.3.1 )
1213 connection_pool (>= 2.2.5 )
4243 aws-eventstream (~> 1 , >= 1.0.2 )
4344 babosa (1.0.4 )
4445 base64 (0.2.0 )
46+ benchmark (0.3.0 )
4547 bigdecimal (3.1.8 )
4648 buildkit (1.6.0 )
4749 sawyer (>= 0.6 )
5153 cork
5254 nap
5355 open4 (~> 1.3 )
54- cocoapods (1.15.2 )
56+ cocoapods (1.16.1 )
5557 addressable (~> 2.8 )
5658 claide (>= 1.0.2 , < 2.0 )
57- cocoapods-core (= 1.15.2 )
59+ cocoapods-core (= 1.16.1 )
5860 cocoapods-deintegrate (>= 1.0.3 , < 2.0 )
5961 cocoapods-downloader (>= 2.1 , < 3.0 )
6062 cocoapods-plugins (>= 1.0.0 , < 2.0 )
6870 molinillo (~> 0.8.0 )
6971 nap (~> 1.0 )
7072 ruby-macho (>= 2.3.0 , < 3.0 )
71- xcodeproj (>= 1.23 .0 , < 2.0 )
72- cocoapods-core (1.15.2 )
73+ xcodeproj (>= 1.26 .0 , < 2.0 )
74+ cocoapods-core (1.16.1 )
7375 activesupport (>= 5.0 , < 8 )
7476 addressable (~> 2.8 )
7577 algoliasearch (~> 1.0 )
273275 concurrent-ruby (~> 1.0 )
274276 java-properties (0.3.0 )
275277 jmespath (1.6.2 )
276- json (2.7.2 )
278+ json (2.7.5 )
277279 jwt (2.9.0 )
278280 base64
279281 kramdown (2.4.0 )
289291 molinillo (0.8.0 )
290292 multi_json (1.15.0 )
291293 multipart-post (2.4.1 )
292- nanaimo (0.3 .0 )
294+ nanaimo (0.4 .0 )
293295 nap (1.1.0 )
294296 naturally (2.2.1 )
295297 netrc (0.11.0 )
@@ -377,13 +379,13 @@ GEM
377379 uber (0.1.0 )
378380 unicode-display_width (2.6.0 )
379381 word_wrap (1.0.0 )
380- xcodeproj (1.25 .0 )
382+ xcodeproj (1.26 .0 )
381383 CFPropertyList (>= 2.3.3 , < 4.0 )
382384 atomos (~> 0.1.3 )
383385 claide (>= 1.0.2 , < 2.0 )
384386 colored2 (~> 3.1 )
385- nanaimo (~> 0.3 .0 )
386- rexml (>= 3.3.2 , < 4.0 )
387+ nanaimo (~> 0.4 .0 )
388+ rexml (>= 3.3.6 , < 4.0 )
387389 xcpretty (0.3.0 )
388390 rouge (~> 2.0.7 )
389391 xcpretty-travis-formatter (1.0.1 )
Original file line number Diff line number Diff line change @@ -112,6 +112,7 @@ post_install do |installer|
112112 installer . pods_project . targets . each do |target |
113113 target . build_configurations . each do |config |
114114 config . build_settings [ 'CODE_SIGN_IDENTITY' ] = ''
115+ config . build_settings [ 'IPHONEOS_DEPLOYMENT_TARGET' ] = '13.0'
115116 end
116117 end
117118
Original file line number Diff line number Diff line change @@ -27,6 +27,6 @@ SPEC CHECKSUMS:
2727 WordPress-Aztec-iOS: 3732c6d865a5c9f35788377bdeda8a80ea10d0a1
2828 WordPress-Editor-iOS: 453345420ced3d3ef20f0051b3df46ff10281e0c
2929
30- PODFILE CHECKSUM: f30ae9db730f660b2c300f7761c19ab78f244d90
30+ PODFILE CHECKSUM: 99aff5ecb96391804fd8f28b29fd4e350ecd4b2e
3131
32- COCOAPODS: 1.15.2
32+ COCOAPODS: 1.16.1
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ extension Header.HeaderType {
1616 case . h4: return FormattingIdentifier . header4
1717 case . h5: return FormattingIdentifier . header5
1818 case . h6: return FormattingIdentifier . header6
19+ @unknown default : fatalError ( )
1920 }
2021 }
2122
@@ -28,6 +29,7 @@ extension Header.HeaderType {
2829 case . h4: return AppLocalizedString ( " Heading 4 " , comment: " H4 Aztec Style " )
2930 case . h5: return AppLocalizedString ( " Heading 5 " , comment: " H5 Aztec Style " )
3031 case . h6: return AppLocalizedString ( " Heading 6 " , comment: " H6 Aztec Style " )
32+ @unknown default : fatalError ( )
3133 }
3234 }
3335
@@ -40,6 +42,7 @@ extension Header.HeaderType {
4042 case . h4: return AppLocalizedString ( " Switches to the Heading 4 font size " , comment: " Accessibility Identifier for the H4 Aztec Style " )
4143 case . h5: return AppLocalizedString ( " Switches to the Heading 5 font size " , comment: " Accessibility Identifier for the H5 Aztec Style " )
4244 case . h6: return AppLocalizedString ( " Switches to the Heading 6 font size " , comment: " Accessibility Identifier for the H6 Aztec Style " )
45+ @unknown default : fatalError ( )
4346 }
4447 }
4548
Original file line number Diff line number Diff line change @@ -9,20 +9,23 @@ extension TextList.Style {
99 switch self {
1010 case . ordered: return FormattingIdentifier . orderedlist
1111 case . unordered: return FormattingIdentifier . unorderedlist
12+ @unknown default : fatalError ( )
1213 }
1314 }
1415
1516 var description : String {
1617 switch self {
1718 case . ordered: return " Ordered List "
1819 case . unordered: return " Unordered List "
20+ @unknown default : fatalError ( )
1921 }
2022 }
2123
2224 var accessibilityLabel : String {
2325 switch self {
2426 case . ordered: return AppLocalizedString ( " Toggles the ordered list style " , comment: " Accessibility Identifier for the Aztec Ordered List Style. " )
2527 case . unordered: return AppLocalizedString ( " Toggles the unordered list style " , comment: " Accessibility Identifier for the Aztec Unordered List Style " )
28+ @unknown default : fatalError ( )
2629 }
2730 }
2831
You can’t perform that action at this time.
0 commit comments