Skip to content

Commit bf14ab3

Browse files
committed
v5.7.3 - updates
1 parent e492dfb commit bf14ab3

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

LabelStoreMax/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [5.7.3] - 2022-02-21
2+
3+
* Fix builds for Flutter 2.10.2
4+
* Fix setState for product upsells
5+
* ext.kotlin_version version bump
6+
17
## [5.7.2] - 2022-02-12
28

39
* Button UI loading state added

LabelStoreMax/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# WooCommerce App: Label StoreMax
66

7-
### Label StoreMax - v5.7.2
7+
### Label StoreMax - v5.7.3
88

99

1010
[Official WooSignal WooCommerce App](https://woosignal.com)

LabelStoreMax/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.5.0'
2+
ext.kotlin_version = '1.6.10'
33
repositories {
44
google()
55
jcenter()

LabelStoreMax/lib/resources/widgets/product_detail_upsell_widget.dart

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,13 @@ class _ProductDetailUpsellWidgetState extends State<ProductDetailUpsellWidget> {
164164
}
165165
return true;
166166
},
167-
didFinish: () => setState(() {
167+
didFinish: () {
168+
if (mounted) {
169+
setState(() {
168170
_isLoading = false;
169-
}),
171+
});
172+
}
173+
},
170174
productIds: widget.productIds);
171175
}
172176
}

LabelStoreMax/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Official WooSignal App Template for WooCommerce
22

33
# Label StoreMax
4-
# Version: 5.7.2
4+
# Version: 5.7.3
55
# Author: Anthony Gordon
66
# Homepage: https://woosignal.com
77
# Documentation: https://woosignal.com/docs/app/label-storemax

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# WooCommerce App: Label StoreMax
66

7-
### Label StoreMax - v5.7.2
7+
### Label StoreMax - v5.7.3
88

99

1010
[Official WooSignal WooCommerce App](https://woosignal.com)

0 commit comments

Comments
 (0)