diff --git a/CHANGELOG.md b/CHANGELOG.md index 50eec6f..9a8f1e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 2.1.3 +* Added Android custom properties/config to flavors +* Relaxed first app entry checks +* New naming conventions for flutter_lints +* New README section: Docs and Tutorials +* Bumped dependencies + ## 2.1.2 * Added resValues directive to declare resValues in build.gradle for each flavor (Android) * Added variables directive to declare variables in xcconfig for each flavor (iOS) diff --git a/README.md b/README.md index 64705f0..c53a56b 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ in your [pubspec.yaml](https://dart.dev/tools/pub/pubspec): ```yaml dev_dependencies: - flutter_flavorizr: ^2.1.2 + flutter_flavorizr: ^2.1.3 ``` You can install packages from the command line: @@ -105,7 +105,7 @@ flavorizr: | app | Object | | false | An object describing the general capabilities of an app | | flavors | Array | | true | An array of items. Each of them describes a flavor configuration | | [instructions](#available-instructions) | Array | | false | An array of instructions to customize the flavorizr process | -| assetsUrl | String | [link](https://github.com/AngeloAvv/flutter_flavorizr/releases/download/v2.1.2/assets.zip) | false | A string containing the URL of the zip assets file. The default points to the current release | +| assetsUrl | String | [link](https://github.com/AngeloAvv/flutter_flavorizr/releases/download/v2.1.3/assets.zip) | false | A string containing the URL of the zip assets file. The default points to the current release | | ide | String | | false | The IDE in which the app is being developed. Currently only `vscode` or `idea` | ##### Available instructions diff --git a/example/pubspec.lock b/example/pubspec.lock index dc17dab..fd2498e 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -96,7 +96,7 @@ packages: path: ".." relative: true source: path - version: "2.1.2" + version: "2.1.3" flutter_test: dependency: "direct dev" description: flutter diff --git a/lib/parser/models/flavorizr.dart b/lib/parser/models/flavorizr.dart index e341d7f..3312504 100644 --- a/lib/parser/models/flavorizr.dart +++ b/lib/parser/models/flavorizr.dart @@ -43,7 +43,7 @@ class Flavorizr { @JsonKey( defaultValue: - 'https://github.com/AngeloAvv/flutter_flavorizr/releases/download/v2.1.2/assets.zip') + 'https://github.com/AngeloAvv/flutter_flavorizr/releases/download/v2.1.3/assets.zip') final String assetsUrl; @JsonKey() diff --git a/lib/parser/models/flavorizr.g.dart b/lib/parser/models/flavorizr.g.dart index 8b2b6f6..fd5c8b1 100644 --- a/lib/parser/models/flavorizr.g.dart +++ b/lib/parser/models/flavorizr.g.dart @@ -23,7 +23,7 @@ Flavorizr _$FlavorizrFromJson(Map json) { ?.map((e) => e as String) .toList(), assetsUrl: json['assetsUrl'] as String? ?? - 'https://github.com/AngeloAvv/flutter_flavorizr/releases/download/v2.1.2/assets.zip', + 'https://github.com/AngeloAvv/flutter_flavorizr/releases/download/v2.1.3/assets.zip', ide: $enumDecodeNullable(_$IDEEnumMap, json['ide']), ); } diff --git a/pubspec.yaml b/pubspec.yaml index 5a31260..759bf55 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_flavorizr description: A flutter utility to easily create flavors in your flutter application -version: 2.1.2 +version: 2.1.3 repository: https://github.com/AngeloAvv/flutter_flavorizr issue_tracker: https://github.com/AngeloAvv/flutter_flavorizr/issues homepage: https://www.angelocassano.it