Skip to content

Commit

Permalink
Merge branch '11525-change-due-calculator-ui-part-3' into 11583-tappi…
Browse files Browse the repository at this point in the history
…ng-order-complete-button-equivalent-tapping-mark-as-paid
  • Loading branch information
backwardstruck committed May 27, 2024
2 parents 0c1a5ba + 484b8d7 commit d5747fb
Show file tree
Hide file tree
Showing 14 changed files with 347 additions and 232 deletions.
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.8
In this release, we've honed in on enhancing the app's efficiency by ironing out bugs and executing vital improvements. These updates aim to empower your business journey. Your feedback is our roadmap to continuous development, so please, keep it flowing.

## 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!

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.9
-----
- [*] More Menu: UI improvements for the More Menu screen [https://github.com/woocommerce/woocommerce-android/pull/11566]

18.8
-----

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_187"
msgctxt "release_note_188"
msgid ""
"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"
"18.8:\n"
"In this release, we've honed in on enhancing the app's efficiency by ironing out bugs and executing vital improvements. These updates aim to empower your business journey. Your feedback is our roadmap to continuous development, so please, keep it flowing.\n"
msgstr ""

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 ""

#. 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 @@
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!
In this release, we've honed in on enhancing the app's efficiency by ironing out bugs and executing vital improvements. These updates aim to empower your business journey. Your feedback is our roadmap to continuous development, so please, keep it flowing.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,19 @@ import androidx.annotation.DimenRes
import androidx.annotation.DrawableRes
import androidx.annotation.StringRes

data class MenuUiButton(
data class MoreMenuItemSection(
@StringRes val title: Int?,
val items: List<MoreMenuItemButton>,
val isVisible: Boolean = true,
)

data class MoreMenuItemButton(
@StringRes val title: Int,
@StringRes val description: Int,
@DrawableRes val icon: Int,
@DrawableRes val extraIcon: Int? = null,
val isVisible: Boolean = true,
val badgeState: BadgeState? = null,
val isEnabled: Boolean = true,
val onClick: () -> Unit = {},
)

Expand Down
Loading

0 comments on commit d5747fb

Please sign in to comment.