Skip to content

Commit

Permalink
Merge branch 'master' into fix/linting-issues
Browse files Browse the repository at this point in the history
  • Loading branch information
OutdatedGuy authored Sep 24, 2024
2 parents 87f10e3 + 2b852d5 commit dedd8f3
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 30 deletions.
17 changes: 11 additions & 6 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,28 @@
---
name: Bug report
about: Create a report to help us fix any issues you are having
title: "[BUG] "
labels: ''
title: ''
labels: 'bug'
assignees: ''

---

### :information_source: Info
<!--- Please enter what version of Flutter Launcher Icons you were using so we can identify if this is a problem with a certain version of the package --->
Version: `e.g. v0.7.5`



### :speech_balloon: Description
<!--- What is the issue? Does it fail during execution? Does it produce incorrect / wrong icons? Please include all details here --->

Enter a description of your problem here


### :scroll: Pubspec.yaml
<!--- Please include your pubspec.yaml file here --->
<!--- Please insert your flutter_launcher_icons yaml configuration here --->

We ask that you include your pubspec.yaml file as a common problem we have seen has been the pubspec.yaml file being incorrect
```yaml
flutter_launcher_icons:
android:
ios:
image_path:
```
6 changes: 2 additions & 4 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
---
name: Feature request
about: Suggest an idea to improve Flutter Launcher Icons
title: "[FEATURE REQUEST]"
title: ''
labels: improvement
assignees: ''

---

### :speech_balloon: Description
A clear and concise description of what you would like to be added to Flutter Launcher Icons.

### :question: Platform
Is this feature request for a specific platform? E.g. Web / iOS / Android / Mac OS / Windows / Linux
<!-- A clear and concise description of what you would like to be added to Flutter Launcher Icons. -->
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 0.14.1 (24th September 2024)

- Fixed README

## 0.14.0 (21st September 2024)

- Android: Support for monochrome icons [#563](https://github.com/fluttercommunity/flutter_launcher_icons/pull/563)

**Before**

<img src="https://github.com/user-attachments/assets/ce16287d-1394-4404-b056-8308f0a69f07" width=40%>

**Now**

<img src="https://github.com/user-attachments/assets/a420fefd-28b0-4eb9-8fd0-2e03068d3d83" width=40%>

- Android: Ability to set inset for adaptive icon foreground and monochrome icon [#563](https://github.com/fluttercommunity/flutter_launcher_icons/pull/563)
- iOS: Dark and Tinted icons for iOS 18+ [#569](https://github.com/fluttercommunity/flutter_launcher_icons/pull/569)

## 0.13.1 (15th April 2023)

- Can now use `flutter_launcher_icons` instead of `flutter_icons` [#478](https://github.com/fluttercommunity/flutter_launcher_icons/pull/478)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ A command-line tool which simplifies the task of updating your Flutter app's lau
Run the following command to create a new config automatically:

```shell
dart run run flutter_launcher_icons:generate
dart run flutter_launcher_icons:generate
```

This will create a new file called `flutter_launcher_icons.yaml` in your `flutter` project's root directory.

If you want to override the default location or name of the config file, use the `-f` flag:

```shell
dart run run flutter_launcher_icons:generate -f <your config file name here>
dart run flutter_launcher_icons:generate -f <your config file name here>
```

To override an existing config file, use the `-o` flag:

```shell
dart run run flutter_launcher_icons:generate -o
dart run flutter_launcher_icons:generate -o
```

OR
Expand All @@ -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.13.1"
flutter_launcher_icons: "^0.14.1"

flutter_launcher_icons:
android: "launcher_icon"
Expand All @@ -64,15 +64,15 @@ After setting up the configuration, all that is left to do is run the package.
```shell
flutter pub get
flutter pub run flutter_launcher_icons
dart run flutter_launcher_icons
```

If you name your configuration file something other than `flutter_launcher_icons.yaml` or `pubspec.yaml` you will need to specify
the name of the file when running the package.

```shell
flutter pub get
flutter pub run flutter_launcher_icons -f <your config file name here>
dart run flutter_launcher_icons -f <your config file name here>
```

Note: If you are not using the existing `pubspec.yaml` ensure that your config file is located in the same directory as it.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
name: flutter_launcher_icons
description: A package which simplifies the task of updating your Flutter app's launcher icon.
version: 0.13.1
version: 0.14.1
maintainer: Mark O'Sullivan (@MarkOSullivan94)
homepage: https://github.com/fluttercommunity/flutter_launcher_icons
repository: https://github.com/fluttercommunity/flutter_launcher_icons/
issue_tracker: https://github.com/fluttercommunity/flutter_launcher_icons/issues

dependencies:
args: ^2.3.2
checked_yaml: ^2.0.2
cli_util: ^0.4.0
image: ^4.0.15
json_annotation: ^4.8.1
path: ^1.8.2
yaml: ^3.1.1
args: ^2.5.0
checked_yaml: ^2.0.3
cli_util: ^0.4.1
image: ^4.2.0
json_annotation: ^4.9.0
path: ^1.9.0
yaml: ^3.1.2

environment:
sdk: '>=2.18.0 <3.0.0'
sdk: ">=3.0.0 <4.0.0"

dev_dependencies:
# Needed by build_version
build_runner: ^2.3.3
build_runner: ^2.4.12
# https://pub.dev/packages/build_version
build_version: ^2.1.1
json_serializable: ^6.6.1
mockito: ^5.3.2
test: ^1.23.1
json_serializable: ^6.8.0
mockito: ^5.4.4
test: ^1.25.8
test_descriptor: ^2.0.1

0 comments on commit dedd8f3

Please sign in to comment.