Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/content/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ flutter pub add forui

Flutter does not automatically upgrade minor versions of packages prior to `1.0.0`.

This means that that following entry in your `pubspec.yaml` file will **not** automatically upgrade to `0.22.0`:
This means that that following entry in your `pubspec.yaml` file will **not** automatically upgrade to `0.23.0`:

```yaml filename="pubspec.yaml"
dependencies:
forui: ^0.21.0 // ❌ will not upgrade to 0.22.0
forui: ^0.22.0 // ❌ will not upgrade to 0.23.0
```

To upgrade to the latest version of Forui, run the following command:
Expand Down
2 changes: 1 addition & 1 deletion forui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.23.0 (Next)
## 0.23.0

This update introduces the long-awaited context menu, a revamped calendar, and support for multiple typefaces.

Expand Down
4 changes: 2 additions & 2 deletions forui/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: forui
description: >-
Beautifully designed, minimalistic Flutter widgets for desktop & touch devices. Designs are heavily
inspired by shadcn/ui and are fully customizable.
version: 0.22.3
version: 0.23.0
homepage: https://forui.dev/
documentation: https://forui.dev/docs
repository: https://github.com/duobaseio/forui/tree/main/forui
Expand Down Expand Up @@ -32,7 +32,7 @@ dependencies:
sdk: flutter
flutter_localizations:
sdk: flutter
forui_assets: ^0.22.0
forui_assets: ^0.23.0
intl: any
meta: ^1.11.0
sugar: ^4.0.0
Expand Down
4 changes: 4 additions & 0 deletions forui_assets/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.23.0
* Update icons to Lucide 1.21.0.


## 0.22.1

Relax SDK constraints to allow Flutter and Dart beta/pre-release versions.
Expand Down
Binary file modified forui_assets/assets/lucide.ttf
Binary file not shown.
3,990 changes: 2,034 additions & 1,956 deletions forui_assets/lib/src/assets.g.dart

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion forui_assets/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: forui_assets
description: Companion assets for Forui, a set of beautifully designed, minimalistic widgets for desktop & touch devices.
version: 0.22.1
version: 0.23.0
homepage: https://forui.dev/
documentation: https://forui.dev/docs
repository: https://github.com/duobaseio/forui/tree/main/forui_assets
Expand Down
2 changes: 1 addition & 1 deletion forui_assets/tool/generate.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const directional = {
};

// UPDATE BEFORE EACH RELEASE.
const _url = 'https://raw.githubusercontent.com/lucide-icons/lucide/refs/tags/1.16.0/icons';
const _url = 'https://raw.githubusercontent.com/lucide-icons/lucide/refs/tags/1.21.0/icons';

final _pattern = RegExp(r'static const (\w+) = IconData\((\d+),');

Expand Down
2 changes: 1 addition & 1 deletion forui_hooks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.23.0 (Next)
## 0.23.0

### `FCalendar`
* Add `useFDateSelectionController(...)`.
Expand Down
4 changes: 2 additions & 2 deletions forui_hooks/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: forui_hooks
description: "Companion hooks for Forui, a set of beautifully designed, minimalistic widgets for desktop & touch devices."
version: 0.22.1
version: 0.23.0
homepage: https://forui.dev/
documentation: https://forui.dev/docs
repository: https://github.com/duobaseio/forui/tree/main/forui_hooks
Expand All @@ -15,7 +15,7 @@ dependencies:
flutter:
sdk: flutter
flutter_hooks: ^0.21.0
forui: ^0.22.0
forui: ^0.23.0

dev_dependencies:
flutter_test:
Expand Down
2 changes: 1 addition & 1 deletion forui_internal_gen/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ dependencies:
dev_dependencies:
build_test: ^3.3.2
flint: ^2.8.1
forui: ^0.22.0
forui: ^0.23.0
source_gen_test: ^1.1.1
test: ^1.26.2
Loading