Skip to content

Merge 18.7 code freeze to trunk #11535

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<!--
Contains editorialized release notes. Raw release notes should go into `RELEASE-NOTES.txt`.
-->
## 18.7
We've fixed an issue that caused the app to crash during screen rotation, ensuring a smoother shopping experience. Update now to enjoy a more stable and reliable app!

## 18.6
Enjoy enhanced functionality in our latest app update! We've improved the 'Tap To Pay' feature, introducing a new navigation path from the summary to the 'About Tap To Pay' screen, and revised its description for better clarity. Additionally, selecting shipping methods has been made more flexible, allowing you to choose specific options directly when adding or editing shipping details on an order. Update your app today for a smoother and more efficient experience!

Expand Down
4 changes: 4 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
*** PLEASE FOLLOW THIS FORMAT: [<priority indicator, more stars = higher priority>] <description> [<PR URL>]
18.8
-----


18.7
-----
- [*] Products: Fixed a bug that caused the app to crash sometimes during screen rotation [https://github.com/woocommerce/woocommerce-android/pull/11484]
Expand Down
12 changes: 6 additions & 6 deletions WooCommerce/metadata/PlayStoreStrings.pot
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ msgstr ""
"Project-Id-Version: Release Notes & Play Store Descriptions\n"

#. translators: Release notes for this version to be displayed in the Play Store. Limit to 500 characters including spaces and commas!
msgctxt "release_note_186"
msgctxt "release_note_187"
msgid ""
"18.6:\n"
"Enjoy enhanced functionality in our latest app update! We've improved the 'Tap To Pay' feature, introducing a new navigation path from the summary to the 'About Tap To Pay' screen, and revised its description for better clarity. Additionally, selecting shipping methods has been made more flexible, allowing you to choose specific options directly when adding or editing shipping details on an order. Update your app today for a smoother and more efficient experience!\n"
"18.7:\n"
"We've fixed an issue that caused the app to crash during screen rotation, ensuring a smoother shopping experience. Update now to enjoy a more stable and reliable app!\n"
msgstr ""

msgctxt "release_note_185"
msgctxt "release_note_186"
msgid ""
"18.5:\n"
"Discover a more personalized shopping experience with the latest update to MyStore! We're excited to introduce a customizable dashboard that lets you tailor your view with a variety of unique cards. Streamline your management tasks and enjoy a dashboard designed just for you. Update now to start customizing your app experience!\n"
"18.6:\n"
"Enjoy enhanced functionality in our latest app update! We've improved the 'Tap To Pay' feature, introducing a new navigation path from the summary to the 'About Tap To Pay' screen, and revised its description for better clarity. Additionally, selecting shipping methods has been made more flexible, allowing you to choose specific options directly when adding or editing shipping details on an order. Update your app today for a smoother and more efficient experience!\n"
msgstr ""

#. translators: Short description of the app to be displayed in the Play Store. Limit to 80 characters including spaces and commas!
Expand Down
2 changes: 1 addition & 1 deletion WooCommerce/metadata/release_notes.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Enjoy enhanced functionality in our latest app update! We've improved the 'Tap To Pay' feature, introducing a new navigation path from the summary to the 'About Tap To Pay' screen, and revised its description for better clarity. Additionally, selecting shipping methods has been made more flexible, allowing you to choose specific options directly when adding or editing shipping details on an order. Update your app today for a smoother and more efficient experience!
We've fixed an issue that caused the app to crash during screen rotation, ensuring a smoother shopping experience. Update now to enjoy a more stable and reliable app!
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import com.woocommerce.android.ui.analytics.ranges.StatsTimeRangeSelection.Selec
import com.woocommerce.android.ui.dashboard.DashboardViewModel.DashboardEvent.OpenEditWidgets
import com.woocommerce.android.ui.dashboard.data.DashboardRepository
import com.woocommerce.android.ui.prefs.privacy.banner.domain.ShouldShowPrivacyBanner
import com.woocommerce.android.util.PackageUtils
import com.woocommerce.android.viewmodel.MultiLiveEvent
import com.woocommerce.android.viewmodel.ResourceProvider
import com.woocommerce.android.viewmodel.ScopedViewModel
Expand Down Expand Up @@ -109,7 +110,7 @@ class DashboardViewModel @Inject constructor(

launch {
shouldShowPrivacyBanner().let {
if (it) {
if (it && !PackageUtils.isTesting()) {
triggerEvent(DashboardEvent.ShowPrivacyBanner)
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ tasks.register("installGitHooks", Copy) {
}

ext {
fluxCVersion = 'trunk-14fcce73130015f14125e9e13837f84ff4171bb3'
fluxCVersion = '2.79.1'
glideVersion = '4.16.0'
coilVersion = '2.1.0'
constraintLayoutVersion = '1.2.0'
Expand Down
16 changes: 16 additions & 0 deletions fastlane/resources/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,7 @@
<string name="dashboard_stats_granularity_months">Months</string>
<string name="dashboard_stats_granularity_years">Years</string>
<string name="dashboard_stats_edit_granularity_content_description">Change date range button</string>
<string name="dashboard_filter_menu_content_description">Open filter dropdown</string>

<string name="dashboard_stats_visitors">Visitors</string>
<string name="dashboard_stats_orders">Orders</string>
Expand All @@ -389,6 +390,7 @@

<string name="dashboard_action_view_order">View Order</string>
<string name="dashboard_action_view_orders">View Orders</string>
<string name="dashboard_action_view_all_orders">View all orders</string>

<string name="my_store_stats_plugin_inactive_title">We can\'t display your\n store\'s analytics</string>
<string name="my_store_stats_plugin_inactive_description">Make sure you are running the latest version of WooCommerce on your site and that you have WooCommerce Admin activated.</string>
Expand All @@ -409,6 +411,8 @@
<string name="my_store_widget_top_products_title">Top performers</string>
<string name="my_store_widget_blaze_title">Blaze campaigns</string>
<string name="my_store_widget_feedback_title">Feedback</string>
<string name="my_store_widget_orders_title">Most recent orders</string>
<string name="my_store_widget_reviews_title">Most recent reviews</string>

<string name="my_store_widget_unavailable">Unavailable</string>
<string name="my_store_widget_onboarding_completed">Completed</string>
Expand All @@ -417,6 +421,10 @@
<string name="dynamic_dashboard_widget_error_title">Unable to load data</string>
<string name="dynamic_dashboard_widget_error_description"><![CDATA[Try reloading this card. If the issue persists, please <a href="support">contact support</a>.]]></string>

<string name="dashboard_reviews_card_header_title">Status</string>
<string name="dashboard_reviews_card_empty_title_filtered">No reviews found</string>
<string name="dashboard_reviews_card_empty_message_filtered">No reviews match the selected filter, please try changing the filter</string>
<string name="dashboard_reviews_card_view_all_button">View all reviews</string>
<!--
Sign Up Flow
-->
Expand Down Expand Up @@ -563,6 +571,11 @@
<string name="simple_payments_share_payment_link">Share Payment Link</string>
<string name="simple_payments_share_payment_dialog_title">Checkout - %s</string>

<!--
Cash Payments
-->
<string name="cash_payments_take_payment_title">Take payment (%s)</string>

<!--
Custom Amounts
-->
Expand Down Expand Up @@ -3658,6 +3671,9 @@
<string name="more_menu_button_settings">Settings</string>
<string name="more_menu_button_settings_description">Update your preferences</string>

<string name="more_menu_button_woo_pos">Woo Pos</string>
<string name="more_menu_button_woo_pos_description">Temporary entry point to POS mode</string>

<!--
Composite products
-->
Expand Down
4 changes: 2 additions & 2 deletions version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
versionName=18.6-rc-2
versionCode=549
versionName=18.7-rc-1
versionCode=550
Loading