Skip to content

Commit

Permalink
Merge pull request #86 from rydmike/v-3-5-0
Browse files Browse the repository at this point in the history
Release V.3.5.0
  • Loading branch information
rydmike committed May 14, 2024
2 parents e180269 + 23e9656 commit 641be8b
Show file tree
Hide file tree
Showing 17 changed files with 2,543 additions and 2,473 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Install Flutter and Dart SDK
uses: subosito/flutter-action@v2
with:
channel: "beta"
channel: "stable"
- name: Show Dart SDK version
run: dart --version

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Install Flutter and Dart SDK
uses: subosito/flutter-action@v2
with:
channel: "beta"
channel: "stable"
- name: Show Dart SDK version
run: dart --version

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install Flutter and Dart SDK
uses: subosito/flutter-action@v2
with:
channel: "beta"
channel: "stable"
- name: Show Dart SDK version
run: dart --version

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install Flutter and Dart SDK
uses: subosito/flutter-action@v2
with:
channel: "beta"
channel: "stable"

- name: Show Dart SDK version
run: dart --version
Expand Down
18 changes: 14 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,26 @@

All notable changes to the **FlexColorPicker** package are documented in this file.

## 3.5.0-dev.1
## 3.5.0

**May 13, 2024**
**May 15, 2024**

Requires min Flutter 3.22.0 and Dart 3.4.0.
Requires min Flutter 3.22.0.

No new features or fixes in this release. A version bump to use FlexSeedScheme 2.0.0 compatible with Flutter version 3.22.0 and its new breaking ColorScheme.

The ColorPicker contains no breaking changes, but underlying Flutter does and this version is only compatible with Flutter 3.22.0 and later.

**NEW**

* Added property `mainAxisSize` to `ColorPicker` and `showColorPickerDialog`, it controls the vertical axis size of the picker's column layout. Defaults to `MainAxisSize.max` as before, like `Columns` do by default. The property was added to enable setting the dialog to use `MainAxisSize.min` if needed.

**FIX**

* Fix wheel picker jumping to BW or custom picker under certain conditions.
* When the wheel picker's opacity value is not 100, moving the color picker cursor to the white corner or bottom black edge of the color box triggers a jump. It auto-selects BW or a custom picker containing black or white values. This is now fixed. The picker cursor will stay in the wheel picker, and the color box will not jump to BW or custom picker when the cursor is moved to the white corner or bottom black edge of the color box.
* Improved and updated API documentation for `ColorPicker` properties `color` and `onColorChanged`.
* Fixed typos and language in the readme.

## 3.4.1

Expand All @@ -22,7 +32,7 @@ The ColorPicker contains no breaking changes, but underlying Flutter does and th

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.
- 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 subheading to never show up in the resulting dialog.


**New**
Expand Down
131 changes: 66 additions & 65 deletions README.md

Large diffs are not rendered by default.

0 comments on commit 641be8b

Please sign in to comment.