Merge pull request #33 from woosignal/master

v5.7.3 - updates
This commit is contained in:
Anthony Gordon 2022-02-21 15:20:24 +00:00 committed by GitHub
commit 3c1f02320b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
* Button UI loading state added

View File

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

View File

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

View File

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

View File

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

View File

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