diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 8c32d3d912..f91bc9accc 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -6,6 +6,7 @@ * New block: Button * Add scroll support inside block picker and block settings * [Android] Fix issue preventing correct placeholder image from displaying during image upload +* [iOS] Fix diplay of large numbers on ordered lists 1.22.0 ------ diff --git a/RNTAztecView.podspec b/RNTAztecView.podspec index 1573868486..d309cfe0ab 100644 --- a/RNTAztecView.podspec +++ b/RNTAztecView.podspec @@ -18,6 +18,6 @@ Pod::Spec.new do |s| s.xcconfig = {'OTHER_LDFLAGS' => '-lxml2', 'HEADER_SEARCH_PATHS' => '/usr/include/libxml2'} s.dependency 'React-Core' - s.dependency 'WordPress-Aztec-iOS', '1.15.0' + s.dependency 'WordPress-Aztec-iOS', '1.16.0' end diff --git a/gutenberg b/gutenberg index 0609348a4a..8ef615e846 160000 --- a/gutenberg +++ b/gutenberg @@ -1 +1 @@ -Subproject commit 0609348a4ad36fc214f6f5adc69bff188433894c +Subproject commit 8ef615e846b50fb4f2608dbaf0591b5078538481 diff --git a/ios/Podfile.lock b/ios/Podfile.lock index c3467e174c..7398035290 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -241,8 +241,8 @@ PODS: - React - RNTAztecView (1.22.0): - React-Core - - WordPress-Aztec-iOS (= 1.15.0) - - WordPress-Aztec-iOS (1.15.0) + - WordPress-Aztec-iOS (= 1.16.0) + - WordPress-Aztec-iOS (1.16.0) - Yoga (1.14.0) DEPENDENCIES: @@ -393,8 +393,8 @@ SPEC CHECKSUMS: ReactCommon: 198c7c8d3591f975e5431bec1b0b3b581aa1c5dd ReactNativeDarkMode: f61376360c5d983907e5c316e8e1c853a8c2f348 RNSVG: 68a534a5db06dcbdaebfd5079349191598caef7b - RNTAztecView: 8f1559db67161d20d394291a8adca2e473ac365e - WordPress-Aztec-iOS: 004a458e7c4a7b0e6ed1f40695f4ce3b35ba040f + RNTAztecView: 19eb77f908e7d834e35b8f9b323b9069ace39e86 + WordPress-Aztec-iOS: 64a2989d25befb5ce086fac440315f696026ffd5 Yoga: f2a7cd4280bfe2cca5a7aed98ba0eb3d1310f18b PODFILE CHECKSUM: 2ca635b0121a10753500623fbaee9edd0fe6ef92 diff --git a/react-native-aztec/ios/RNTAztecView/RCTAztecView.swift b/react-native-aztec/ios/RNTAztecView/RCTAztecView.swift index af6033c6be..6d4e60a3ed 100644 --- a/react-native-aztec/ios/RNTAztecView/RCTAztecView.swift +++ b/react-native-aztec/ios/RNTAztecView/RCTAztecView.swift @@ -141,8 +141,7 @@ class RCTAztecView: Aztec.TextView { delegate = self textContainerInset = .zero contentInset = .zero - textContainer.lineFragmentPadding = 0 - Aztec.Metrics.listTextIndentation = 24 + textContainer.lineFragmentPadding = 0 addPlaceholder() textDragInteraction?.isEnabled = false storage.htmlConverter.characterToReplaceLastEmptyLine = Character(.zeroWidthSpace)