From babf62c41a112505e7031350806bb0636661f0fe Mon Sep 17 00:00:00 2001 From: Rydmike <39990307+rydmike@users.noreply.github.com> Date: Sat, 16 Mar 2024 15:35:16 +0200 Subject: [PATCH] Update versions on PKG and web demo --- CHANGELOG.md | 20 ++++++++++++++++++++ example/lib/demo/utils/app.dart | 4 ++-- example/pubspec.lock | 16 ++++++++-------- example/pubspec.yaml | 6 +++--- pubspec.yaml | 2 +- 5 files changed, 34 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 803be6e..55c0e2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ All notable changes to the **FlexColorPicker** package are documented in this file. + +## 3.4.1 + +**Mar 16, 2024** + + +**FIX** + +Package + +- Fixed [#81](https://github.com/rydmike/flex_color_picker/issues/81) The property `tonalSubheading` in the convenience dialog function `showColorPickerDialog` was never passed along to the `ColorPicker` used to construct the dialog, causing the tonal sub heading to never show up in the resulting dialog. + + +**New** + +Web demo + +- There is now a color picker in the web demo app also using and demonstrating the usage of the optional convenience `showColorPickerDialog` function. + + ## 3.4.0 **Mar 3, 2024** diff --git a/example/lib/demo/utils/app.dart b/example/lib/demo/utils/app.dart index cee3e4a..bc1db44 100644 --- a/example/lib/demo/utils/app.dart +++ b/example/lib/demo/utils/app.dart @@ -9,14 +9,14 @@ class App { // Web demo with inside the app. Shown on the start screen in the demo, // so people testing it don't have to ask. Also info for the About screen. static const String appName = 'FlexColorPicker'; - static const String version = '3.4.0'; + static const String version = '3.4.1'; static const String packageVersion = 'FlexColorPicker package $version'; static final Uri packageUri = Uri( scheme: 'https', host: 'pub.dev', path: 'packages/flex_color_picker', ); - static const String flutterVersion = 'Channel stable 3.19.2 (canvaskit)'; + static const String flutterVersion = 'Channel stable 3.19.3 (canvaskit)'; static const String copyright = '© 2020 - 2024'; static const String author = 'Mike Rydstrom'; static const String license = 'BSD 3-Clause License'; diff --git a/example/pubspec.lock b/example/pubspec.lock index dbfa39c..a64856b 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -119,7 +119,7 @@ packages: path: ".." relative: true source: path - version: "3.4.0" + version: "3.4.1" flex_seed_scheme: dependency: transitive description: @@ -137,10 +137,10 @@ packages: dependency: "direct main" description: name: flutter_riverpod - sha256: "4bce556b7ecbfea26109638d5237684538d4abc509d253e6c5c4c5733b360098" + sha256: "0f1974eff5bbe774bf1d870e406fc6f29e3d6f1c46bd9c58e7172ff68a785d7d" url: "https://pub.dev" source: hosted - version: "2.4.10" + version: "2.5.1" flutter_test: dependency: "direct dev" description: flutter @@ -171,10 +171,10 @@ packages: dependency: "direct main" description: name: google_fonts - sha256: "5b1726fee554d1cc9db1baef8061b126567ff0a1140a03ed7de936e62f2ab98b" + sha256: b1ac0fe2832c9cc95e5e88b57d627c5e68c223b9657f4b96e1487aa9098c7b82 url: "https://pub.dev" source: hosted - version: "6.2.0" + version: "6.2.1" hive: dependency: "direct main" description: @@ -395,10 +395,10 @@ packages: dependency: transitive description: name: riverpod - sha256: "548e2192eb7aeb826eb89387f814edb76594f3363e2c0bb99dd733d795ba3589" + sha256: f21b32ffd26a36555e501b04f4a5dca43ed59e16343f1a30c13632b2351dfa4d url: "https://pub.dev" source: hosted - version: "2.5.0" + version: "2.5.1" shelf: dependency: transitive description: @@ -670,4 +670,4 @@ packages: version: "3.1.2" sdks: dart: ">=3.3.0 <4.0.0" - flutter: ">=3.19.0" + flutter: ">=3.19.2" diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 4c2990a..b5ae3c6 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -1,6 +1,6 @@ name: color_picker_example description: Two examples of how to use the FlexColorPicker package. -version: 3.4.0 +version: 3.4.1 publish_to: 'none' environment: sdk: '>=2.19.0 <4.0.0' @@ -15,10 +15,10 @@ dependencies: sdk: flutter # https://pub.dev/packages/flutter_riverpod - flutter_riverpod: ^2.4.10 + flutter_riverpod: ^2.5.1 # https://pub.dev/packages/google_fonts - google_fonts: ^6.2.0 + google_fonts: ^6.2.1 # https://pub.dev/packages/hive hive: ^2.2.3 diff --git a/pubspec.yaml b/pubspec.yaml index 5046632..655b29b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flex_color_picker description: A customizable Flutter primary, accent and custom color picker. Includes an optional HSV wheel color picker. -version: 3.4.0 +version: 3.4.1 homepage: https://github.com/rydmike/flex_color_picker repository: https://github.com/rydmike/flex_color_picker issue_tracker: https://github.com/rydmike/flex_color_picker/issues