diff --git a/CHANGELOG.md b/CHANGELOG.md index e29014d17a..9440451c31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.14.2 (5th December 2024) + +- iOS: Fixed issue where dark and tinted icons were placed into the wrong directory [#597](https://github.com/fluttercommunity/flutter_launcher_icons/pull/597) + ## 0.14.1 (24th September 2024) - Fixed README diff --git a/README.md b/README.md index 06338ecee6..dcdb33f83a 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ An example is shown below. More complex examples [can be found in the example pr ```yaml dev_dependencies: - flutter_launcher_icons: "^0.14.1" + flutter_launcher_icons: "^0.14.2" flutter_launcher_icons: android: "launcher_icon" diff --git a/lib/config/config.g.dart b/lib/config/config.g.dart index 5087f1846d..97dabf1bcd 100644 --- a/lib/config/config.g.dart +++ b/lib/config/config.g.dart @@ -23,8 +23,9 @@ Config _$ConfigFromJson(Map json) => $checkedCreate( 'image_path_ios_tinted_grayscale', (v) => v as String?), adaptiveIconForeground: $checkedConvert('adaptive_icon_foreground', (v) => v as String?), - adaptiveIconForegroundInset: - $checkedConvert('adaptive_icon_foreground_inset', (v) => v as int? ?? 16), + adaptiveIconForegroundInset: $checkedConvert( + 'adaptive_icon_foreground_inset', + (v) => (v as num?)?.toInt() ?? 16), adaptiveIconBackground: $checkedConvert('adaptive_icon_background', (v) => v as String?), adaptiveIconMonochrome: diff --git a/lib/src/version.dart b/lib/src/version.dart index 6f13da7e60..83a7d73f18 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '0.14.1'; +const packageVersion = '0.14.2'; diff --git a/pubspec.yaml b/pubspec.yaml index a94e244a32..af40b94b17 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_launcher_icons description: A package which simplifies the task of updating your Flutter app's launcher icon. -version: 0.14.1 +version: 0.14.2 maintainer: Mark O'Sullivan (@MarkOSullivan94) homepage: https://github.com/fluttercommunity/flutter_launcher_icons repository: https://github.com/fluttercommunity/flutter_launcher_icons/