Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/package_info_plus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.6.3

- Fix base URI resolving for Web
- Fix platform interface dependency version for Linux

## 0.6.2

- Fix collision with package_info
Expand Down
6 changes: 3 additions & 3 deletions packages/package_info_plus/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: package_info_plus
description: Flutter plugin for querying information about the application package, such as CFBundleVersion on iOS or versionCode on Android.
version: 0.6.2
version: 0.6.3
homepage: https://plus.fluttercommunity.dev/
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/

Expand All @@ -25,10 +25,10 @@ dependencies:
flutter:
sdk: flutter
package_info_plus_platform_interface: ^0.3.0
package_info_plus_linux: ^0.1.0
package_info_plus_linux: ^0.1.1
package_info_plus_macos: ^0.2.0
package_info_plus_windows: ^0.2.0
package_info_plus_web: ^0.2.0
package_info_plus_web: ^0.2.1

dev_dependencies:
flutter_test:
Expand Down
5 changes: 5 additions & 0 deletions packages/package_info_plus_linux/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.1.1

- Fix platform interface dependency version


## [0.1.0]

* Initial version for Linux.
4 changes: 2 additions & 2 deletions packages/package_info_plus_linux/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: package_info_plus_linux
description: Linux implementation of the package_info_plus plugin
version: 0.1.0
version: 0.1.1
homepage: https://plus.fluttercommunity.dev/
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/

Expand All @@ -9,7 +9,7 @@ environment:
flutter: ">=1.17.0 <2.0.0"

dependencies:
package_info_plus_platform_interface: ^0.1.0
package_info_plus_platform_interface: ^0.3.0
flutter:
sdk: flutter
path: ^1.7.0
Expand Down
4 changes: 4 additions & 0 deletions packages/package_info_plus_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.1

- Fix base URI resolving

## 0.2.0

- Use interface plugin 0.3.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ class PackageInfoPlugin extends PackageInfoPlatform {

@override
Future<PackageInfoData> getAll() async {
String url = "${window.document.baseUri}/version.json";
String url =
"${Uri.parse(window.document.baseUri).removeFragment()}/version.json";

final response = await get(url);
if (response.statusCode == 200) {
Expand Down
2 changes: 1 addition & 1 deletion packages/package_info_plus_web/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: package_info_plus_web
description: Web platform implementation of package_info_plus
version: 0.2.0
version: 0.2.1
homepage: https://plus.fluttercommunity.dev/
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/

Expand Down