Skip to content

Commit

Permalink
bump version: 3.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmadre committed Sep 7, 2024
1 parent 477b3ee commit bb63f3a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [3.6.4] - 07.09.2024

* 📝 Update `generate_packs` `--help` documentation to show allowed packs parameter

## [3.6.3] - 07.09.2024

* 🐛 Fix mutually exclusive icons while searching
Expand Down
16 changes: 15 additions & 1 deletion bin/generate_packs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,21 @@ Future<void> main(List<String> arguments) async {
..addOption(
packs,
help:
'Defines which packs to generate for your project with --packs or -p followed by the pack name/s.\n❗custom icons are not allowed❗',
'Defines which packs to generate for your project (comma separated)',
allowedHelp: {
'material': 'Material Icons',
'allMaterial':
'All Material Icons (including rounded, outlined or sharp icons)',
'sharpMaterial': 'Material Sharp Icons',
'roundedMaterial': 'Material Rounded Icons',
'outlinedMaterial': 'Material Outlined Icons',
'cupertino': 'Cupertino Icons',
'fontAwesomeIcons': 'Font Awesome Icons',
'lineAwesomeIcons': 'Line Awesome Icons',
},
allowed: IconPack.values
.where((p) => p.path.isNotNullOrBlank)
.map((e) => e.name),
valueHelp: 'material,cupertino,...',
defaultsTo: 'material',
abbr: 'p',
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: flutter_iconpicker
description: A Dialog for picking Icons in Flutter and use them anywhere. Can be
used as a default Dialog or as a Adaptive Dialog.
version: 3.6.3
version: 3.6.4
homepage: https://github.com/Ahmadre
repository: https://github.com/Ahmadre/FlutterIconPicker

Expand Down

0 comments on commit bb63f3a

Please sign in to comment.