Skip to content

Commit

Permalink
Merge pull request #33 from woosignal/master
Browse files Browse the repository at this point in the history
v5.7.3 - updates
  • Loading branch information
agordn52 authored Feb 21, 2022
2 parents 2580b11 + bf14ab3 commit 3c1f023
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
6 changes: 6 additions & 0 deletions LabelStoreMax/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion LabelStoreMax/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion LabelStoreMax/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.5.0'
ext.kotlin_version = '1.6.10'
repositories {
google()
jcenter()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,13 @@ class _ProductDetailUpsellWidgetState extends State<ProductDetailUpsellWidget> {
}
return true;
},
didFinish: () => setState(() {
didFinish: () {
if (mounted) {
setState(() {
_isLoading = false;
}),
});
}
},
productIds: widget.productIds);
}
}
2 changes: 1 addition & 1 deletion LabelStoreMax/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3c1f023

Please sign in to comment.