Skip to content

Commit

Permalink
Update versions on PKG and web demo
Browse files Browse the repository at this point in the history
  • Loading branch information
rydmike committed Mar 16, 2024
1 parent 225a877 commit babf62c
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 14 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down
4 changes: 2 additions & 2 deletions example/lib/demo/utils/app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
16 changes: 8 additions & 8 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ packages:
path: ".."
relative: true
source: path
version: "3.4.0"
version: "3.4.1"
flex_seed_scheme:
dependency: transitive
description:
Expand All @@ -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
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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"
6 changes: 3 additions & 3 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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'
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit babf62c

Please sign in to comment.