Skip to content

Commit 6f6cc7b

Browse files
authored
Merge pull request #19631 from wordpress-mobile/release/23.7
Merge 23.7 code freeze to trunk
2 parents 51c5206 + 04f4f23 commit 6f6cc7b

7 files changed

Lines changed: 50 additions & 15 deletions

File tree

RELEASE-NOTES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
*** PLEASE FOLLOW THIS FORMAT: [<priority indicator, more stars = higher priority>] <description> [<PR URL>]
22

3+
23.8
4+
-----
5+
6+
37
23.7
48
-----
59
* [***] [Jetpack-only] Added the All Domains screen enabling the users to manage their domains from within the app [https://github.com/wordpress-mobile/WordPress-Android/pull/19599]
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
- New domain/plan options and checkout screens in site creation process
2-
- My Site navigation has links to common sections
3-
- Inactive social icons and Synced Pattern titles are visible in dark mode for block-based themes
4-
- Content can be converted into blocks in the Classic editor
1+
* [***] [Jetpack-only] Added the All Domains screen enabling the users to manage their domains from within the app [https://github.com/wordpress-mobile/WordPress-Android/pull/19599]
2+
* [*] Block Editor: Fix error when pasting deeply nested structure content [https://github.com/WordPress/gutenberg/pull/55613]
3+
* [*] Block Editor: Fix crash related to accessing undefined value in `TextColorEdit` [https://github.com/WordPress/gutenberg/pull/55664]
4+
* [**] Posts & Pages: Redesigned the posts and pages screen. We’ve consolidated the “default” and “compact” display options [https://github.com/wordpress-mobile/WordPress-Android/issues/19341] & [https://github.com/wordpress-mobile/WordPress-Android/issues/19348]
5+
* [*] Posts & Pages: Moved actions to a context menu and added new actions such as “comment”, “settings” [https://github.com/wordpress-mobile/WordPress-Android/issues/19343] & [https://github.com/wordpress-mobile/WordPress-Android/issues/19356]
6+
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
- Inactive social icons and Synced Pattern titles are no longer invisible in block-based themes using dark mode. Good try, fellas, but you’re not as ninja as you think.
2-
- In the Classic editor, you can now convert your content into blocks with the click of a button.
1+
* [*] Block Editor: Fix error when pasting deeply nested structure content [https://github.com/WordPress/gutenberg/pull/55613]
2+
* [*] Block Editor: Fix crash related to accessing undefined value in `TextColorEdit` [https://github.com/WordPress/gutenberg/pull/55664]
3+
* [**] Posts & Pages: Redesigned the posts and pages screen. We’ve consolidated the “default” and “compact” display options [https://github.com/wordpress-mobile/WordPress-Android/issues/19341] & [https://github.com/wordpress-mobile/WordPress-Android/issues/19348]
4+
* [*] Posts & Pages: Moved actions to a context menu and added new actions such as “comment”, “settings” [https://github.com/wordpress-mobile/WordPress-Android/issues/19343] & [https://github.com/wordpress-mobile/WordPress-Android/issues/19356]
5+

WordPress/src/main/res/values/strings.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3016,7 +3016,7 @@
30163016
<string name="get_started" tools:ignore="UnusedResources" a8c-src-lib="login">Get Started</string>
30173017
<string name="next">Next</string>
30183018
<string name="check_email" tools:ignore="UnusedResources" a8c-src-lib="login">Check email</string>
3019-
<string name="enter_verification_code" tools:ignore="UnusedResources" a8c-src-lib="login">Almost there! Please enter the verification code from your Authenticator app.</string>
3019+
<string name="enter_verification_code" tools:ignore="UnusedResources" a8c-src-lib="login">Almost there! Please enter the verification code for WordPress.com from your authenticator app.</string>
30203020
<string name="enter_verification_code_sms" tools:ignore="UnusedResources" a8c-src-lib="login">We sent a text message to the phone number ending in %s. Please enter the verification code in the SMS.</string>
30213021
<string name="login_text_otp" tools:ignore="UnusedResources" a8c-src-lib="login">Text me a code instead</string>
30223022
<string name="login_text_otp_another" tools:ignore="UnusedResources" a8c-src-lib="login">Text me another code instead</string>
@@ -4797,4 +4797,7 @@ translators: %s: Select control option value e.g: "Auto, 25%". -->
47974797
<string name="account_and_settings">Account and Settings</string>
47984798
<string name="gutenberg_native_alternatively_you_can_convert_the_content_to_blocks" tools:ignore="UnusedResources" a8c-src-lib="gutenberg">Alternatively, you can convert the content to blocks.</string>
47994799
<string name="gutenberg_native_s_block_converted_to_blocks" tools:ignore="UnusedResources" a8c-src-lib="gutenberg">\'%s\' block converted to blocks</string>
4800+
<string name="login_text_security_key" tools:ignore="UnusedResources" a8c-src-lib="login">Use a security key</string>
4801+
<string name="login_error_security_key" tools:ignore="UnusedResources" a8c-src-lib="login">There was some trouble with the Security key login</string>
4802+
<string name="notification_security_key_needed" tools:ignore="UnusedResources" a8c-src-lib="login">Please provide your security key to continue.</string>
48004803
</resources>

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ ext {
2222
automatticTracksVersion = '3.3.0'
2323
gutenbergMobileVersion = 'v1.108.0'
2424
wordPressAztecVersion = 'v1.8.0'
25-
wordPressFluxCVersion = 'trunk-da7285ca3e37af05b86442347a55bfb561838988'
26-
wordPressLoginVersion = 'trunk-e5db5c9a6264163d45322a6c516ae60e0c87481e'
25+
wordPressFluxCVersion = '2.55.0'
26+
wordPressLoginVersion = '1.8.0'
2727
wordPressPersistentEditTextVersion = '1.0.2'
2828
wordPressUtilsVersion = '3.10.0'
2929
indexosMediaForMobileVersion = '43a9026f0973a2f0a74fa813132f6a16f7499c3a'

fastlane/resources/values/strings.xml

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@
280280
<string name="multiple_status_label_delimiter" translatable="false">\u0020·\u0020</string>
281281
<string name="post_list_toggle_item_layout_cards_view">Switch to cards view</string>
282282
<string name="post_list_toggle_item_layout_list_view">Switch to list view</string>
283+
<string name="post_list_toggle_author_filter">Filter by author</string>
283284
<string name="post_waiting_for_connection_publish">We\'ll publish the post when your device is back online.</string>
284285
<string name="post_waiting_for_connection_pending">We\'ll submit your post for review when your device is back online.</string>
285286
<string name="post_waiting_for_connection_scheduled">We\'ll schedule your post when your device is back online.</string>
@@ -308,6 +309,8 @@
308309
<string name="button_copy">Duplicate</string>
309310
<string name="button_copy_link">Copy link</string>
310311
<string name="button_promote_with_blaze">Promote with Blaze</string>
312+
<string name="button_comments" translatable="false">@string/comments</string>
313+
<string name="button_share" translatable="false">@string/share_desc</string>
311314

312315
<!-- post uploads -->
313316
<string name="upload_failed_param">Upload failed for \"%s\"</string>
@@ -1759,6 +1762,7 @@
17591762
<string name="post_status_post_scheduled">Scheduled</string>
17601763
<string name="post_status_post_trashed">Trashed</string>
17611764
<string name="post_status_post_published">Published</string>
1765+
<string name="post_status_post_edited">Edited</string>
17621766

17631767
<string-array name="post_settings_statuses" translatable="false">
17641768
<item>@string/post_status_publish_post</item>
@@ -2395,6 +2399,7 @@
23952399
<string name="my_site_blogging_prompt_card_menu_skip">Skip for today</string>
23962400
<string name="my_site_blogging_prompt_card_menu_remove">Turn off prompts</string>
23972401
<string name="my_site_blogging_prompt_card_attribution_dayone">From &lt;b&gt;DayOne&lt;/b&gt;</string>
2402+
<string name="my_site_blogging_prompt_card_attribution_bloganuary">From &lt;b&gt;Bloganuary&lt;/b&gt;</string>
23982403
<string name="my_site_blogging_prompt_card_menu_learn_more">Learn more</string>
23992404
<string name="my_site_blogging_prompt_card_skipped_snackbar">Skipped today\'s blogging prompt</string>
24002405
<string name="my_site_blogging_prompt_card_removed_snackbar_title">Blogging Prompts hidden</string>
@@ -2651,6 +2656,7 @@
26512656

26522657
<!-- Domain Registration -->
26532658
<string name="domains_title">Domains</string>
2659+
<string name="site_domain_title">Site Domain</string>
26542660
<string name="register_domain">Register Domain</string>
26552661
<string name="domains_suggestions_select_domain">Select domain</string>
26562662
<string name="domains_suggestions_empty_list">No suggestions found</string>
@@ -2706,15 +2712,16 @@
27062712

27072713
<!-- Domain Management -->
27082714
<string name="domain_management_expires">Expires %1$s</string>
2709-
<string name="domain_management_my_domains_title">My Domains</string>
2715+
<string name="domain_management_my_domains_title">All Domains</string>
27102716
<string name="domain_management_purchase_a_domain">Purchase a domain</string>
27112717
<string name="domain_management_search_your_domains">Search your domains</string>
27122718
<string name="domain_management_open_domain_details">Open domain details</string>
2713-
<string name="domain_management_error_title">Couldn\'t Update</string>
2714-
<string name="domain_management_error_subtitle">Check that you\'re online and refresh.</string>
2719+
<string name="domain_management_error_title">Couldn\'t retrieve your domains</string>
2720+
<string name="domain_management_error_subtitle">Check that you\'re online and pull to refresh.</string>
27152721
<string name="domain_management_empty_title">You don\'t have any domains</string>
27162722
<string name="domain_management_empty_subtitle">Tap below to find your perfect domain.</string>
27172723
<string name="domain_management_empty_find_domain">Find a domain</string>
2724+
<string name="domain_management_site_domains_button">All</string>
27182725

27192726
<!-- Domain Management - Purchase Domain Screen -->
27202727
<string name="purchase_domain_screen_title">Purchase Domain</string>
@@ -2728,6 +2735,18 @@
27282735
<string name="purchase_domain_screen_existing_domain_card_description">Use with a site you already started.</string>
27292736
<string name="purchase_domain_screen_existing_domain_card_button">Choose Site</string>
27302737
<string name="purchase_domain_screen_discount_notice">*A free domain for one year is included with all paid annual plans.</string>
2738+
<string name="purchase_domain_screen_error_title">Error</string>
2739+
<string name="purchase_domain_screen_error_subtitle">Something went wrong while adding the domain to the cart. Make sure you are online and retry.</string>
2740+
<string name="purchase_domain_screen_error_button_title">OK</string>
2741+
2742+
<!-- Domain Management - Search For A New Domain Screen -->
2743+
<string name="new_domain_search_screen_title">Search for a domain</string>
2744+
<string name="new_domain_search_screen_input_placeholder">Type to get more suggestions</string>
2745+
<string name="new_domain_search_screen_transfer_domain_description">Looking to transfer a domain you already own?</string>
2746+
<string name="new_domain_search_screen_transfer_domain_button">Transfer domain</string>
2747+
<string name="new_domain_search_screen_list_item_regular_price">%s / year</string>
2748+
<string name="new_domain_search_screen_list_item_sale_price">%s for the first year</string>
2749+
<string name="new_domain_search_screen_error_title">Couldn\'t retrieve domains</string>
27312750

27322751
<!-- Automated Transfer Eligibility Errors -->
27332752
<string name="plugin_install_site_ineligible_default_error">If you just registered a domain name, please wait until we finish setting it up and try again.\n\nIf not, looks like something went wrong and plugin feature might not be available for this site.</string>
@@ -2997,7 +3016,7 @@
29973016
<string name="get_started" tools:ignore="UnusedResources" a8c-src-lib="login">Get Started</string>
29983017
<string name="next">Next</string>
29993018
<string name="check_email" tools:ignore="UnusedResources" a8c-src-lib="login">Check email</string>
3000-
<string name="enter_verification_code" tools:ignore="UnusedResources" a8c-src-lib="login">Almost there! Please enter the verification code from your Authenticator app.</string>
3019+
<string name="enter_verification_code" tools:ignore="UnusedResources" a8c-src-lib="login">Almost there! Please enter the verification code for WordPress.com from your authenticator app.</string>
30013020
<string name="enter_verification_code_sms" tools:ignore="UnusedResources" a8c-src-lib="login">We sent a text message to the phone number ending in %s. Please enter the verification code in the SMS.</string>
30023021
<string name="login_text_otp" tools:ignore="UnusedResources" a8c-src-lib="login">Text me a code instead</string>
30033022
<string name="login_text_otp_another" tools:ignore="UnusedResources" a8c-src-lib="login">Text me another code instead</string>
@@ -3332,6 +3351,7 @@
33323351
<string name="pages_item_date_subtitle">%1$s ·</string>
33333352
<string name="pages_item_date_author">%1$s · %2$s</string>
33343353
<string name="pages_item_date_author_subtitle">%1$s · %2$s ·</string>
3354+
<string name="pages_item_subtitle">%1$s ·</string>
33353355
<string name="pages_copy_link">Copy link</string>
33363356

33373357
<string name="page_status_pending_review" translatable="false">@string/post_status_pending_review</string>
@@ -4777,4 +4797,7 @@ translators: %s: Select control option value e.g: "Auto, 25%". -->
47774797
<string name="account_and_settings">Account and Settings</string>
47784798
<string name="gutenberg_native_alternatively_you_can_convert_the_content_to_blocks" tools:ignore="UnusedResources" a8c-src-lib="gutenberg">Alternatively, you can convert the content to blocks.</string>
47794799
<string name="gutenberg_native_s_block_converted_to_blocks" tools:ignore="UnusedResources" a8c-src-lib="gutenberg">\'%s\' block converted to blocks</string>
4800+
<string name="login_text_security_key" tools:ignore="UnusedResources" a8c-src-lib="login">Use a security key</string>
4801+
<string name="login_error_security_key" tools:ignore="UnusedResources" a8c-src-lib="login">There was some trouble with the Security key login</string>
4802+
<string name="notification_security_key_needed" tools:ignore="UnusedResources" a8c-src-lib="login">Please provide your security key to continue.</string>
47804803
</resources>

version.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
versionName=23.6
2-
versionCode=1382
1+
versionName=23.7-rc-1
2+
versionCode=1383

0 commit comments

Comments
 (0)