Skip to content

Commit 98b49c4

Browse files
committed
Merge branch 'trunk' into task/17087-reaction_moderation_bar_spacing
2 parents c53f842 + acfe2cd commit 98b49c4

7 files changed

Lines changed: 131 additions & 109 deletions

File tree

.buildkite/cache-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
common_params:
88
# Common plugin settings to use with the `plugins` key.
99
- &common_plugins
10-
- automattic/bash-cache#v1.5.0
10+
- automattic/bash-cache#2.2.0
1111
- automattic/git-s3-cache#v1.1.0:
1212
bucket: "a8c-repo-mirrors"
1313
repo: "wordpress-mobile/wordpress-ios/"

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
common_params:
33
# Common plugin settings to use with the `plugins` key.
44
- &common_plugins
5-
- automattic/bash-cache#v1.6.0
5+
- automattic/bash-cache#2.2.0
66
- automattic/git-s3-cache#v1.1.0:
77
bucket: "a8c-repo-mirrors"
88
repo: "wordpress-mobile/wordpress-ios/"

.buildkite/release-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
common_params:
55
# Common plugin settings to use with the `plugins` key.
66
- &common_plugins
7-
- automattic/bash-cache#v1.5.0
7+
- automattic/bash-cache#2.2.0
88
- automattic/git-s3-cache#v1.1.0:
99
bucket: "a8c-repo-mirrors"
1010
repo: "wordpress-mobile/wordpress-ios/"

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ abstract_target 'Apps' do
169169
## Gutenberg (React Native)
170170
## =====================
171171
##
172-
gutenberg :tag => 'v1.74.0-alpha1'
172+
gutenberg :tag => 'v1.74.0'
173173

174174
## Third party libraries
175175
## =====================

Podfile.lock

Lines changed: 99 additions & 99 deletions
Large diffs are not rendered by default.

RELEASE-NOTES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* [*] a11y: VoiceOver has been improved on the Menus view and now announces changes to ordering. [#18155]
44
* [*] Notifications list: remove comment Trash swipe action. [#18349]
55
* [*] Reader: Fixed a bug that caused cut off content in reader web view [#16106]
6+
* [**] Block Editor: Quote block: Adds support for V2 behind a feature flag [https://github.com/WordPress/gutenberg/pull/40133]
7+
* [**] Block Editor: Update "add block" button's style in default editor view [https://github.com/WordPress/gutenberg/pull/39726]
8+
* [*] Block Editor: Remove banner error notification on upload failure [https://github.com/WordPress/gutenberg/pull/39694]
69
* [*] My Site: display site name in My Site screen nav title [#18373]
710

811
19.6

WordPress/Classes/ViewRelated/Feature Introduction/Blogging Prompts/BloggingPromptsFeatureDescriptionView.swift

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,38 @@ class BloggingPromptsFeatureDescriptionView: UIView, NibLoadable {
2020
private extension BloggingPromptsFeatureDescriptionView {
2121

2222
func configureView() {
23-
promptCardView.layer.borderWidth = Style.borderWidth
24-
promptCardView.layer.cornerRadius = Style.cardCornerRadius
25-
promptCardView.layer.borderColor = Style.borderColor
23+
configurePromptCard()
24+
configureDescription()
25+
configureNote()
26+
}
2627

28+
func configurePromptCard() {
2729
let promptCard = DashboardPromptsCardCell()
2830
promptCard.configureForExampleDisplay()
2931
promptCard.translatesAutoresizingMaskIntoConstraints = false
32+
33+
promptCard.layer.borderWidth = Style.borderWidth
34+
promptCard.layer.cornerRadius = Style.cardCornerRadius
35+
promptCard.layer.borderColor = Style.cardBorderColor
36+
37+
promptCard.layer.shadowOffset = Style.cardShadowOffset
38+
promptCard.layer.shadowOpacity = Style.cardShadowOpacity
39+
promptCard.layer.shadowRadius = Style.cardShadowRadius
40+
3041
promptCardView.addSubview(promptCard)
3142
promptCardView.pinSubviewToSafeArea(promptCard)
43+
}
3244

45+
func configureDescription() {
3346
descriptionLabel.font = Style.labelFont
3447
descriptionLabel.textColor = Style.textColor
3548
descriptionLabel.text = Strings.featureDescription
49+
}
3650

51+
func configureNote() {
3752
noteTextView.layer.borderWidth = Style.borderWidth
3853
noteTextView.layer.cornerRadius = Style.noteCornerRadius
39-
noteTextView.layer.borderColor = Style.borderColor
54+
noteTextView.layer.borderColor = Style.noteBorderColor
4055
noteTextView.textContainerInset = Style.noteInsets
4156
configureNoteText()
4257
}
@@ -69,8 +84,12 @@ private extension BloggingPromptsFeatureDescriptionView {
6984
static let textColor: UIColor = .textSubtle
7085
static let noteInsets = UIEdgeInsets(top: 12, left: 12, bottom: 12, right: 12)
7186
static let noteCornerRadius: CGFloat = 6
72-
static let cardCornerRadius: CGFloat = 16
87+
static let cardCornerRadius: CGFloat = 10
88+
static let cardShadowRadius: CGFloat = 14
89+
static let cardShadowOpacity: Float = 0.1
90+
static let cardShadowOffset = CGSize(width: 0, height: 10.0)
91+
static let cardBorderColor = UIColor(red: 0.882, green: 0.886, blue: 0.886, alpha: 1).cgColor
7392
static let borderWidth: CGFloat = 1
74-
static let borderColor = UIColor.textQuaternary.cgColor
93+
static let noteBorderColor = UIColor.textQuaternary.cgColor
7594
}
7695
}

0 commit comments

Comments
 (0)