-
-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Bump version numbers to `0.3.1` and update dependencies in multiple packages. - Modify `publish` method to accept `FileSystemEntity`, upgrade and downgrade dependencies as necessary in `app_package_publisher`. - Add `workingDirectory` parameter and implement `Command` class in `shell_executor`. - Add support for `firebase-hosting`, `vercel`, `appcenter`, `appstore`, `firebase`, `github`, `qiniu`, and increase dependency versions in `flutter_app_publisher`. - Add support for `direct` maker, fix issues, and upgrade dependencies in `flutter_app_builder`, `flutter_app_packager`, and `flutter_distributor`. - Add fields, variables, and configuration support in `app_package_maker` and `flutter_app_packager`. - Add support for different platforms, locales, and configurations in `exe`, `dmg`, `app`, `apk`, `ipa`, `aab`, `zip`, and `msix` makers in `flutter_app_packager`. - Add `workingDirectory` parameter to `DefaultShellExecutor` and related classes in `flutter_distributor`.
- Loading branch information
Showing
25 changed files
with
91 additions
and
44 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
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
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
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,13 +1,13 @@ | ||
name: app_package_publisher | ||
description: App package publisher | ||
version: 0.3.0 | ||
version: 0.3.1 | ||
homepage: https://github.com/leanflutter/flutter_distributor | ||
|
||
environment: | ||
sdk: ">=2.12.0 <3.0.0" | ||
|
||
dependencies: | ||
pubspec_parse: ^1.1.0 | ||
shell_executor: ^0.1.1 | ||
shell_executor: ^0.1.2 | ||
dev_dependencies: | ||
dependency_validator: ^3.0.0 |
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,3 +1,7 @@ | ||
## 0.3.1 | ||
|
||
* Bump `shell_executor` to 0.1.2. | ||
|
||
## 0.3.0 | ||
|
||
* Update a dependency to the latest release. | ||
|
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
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
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,17 +1,17 @@ | ||
name: flutter_app_packager | ||
description: Package your Flutter app into OS-specific bundles (.dmg, .exe, etc.) via Dart or the command line. | ||
version: 0.3.0 | ||
version: 0.3.1 | ||
homepage: https://github.com/leanflutter/flutter_distributor | ||
|
||
environment: | ||
sdk: ">=2.12.0 <3.0.0" | ||
|
||
dependencies: | ||
app_package_maker: ^0.3.0 | ||
app_package_maker: ^0.3.1 | ||
archive: ^3.1.5 | ||
io: ^1.0.3 | ||
liquid_engine: ^0.2.2 | ||
path: ^1.8.1 | ||
shell_executor: ^0.1.1 | ||
shell_executor: ^0.1.2 | ||
dev_dependencies: | ||
dependency_validator: ^3.0.0 |
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
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,18 +1,18 @@ | ||
name: flutter_app_publisher | ||
description: Flutter app publisher | ||
version: 0.3.0 | ||
version: 0.3.1 | ||
homepage: https://github.com/leanflutter/flutter_distributor | ||
|
||
environment: | ||
sdk: ">=2.12.0 <3.0.0" | ||
|
||
dependencies: | ||
app_package_publisher: ^0.3.0 | ||
app_package_publisher: ^0.3.1 | ||
dio: ^4.0.4 | ||
googleapis: ^8.1.0 | ||
googleapis_auth: ^1.3.0 | ||
parse_app_package: ^0.3.0 | ||
parse_app_package: ^0.3.1 | ||
qiniu_sdk_base: ^0.3.2 | ||
shell_executor: ^0.1.1 | ||
shell_executor: ^0.1.2 | ||
dev_dependencies: | ||
dependency_validator: ^3.0.0 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 0.3.1 | ||
|
||
* Bump `shell_executor` to 0.1.2. | ||
|
||
## 0.3.0 | ||
|
||
* Update a dependency to the latest release. | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
|
||
```yaml | ||
dependencies: | ||
parse_app_package: ^0.0.7 | ||
parse_app_package: ^0.3.1 | ||
``` | ||
## Usage | ||
|
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
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
Oops, something went wrong.