Skip to content

Commit 44e7ab6

Browse files
author
Mark O'Sullivan
committed
updated README and changelog
1 parent 25ed347 commit 44e7ab6

File tree

3 files changed

+34
-3
lines changed

3 files changed

+34
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.7.2 (25th May 2019)
4+
5+
- Reverted back using old interpolation method
6+
7+
38
## 0.7.1 (24th May 2019)
49

510
- Fixed issue with image dependency not working on latest version of Flutter (thanks to @sboutet06)

README.md

+28-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ A command-line tool which simplifies the task of updating your Flutter app's lau
99

1010
## :sparkles: What's New
1111

12+
#### Version 0.7.2 (25th May 2019)
13+
* Reverted back using old interpolation method
14+
1215
#### Version 0.7.1 (24th May 2019)
1316
* Fixed issue with image dependency not working on latest version of Flutter (thanks to @sboutet06)
1417
* Fixed iOS icon sizes which were incorrect (thanks to @sestegra)
@@ -39,7 +42,7 @@ Add your Flutter Launcher Icons configuration to your `pubspec.yaml` or create a
3942
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).
4043
```yaml
4144
dev_dependencies:
42-
flutter_launcher_icons: "^0.7.1"
45+
flutter_launcher_icons: "^0.7.2"
4346

4447
flutter_icons:
4548
android: "launcher_icon"
@@ -97,6 +100,29 @@ be used to fill out the background of the adaptive icon.
97100
- `adaptive_icon_foreground`: The image asset which will be used for the icon foreground of the adaptive icon
98101
99102
103+
## :question: Troubleshooting
104+
105+
Listed a couple common issues with solutions for them
106+
107+
108+
#### Generated icon color is different from the original icon
109+
110+
Caused by an update to the image dependency which is used by Flutter Launcher Icons.
111+
112+
```
113+
Use #AARRGGBB for colors instead of ##AABBGGRR, to be compatible with Flutter image class.
114+
```
115+
116+
[Related issue](https://github.com/fluttercommunity/flutter_launcher_icons/issues/98)
117+
118+
119+
#### Image foreground is too big / too small
120+
121+
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).
122+
123+
[Related issue](https://github.com/fluttercommunity/flutter_launcher_icons/issues/96)
124+
125+
100126
## :eyes: Example
101127
102128
[![Video Example](https://img.youtube.com/vi/RjNAxwcP3Tc/0.jpg)](https://www.youtube.com/watch?v=RjNAxwcP3Tc)
@@ -105,5 +131,5 @@ Note: This is showing a very old version (v0.0.5)
105131
106132
### Special thanks
107133
108-
- Thanks to Brendan Duncan for the underlying image package to transform the pics.
134+
- Thanks to Brendan Duncan for the underlying [image package](https://pub.dev/packages/image) to transform the icons.
109135
- Big thank you to all the contributors to the project. Every PR / reported issue is greatly appreciated!

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_launcher_icons
22
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.
3-
version: 0.7.1
3+
version: 0.7.2
44
maintainer: Mark O'Sullivan (@MarkOSullivan94)
55
homepage: https://github.com/fluttercommunity/flutter_launcher_icons
66
authors:

0 commit comments

Comments
 (0)