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/package_info_plus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.4.1

- Windows: Fix MissingPluginException
- Linux: Fix MissingPluginException

## 1.4.0

- Android: Migrate to Kotlin
Expand Down
6 changes: 3 additions & 3 deletions packages/package_info_plus/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: 1.4.0
version: 1.4.1
Comment thread
fabiancrx marked this conversation as resolved.
homepage: https://plus.fluttercommunity.dev/
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/

Expand All @@ -25,9 +25,9 @@ dependencies:
flutter:
sdk: flutter
package_info_plus_platform_interface: ^1.0.2
package_info_plus_linux: ^1.0.3
package_info_plus_linux: ^1.0.4
package_info_plus_macos: ^1.2.0
package_info_plus_windows: ^1.0.4
package_info_plus_windows: ^1.0.5
package_info_plus_web: ^1.0.4

dev_dependencies:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.4

- Fix MissingPluginException

## 1.0.3
- Add `buildSignature` to Android package info to retrieve the signing certifiate SHA1 at runtime.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: package_info_plus_linux
description: Linux implementation of the package_info_plus plugin
version: 1.0.3
version: 1.0.4
homepage: https://plus.fluttercommunity.dev/
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/

environment:
sdk: ">=2.12.0 <3.0.0"
flutter: ">=1.17.0"
flutter: ">=1.20.0"

dependencies:
package_info_plus_platform_interface: ^1.0.2
Expand All @@ -25,4 +25,4 @@ flutter:
platforms:
linux:
dartPluginClass: PackageInfoLinux
pluginClass: none
pluginClass: none
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.5

- Fix MissingPluginException

## 1.0.4

- Annotate int with external in preparation of Flutter 2.5
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: package_info_plus_windows
description: Windows implementation of the package_info_plus plugin
version: 1.0.4
version: 1.0.5
homepage: https://plus.fluttercommunity.dev/
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/

environment:
sdk: ">=2.12.0 <3.0.0"
flutter: ">=1.17.0"
flutter: ">=1.20.0"

dependencies:
package_info_plus_platform_interface: ^1.0.2
Expand All @@ -26,4 +26,4 @@ flutter:
platforms:
windows:
dartPluginClass: PackageInfoWindows
pluginClass: none
pluginClass: none