Skip to content

Commit 7b6c7c4

Browse files
authored
Merge pull request #5906 from woocommerce/merge/8.3-release-notes-into-trunk
Merge 8.3 release notes into trunk
2 parents 4e90019 + d31d56d commit 7b6c7c4

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

WooCommerce/Classes/ViewRelated/Reviews/ReviewsViewController.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,11 @@ private extension ReviewsViewController {
229229
}
230230

231231
func refreshTitle() {
232-
title = Localization.title
232+
if ServiceLocator.featureFlagService.isFeatureFlagEnabled(.hubMenu) {
233+
title = Localization.title
234+
} else {
235+
navigationItem.title = Localization.title
236+
}
233237
}
234238
}
235239

WooCommerce/Resources/AppStoreStrings.pot

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,13 @@ msgctxt "app_store_promo_text"
5757
msgid "Run your store from anywhere"
5858
msgstr ""
5959

60-
msgctxt "v8.2-whats-new"
60+
msgctxt "v8.3-whats-new"
6161
msgid ""
62-
"Sometimes you just need to create a quick order to take a payment from your customer for a transaction you’re doing in-person, like at a trade show. We added a new option for you to create Simple Payments! Head over to the Orders tab to make a quick order to record that transaction. We are working hard on full order creation as well – and you’ll see that later this year.\n"
62+
"Merchants have been asking us for a quick way to record a transaction in the app with minimal information – like with only a charge amount. Maybe you’re at a farmer’s market and simply want to charge a customer’s credit card and don’t need to manage inventory. This release includes a new “Simple Payments” feature on the orders tab. If you’re a WooCommerce Payments customer, you’ll find this works great with the In-Person Payments credit card reader! Don’t have a credit card reader yet? Alternatively, you easily send a payment link to your customer to pay with their device through your site.\n"
6363
"\n"
64-
"We also fixed a bug with the site visitors count not showing up on the Today tab on your store’s dashboard. Thanks for letting us know! 💜\n"
64+
"Also included in this release is the ability to refund fees on an order. We also snuck in an experimental SKU input barcode reader when editing a product which can be enabled in Settings.\n"
65+
"\n"
66+
"We’re working on several exciting features coming in the next few months. Keep sending us your feedback!\n"
6567
msgstr ""
6668

6769
#. translators: This is a promo message that will be attached on top of a screenshot in the App Store.
Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
- [***] All merchants can create Simple Payments orders. [https://github.com/woocommerce/woocommerce-ios/pull/5684]
2-
- [**] System status report can now be viewed and copied directly from within the app. [https://github.com/woocommerce/woocommerce-ios/pull/5702]
3-
- [**] Product SKU input scanner is now available as a beta feature. To try it, enable it from settings and you can scan a barcode to use as the product SKU in product inventory settings! [https://github.com/woocommerce/woocommerce-ios/pull/5695]
4-
- [**] Now you chan share a payment link when creating a Simple Payments order [https://github.com/woocommerce/woocommerce-ios/pull/5819]
5-
- [*] Reviews: "Mark all as read" checkmark bar button item button replaced with menu button which launches an action sheet. Menu button is displayed only if there are unread reviews available.[https://github.com/woocommerce/woocommerce-ios/pull/5833]
6-
- [internal] Refactored ReviewsViewController to add tests. [https://github.com/woocommerce/woocommerce-ios/pull/5834]
1+
Merchants have been asking us for a quick way to record a transaction in the app with minimal information – like with only a charge amount. Maybe you’re at a farmer’s market and simply want to charge a customer’s credit card and don’t need to manage inventory. This release includes a new “Simple Payments” feature on the orders tab. If you’re a WooCommerce Payments customer, you’ll find this works great with the In-Person Payments credit card reader! Don’t have a credit card reader yet? Alternatively, you easily send a payment link to your customer to pay with their device through your site.
72

3+
Also included in this release is the ability to refund fees on an order. We also snuck in an experimental SKU input barcode reader when editing a product which can be enabled in Settings.
4+
5+
We’re working on several exciting features coming in the next few months. Keep sending us your feedback!

config/Version.Public.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
VERSION_SHORT=8.3
22

33
// Public long version example: VERSION_LONG=1.2.0.0
4-
VERSION_LONG=8.3.0.0
4+
VERSION_LONG=8.3.0.1

0 commit comments

Comments
 (0)