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
4 changes: 4 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,7 @@
## 1.2.1

- Windows: Annotate int with external in preparation of Flutter 2.5

## 1.2.0

- fix app name on iOS and macOS
Expand Down
4 changes: 2 additions & 2 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.2.0
version: 1.2.1
homepage: https://plus.fluttercommunity.dev/
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/

Expand All @@ -27,7 +27,7 @@ dependencies:
package_info_plus_platform_interface: ^1.0.2
package_info_plus_linux: ^1.0.3
package_info_plus_macos: ^1.2.0
package_info_plus_windows: ^1.0.3
package_info_plus_windows: ^1.0.4
package_info_plus_web: ^1.0.4

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

- Annotate int with external in preparation of Flutter 2.5

## 1.0.3

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

## 1.0.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ part of package_info_plus_windows;

class _LANGANDCODEPAGE extends Struct {
@Uint16()
int? wLanguage;
external int? wLanguage;

@Uint16()
int? wCodePage;
external int? wCodePage;
}

final _kernel32 = DynamicLibrary.open('kernel32.dll');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: package_info_plus_windows
description: Windows 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/

Expand Down