v5.7.3 - updates

This commit is contained in:
Anthony 2022-02-21 15:19:01 +00:00
parent e492dfb83b
commit bf14ab3901
6 changed files with 16 additions and 6 deletions

View File

@ -1,3 +1,9 @@
## [5.7.3] - 2022-02-21
* Fix builds for Flutter 2.10.2
* Fix setState for product upsells
* ext.kotlin_version version bump
## [5.7.2] - 2022-02-12 ## [5.7.2] - 2022-02-12
* Button UI loading state added * Button UI loading state added

View File

@ -4,7 +4,7 @@
# WooCommerce App: Label StoreMax # WooCommerce App: Label StoreMax
### Label StoreMax - v5.7.2 ### Label StoreMax - v5.7.3
[Official WooSignal WooCommerce App](https://woosignal.com) [Official WooSignal WooCommerce App](https://woosignal.com)

View File

@ -1,5 +1,5 @@
buildscript { buildscript {
ext.kotlin_version = '1.5.0' ext.kotlin_version = '1.6.10'
repositories { repositories {
google() google()
jcenter() jcenter()

View File

@ -164,9 +164,13 @@ class _ProductDetailUpsellWidgetState extends State<ProductDetailUpsellWidget> {
} }
return true; return true;
}, },
didFinish: () => setState(() { didFinish: () {
if (mounted) {
setState(() {
_isLoading = false; _isLoading = false;
}), });
}
},
productIds: widget.productIds); productIds: widget.productIds);
} }
} }

View File

@ -1,7 +1,7 @@
# Official WooSignal App Template for WooCommerce # Official WooSignal App Template for WooCommerce
# Label StoreMax # Label StoreMax
# Version: 5.7.2 # Version: 5.7.3
# Author: Anthony Gordon # Author: Anthony Gordon
# Homepage: https://woosignal.com # Homepage: https://woosignal.com
# Documentation: https://woosignal.com/docs/app/label-storemax # Documentation: https://woosignal.com/docs/app/label-storemax

View File

@ -4,7 +4,7 @@
# WooCommerce App: Label StoreMax # WooCommerce App: Label StoreMax
### Label StoreMax - v5.7.2 ### Label StoreMax - v5.7.3
[Official WooSignal WooCommerce App](https://woosignal.com) [Official WooSignal WooCommerce App](https://woosignal.com)