icons_launcher 2.0.1 icons_launcher: ^2.0.1 copied to clipboard
A command-line tool that simplifies the task of updating your Flutter app's launcher icon.
Changelog #
2.0.1 #
- Fixed bug with
adaptive_background_color
andadaptive_round_image
on android thanks to Carapacik - Improve config validation
2.0.0 #
-
Add web custom favicon support
-
Config breaking changes: #
icons_launcher: image_path: 'assets/ic_logo_border.png' platforms: android: enable: true image_path: 'assets/ic_logo_border.png' # adaptive_background_color: '#ffffff' adaptive_background_image: 'assets/ic_background.png' adaptive_foreground_image: 'assets/ic_foreground.png' adaptive_round_image: 'assets/ic_logo_round.png' ios: enable: true image_path: 'assets/ic_logo_rectangle.png' web: enable: true image_path: 'assets/ic_logo_border.png' favicon_path: 'assets/ic_logo_round.png' macos: enable: false image_path: 'assets/ic_logo_border.png' windows: enable: false image_path: 'assets/ic_logo_border.png' linux: enable: false image_path: 'assets/ic_logo_border.png'
2.0.0-beta.2 #
- Fixed auto remove image alpha channel for iOS platform to follow AppStore guideline
- Fixed iOS flavor
- Improved pub score
- Improved log
2.0.0-beta.1 #
- Rewrite and improve flavor support
- New flavor script (E.g.
icons_launcher-dev.yaml
)flutter pub run icons_launcher:create --flavor dev
- Add new config
color_adaptive_background
-
Breaking changes: #
-
Rename runner from
icons_launcher:main
toicons_launcher:create
flutter pub run icons_launcher:create
-
Rename config from
flutter_icons:
toicons_launcher:
icons_launcher: image_path: 'icon.png' android: true
-
Rename config option:
- from
adaptive_icon_background
toimage_adaptive_background
- from
adaptive_icon_foreground
toimage_adaptive_foreground
- from
adaptive_icon_round
toimage_adaptive_round
- from
-
Config option removed
remove_alpha_ios
remove_alpha_macos
-
1.2.1 #
- Fixed bug windows platform icon list embedded
1.2.0 #
- Improve windows platform to highest quality icon with multiple sizes embedded (Feature request)
1.1.8 #
- Fixed generate windows launcher icon from linux system (#5)
- Deprecated
icons_launcher:main
. Useicons_launcher:create
instead. - Update README.md
1.1.7 #
- Fixed image preview path
1.1.6 #
- Fixed generate incorrect android xml file when use background color (#4)
- Fixed create android
ic_launcher.xml
andic_launcher_round.xml
- Update README.md
1.1.5 #
- Fixed issue with pub.dev analysis
1.1.4 #
- Fixed android adaptive icon (#3)
- Android files are generated to
mipmap
instead ofdrawable
follow Android Studio - New android config
image_adaptive_round
- New
ic_launcher-playstore.png
is generated in main folder - Update example app
- Update README.md
1.1.2 #
- Update README.md
1.1.1 #
- Fixed web support
- Replace
'dart:io'
withuniversal_io
- Replace
1.1.0 #
- Add web support
1.0.1 #
- Provide documentation
1.0.0 #
- Initial version