Skip to content

Commit

Permalink
v6.12.5
Browse files Browse the repository at this point in the history
  • Loading branch information
agordn52 committed Dec 28, 2023
1 parent e66aecf commit a7045eb
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 30 deletions.
4 changes: 4 additions & 0 deletions LabelStoreMax/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [6.12.5] - 2023-12-28

* Pubspec.yaml dependency updates

## [6.12.4] - 2023-12-12

* Fix `BrowseCategoryPage`
Expand Down
16 changes: 8 additions & 8 deletions LabelStoreMax/lib/config/decoders.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ final Map<Type, NyApiService> apiDecoders = {
| Learn more https://nylo.dev/docs/5.x/controllers#using-controllers-with-ny-page
|--------------------------------------------------------------------------
*/
final Map<Type, BaseController> controllers = {
ProductDetailController: ProductDetailController(),
AccountOrderDetailController: AccountOrderDetailController(),
BrowseCategoryController: BrowseCategoryController(),
CheckoutStatusController: CheckoutStatusController(),
LeaveReviewController: LeaveReviewController(),
ProductImageViewerController: ProductImageViewerController(),
ProductReviewsController: ProductReviewsController()
final Map<Type, BaseController Function()> controllers = {
ProductDetailController: () => ProductDetailController(),
AccountOrderDetailController: () => AccountOrderDetailController(),
BrowseCategoryController: () => BrowseCategoryController(),
CheckoutStatusController: () => CheckoutStatusController(),
LeaveReviewController: () => LeaveReviewController(),
ProductImageViewerController: () => ProductImageViewerController(),
ProductReviewsController: () => ProductReviewsController()

// ...

Expand Down
36 changes: 18 additions & 18 deletions LabelStoreMax/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -285,26 +285,26 @@ packages:
dependency: "direct main"
description:
name: firebase_messaging
sha256: b9b94c7d932d83d36efcf7eb21caf50486a8f330c6f681bb68e7b979d036491e
sha256: "199fe8186a5370d1cf5ce0819191079afc305914e8f38715f5e23943940dfe2d"
url: "https://pub.dev"
source: hosted
version: "14.7.8"
version: "14.7.9"
firebase_messaging_platform_interface:
dependency: transitive
description:
name: firebase_messaging_platform_interface
sha256: "200f27b70a6330d1ac3f0fbf5328412ef3b215cd9dbb7dcea1701d1fd705d37a"
sha256: "54e283a0e41d81d854636ad0dad73066adc53407a60a7c3189c9656e2f1b6107"
url: "https://pub.dev"
source: hosted
version: "4.5.17"
version: "4.5.18"
firebase_messaging_web:
dependency: transitive
description:
name: firebase_messaging_web
sha256: "1c254306714d4d76aea612d81775e8f18c712219f096a7e6abfa234de9fd4bd2"
sha256: "90dc7ed885e90a24bb0e56d661d4d2b5f84429697fd2cbb9e5890a0ca370e6f4"
url: "https://pub.dev"
source: hosted
version: "3.5.17"
version: "3.5.18"
flare_flutter:
dependency: transitive
description:
Expand Down Expand Up @@ -423,10 +423,10 @@ packages:
dependency: "direct main"
description:
name: flutter_stripe
sha256: "4f92660607b91310ec345948355c68843971d3f70673b529076707259b442513"
sha256: "3a88b6001e62d93588a8d11294027a8ad43a56ae94a65a98623edb368d5b2a06"
url: "https://pub.dev"
source: hosted
version: "9.6.0"
version: "10.0.0"
flutter_styled_toast:
dependency: transitive
description:
Expand Down Expand Up @@ -617,18 +617,18 @@ packages:
dependency: "direct main"
description:
name: nylo_framework
sha256: "2dac32e24ee95eb045c846c0524ee6fde7f86a6c2daa0d44af0c4efe731b54af"
sha256: "93c5159eade10ed4e38db5ce127e12a62dd2621b411e2ae221e41fb61c77d5ca"
url: "https://pub.dev"
source: hosted
version: "5.15.0"
version: "5.16.0"
nylo_support:
dependency: transitive
description:
name: nylo_support
sha256: f27dd076c93d036a2cd298428f3c240c3a8f466a0feb1bffc6134b5ea7d9232b
sha256: "8860d620bc0de49b5f0fee22d7391a6ad240fe4bc5737f1a9287bcd5d82d3e71"
url: "https://pub.dev"
source: hosted
version: "5.22.0"
version: "5.23.0"
octo_image:
dependency: transitive
description:
Expand Down Expand Up @@ -942,26 +942,26 @@ packages:
dependency: transitive
description:
name: stripe_android
sha256: "1de36b35c50f33e538c8e4bd6173f0ab8d7d8e6b9e05388488775e439c29b7d2"
sha256: "5602ebef79e013dec95403abfd4a3bcb5428cce6b9b92675bd9624fafc3b197e"
url: "https://pub.dev"
source: hosted
version: "9.6.0+2"
version: "10.0.0"
stripe_ios:
dependency: transitive
description:
name: stripe_ios
sha256: "4b176f4ee7eaf229815b90c3ff78935da9e01765f4d3153b76fd0d3d64680294"
sha256: dbacecab6c77148835a5c9875d74f6f4f7bfb867bfbe88a3ca089b8f0abc2fd2
url: "https://pub.dev"
source: hosted
version: "9.6.0"
version: "10.0.0"
stripe_platform_interface:
dependency: transitive
description:
name: stripe_platform_interface
sha256: ac3c6ac938a26674ae8ae691d689e0b949ab1a8d270489f08d35446dd8d5bea0
sha256: "62b87be6e11c0bdbdb463cf491780da34e6c23b7eea4e9d458f748dc22a42ef9"
url: "https://pub.dev"
source: hosted
version: "9.6.0"
version: "10.0.0"
synchronized:
dependency: transitive
description:
Expand Down
8 changes: 4 additions & 4 deletions 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: 6.12.4
# Version: 6.12.5
# Author: Anthony Gordon
# Homepage: https://woosignal.com
# Documentation: https://woosignal.com/docs/app/label-storemax
Expand Down Expand Up @@ -29,7 +29,7 @@ dependencies:
google_fonts: ^4.0.5
analyzer: ^5.12.0
intl: ^0.18.0
nylo_framework: ^5.15.0
nylo_framework: ^5.16.0
woosignal: ^3.8.1
wp_json_api: ^3.3.3
cached_network_image: ^3.3.0
Expand All @@ -50,7 +50,7 @@ dependencies:
flutter_rating_bar: ^4.0.1
flutter_staggered_grid_view: ^0.7.0
flutter_swiper_view: ^1.1.8
firebase_messaging: ^14.7.8
firebase_messaging: ^14.7.9
firebase_core: ^2.24.2
flutter:
sdk: flutter
Expand All @@ -61,7 +61,7 @@ dependencies:
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.6
collection: ^1.17.1
flutter_stripe: ^9.6.0
flutter_stripe: ^10.0.0
razorpay_flutter: ^1.3.5
animate_do: ^3.1.2

Expand Down

0 comments on commit a7045eb

Please sign in to comment.