-
Notifications
You must be signed in to change notification settings - Fork 404
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix/linting-issues
- Loading branch information
Showing
6 changed files
with
52 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |