Skip to content

Commit

Permalink
updated README and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark O'Sullivan committed May 25, 2019
1 parent 25ed347 commit 44e7ab6
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.7.2 (25th May 2019)

- Reverted back using old interpolation method


## 0.7.1 (24th May 2019)

- Fixed issue with image dependency not working on latest version of Flutter (thanks to @sboutet06)
Expand Down
30 changes: 28 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ A command-line tool which simplifies the task of updating your Flutter app's lau

## :sparkles: What's New

#### Version 0.7.2 (25th May 2019)
* Reverted back using old interpolation method

#### Version 0.7.1 (24th May 2019)
* Fixed issue with image dependency not working on latest version of Flutter (thanks to @sboutet06)
* Fixed iOS icon sizes which were incorrect (thanks to @sestegra)
Expand Down Expand Up @@ -39,7 +42,7 @@ Add your Flutter Launcher Icons configuration to your `pubspec.yaml` or create a
An example is shown below. A more complex example [can be found in the example project](https://github.com/fluttercommunity/flutter_launcher_icons/blob/master/example/pubspec.yaml).
```yaml
dev_dependencies:
flutter_launcher_icons: "^0.7.1"
flutter_launcher_icons: "^0.7.2"

flutter_icons:
android: "launcher_icon"
Expand Down Expand Up @@ -97,6 +100,29 @@ be used to fill out the background of the adaptive icon.
- `adaptive_icon_foreground`: The image asset which will be used for the icon foreground of the adaptive icon
## :question: Troubleshooting
Listed a couple common issues with solutions for them
#### Generated icon color is different from the original icon
Caused by an update to the image dependency which is used by Flutter Launcher Icons.
```
Use #AARRGGBB for colors instead of ##AABBGGRR, to be compatible with Flutter image class.
```
[Related issue](https://github.com/fluttercommunity/flutter_launcher_icons/issues/98)
#### Image foreground is too big / too small
For best results try and use a foreground image which has padding much like [the one in the example](https://github.com/fluttercommunity/flutter_launcher_icons/blob/master/example/assets/images/icon-foreground-432x432.png).
[Related issue](https://github.com/fluttercommunity/flutter_launcher_icons/issues/96)
## :eyes: Example
[![Video Example](https://img.youtube.com/vi/RjNAxwcP3Tc/0.jpg)](https://www.youtube.com/watch?v=RjNAxwcP3Tc)
Expand All @@ -105,5 +131,5 @@ Note: This is showing a very old version (v0.0.5)
### Special thanks
- Thanks to Brendan Duncan for the underlying image package to transform the pics.
- Thanks to Brendan Duncan for the underlying [image package](https://pub.dev/packages/image) to transform the icons.
- Big thank you to all the contributors to the project. Every PR / reported issue is greatly appreciated!
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_launcher_icons
description: A package which simplifies the task of updating your Flutter app's launcher icon. Fully flexible, allowing you to choose what platform you wish to update the launcher icon for and if you want, the option to keep your old launcher icon in case you want to revert back sometime in the future.
version: 0.7.1
version: 0.7.2
maintainer: Mark O'Sullivan (@MarkOSullivan94)
homepage: https://github.com/fluttercommunity/flutter_launcher_icons
authors:
Expand Down

0 comments on commit 44e7ab6

Please sign in to comment.