Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lijy91 committed Apr 16, 2022
1 parent 74396f0 commit d1b0f33
Show file tree
Hide file tree
Showing 13 changed files with 72 additions and 57 deletions.
1 change: 1 addition & 0 deletions README-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
- [app_package_maker_ipa](./packages/app_package_maker_ipa/) - 为你的应用创建一个 `ipa` 包。
- [app_package_maker_zip](./packages/app_package_maker_zip/) - 为你的应用创建一个 `zip` 包。
- [app_package_maker_msix](./packages/app_package_maker_msix/) - 为你的应用创建一个 `msix` 包。
- [app_package_publisher_appcenter](./packages/app_package_publisher_appcenter/) - 把你的应用发布到 `appcenter`.
- [app_package_publisher_appstore](./packages/app_package_publisher_appstore/) - 把你的应用发布到 `appstore`.
- [app_package_publisher_fir](./packages/app_package_publisher_fir/) - 把你的应用发布到 `fir`
- [app_package_publisher_firebase](./packages/app_package_publisher_firebase/) - 把你的应用发布到 `firebase`
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ These are the available packages in this repository.
- [app_package_maker_ipa](./packages/app_package_maker_ipa/) - Create a `ipa` package for your app.
- [app_package_maker_msix](./packages/app_package_maker_msix/) - Create a `msix` package for your app.
- [app_package_maker_zip](./packages/app_package_maker_zip/) - Create a `zip` package for your app.
- [app_package_publisher_appcenter](./packages/app_package_publisher_appcenter/) - Publish your app to `appcenter`.
- [app_package_publisher_appstore](./packages/app_package_publisher_appstore/) - Publish your app to `appstore`.
- [app_package_publisher_fir](./packages/app_package_publisher_fir/) - Publish your app to `fir`.
- [app_package_publisher_firebase](./packages/app_package_publisher_firebase/) - Publish your app to `firebase`.
Expand Down
4 changes: 4 additions & 0 deletions packages/app_package_maker_apk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.0

* Fix apk maker copy wrong files #55

## 0.1.0

* First release.
6 changes: 1 addition & 5 deletions packages/app_package_maker_apk/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
name: app_package_maker_apk
description: Create a apk package for your app.
version: 0.1.3
version: 0.2.0
homepage: https://github.com/leanflutter/flutter_distributor

environment:
sdk: ">=2.12.0 <3.0.0"

dependencies:
app_package_maker: ^0.1.3

# dependency_overrides:
# app_package_maker:
# path: ../app_package_maker
4 changes: 4 additions & 0 deletions packages/app_package_maker_ipa/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.0

* Fix ipa maker copy wrong files #55

## 0.1.0

* First release.
6 changes: 1 addition & 5 deletions packages/app_package_maker_ipa/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
name: app_package_maker_ipa
description: Create a ipa package for your app.
version: 0.1.3
version: 0.2.0
homepage: https://github.com/leanflutter/flutter_distributor

environment:
sdk: ">=2.12.0 <3.0.0"

dependencies:
app_package_maker: ^0.1.3

# dependency_overrides:
# app_package_maker:
# path: ../app_package_maker
24 changes: 14 additions & 10 deletions packages/flutter_app_packager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,28 @@
## 0.2.0

* Fix apk, ipa makers copy wrong files #55

## 0.1.9

- [exe maker] MakeExeConfig Add `executable_name` field
- [exe maker] MakeExeConfig Add `display_name` field
- [exe maker] MakeExeConfig Add `create_desktop_icon` field
- [exe maker] MakeExeConfig Add `install_dir_name` field
- [exe maker] MakeExeConfig Add `locales` field
- [exe maker] Support chinese #57 #58
* [exe maker] MakeExeConfig Add `executable_name` field
* [exe maker] MakeExeConfig Add `display_name` field
* [exe maker] MakeExeConfig Add `create_desktop_icon` field
* [exe maker] MakeExeConfig Add `install_dir_name` field
* [exe maker] MakeExeConfig Add `locales` field
* [exe maker] Support chinese #57 #58

## 0.1.8

- [aab maker] support flavor arg #46
* [aab maker] support flavor arg #46

## 0.1.6

- `PowerShell` support.
* `PowerShell` support.

## 0.1.4

- #22 zip maker supports web platform.
* #22 zip maker supports web platform.

## 0.1.0

- First release.
* First release.
4 changes: 2 additions & 2 deletions packages/flutter_app_packager/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ packages:
path: "../app_package_maker_apk"
relative: true
source: path
version: "0.1.3"
version: "0.2.0"
app_package_maker_deb:
dependency: "direct main"
description:
Expand Down Expand Up @@ -49,7 +49,7 @@ packages:
path: "../app_package_maker_ipa"
relative: true
source: path
version: "0.1.3"
version: "0.2.0"
app_package_maker_msix:
dependency: "direct main"
description:
Expand Down
4 changes: 2 additions & 2 deletions packages/flutter_app_packager/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ environment:
dependencies:
app_package_maker: ^0.1.3
app_package_maker_aab: ^0.1.8
app_package_maker_apk: ^0.1.3
app_package_maker_apk: ^0.2.0
app_package_maker_deb: ^0.1.3
app_package_maker_dmg: ^0.1.3
app_package_maker_exe: ^0.1.9
app_package_maker_ipa: ^0.1.3
app_package_maker_ipa: ^0.2.0
app_package_maker_msix: ^0.1.9
app_package_maker_zip: ^0.1.3
args: ^2.2.0
Expand Down
16 changes: 10 additions & 6 deletions packages/flutter_app_publisher/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
## 0.2.0

* Add `appcenter` publisher. #13

## 0.1.8

- Add `appstore` publisher. #45
* Add `appstore` publisher. #45

## 0.1.6

- Fix the problem of broken files after uploading.
* Fix the problem of broken files after uploading.

## 0.1.5

- Add `firebase` publisher.
- Add `github` publisher.
* Add `firebase` publisher.
* Add `github` publisher.

## 0.1.4

- Add `qiniu` publisher.
* Add `qiniu` publisher.

## 0.1.0

- First release.
* First release.
53 changes: 29 additions & 24 deletions packages/flutter_distributor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,50 +1,55 @@
## 0.2.0

* Add `appcenter` publisher. #13
* Fix apk, ipa makers copy wrong files #55

## 0.1.9

- [exe maker] MakeExeConfig Add `executable_name` field
- [exe maker] MakeExeConfig Add `display_name` field
- [exe maker] MakeExeConfig Add `create_desktop_icon` field
- [exe maker] MakeExeConfig Add `install_dir_name` field
- [exe maker] MakeExeConfig Add `locales` field
- [exe maker] Support chinese #57 #58
- Add msix maker
* [exe maker] MakeExeConfig Add `executable_name` field
* [exe maker] MakeExeConfig Add `display_name` field
* [exe maker] MakeExeConfig Add `create_desktop_icon` field
* [exe maker] MakeExeConfig Add `install_dir_name` field
* [exe maker] MakeExeConfig Add `locales` field
* [exe maker] Support chinese #57 #58
* Add msix maker

## 0.1.8

- [aab maker] support flavor arg #46
- Add `appstore` publisher. #45
* [aab maker] support flavor arg #46
* Add `appstore` publisher. #45

## 0.1.7

- Change parameter `cleanOnceBeforeBuild` to `cleanBeforeBuild`
- Changed to only clean once before build #41
* Change parameter `cleanOnceBeforeBuild` to `cleanBeforeBuild`
* Changed to only clean once before build #41

## 0.1.6

- `PowerShell` support.
- Fix the problem of broken files after uploading.
* `PowerShell` support.
* Fix the problem of broken files after uploading.

## 0.1.5

- Add `firebase` publisher.
- Add `github` publisher.
* Add `firebase` publisher.
* Add `github` publisher.

## 0.1.4

- Add `--version` flag.
- Add `qiniu` publisher.
- #21 Add `--jobs` and `--skip-jobs` option to `release` command.
- #22 `zip` maker supports web platform.
* Add `--version` flag.
* Add `qiniu` publisher.
* #21 Add `--jobs` and `--skip-jobs` option to `release` command.
* #22 `zip` maker supports web platform.

## 0.1.3

- #12 Add `--skip-clean` flag to `package` and `release` commands.
- Optimize `exe` maker (Using `Inno Setup`).
* #12 Add `--skip-clean` flag to `package` and `release` commands.
* Optimize `exe` maker (Using `Inno Setup`).

## 0.1.2

- `dart-define` arg support multi values.
- Remove `console_bars` and Replace to `ProgressBar`.
* `dart-define` arg support multi values.
* Remove `console_bars` and Replace to `ProgressBar`.

## 0.1.0

- First release.
* First release.
4 changes: 2 additions & 2 deletions packages/flutter_distributor/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ packages:
path: "../app_package_maker_apk"
relative: true
source: path
version: "0.1.3"
version: "0.2.0"
app_package_maker_deb:
dependency: "direct overridden"
description:
Expand Down Expand Up @@ -49,7 +49,7 @@ packages:
path: "../app_package_maker_ipa"
relative: true
source: path
version: "0.1.3"
version: "0.2.0"
app_package_maker_msix:
dependency: "direct overridden"
description:
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_distributor/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
colorize: ^3.0.0
dio: ^4.0.4
flutter_app_builder: ^0.1.8
flutter_app_packager: ^0.1.9
flutter_app_packager: ^0.2.0
flutter_app_publisher: ^0.2.0
logging: ^1.0.2
path: ^1.8.1
Expand Down

0 comments on commit d1b0f33

Please sign in to comment.