Skip to content

Commit

Permalink
v1.25.0-beat.1 (#55)
Browse files Browse the repository at this point in the history
* fix(App): webview can't be hidden correctly on Windows

* feat: upgrade core

* chore: v1.25.0-beat.1
  • Loading branch information
igoogolx authored Dec 29, 2024
1 parent 9457893 commit c276a10
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions lib/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,13 @@ class _HomeState extends State<Home> with WindowListener {
} else {
await windowManager.minimize();
}
setState(() {
isWebviewHidden= true;
});
} else {
await windowManager.hide();
}
setState(() {
isWebviewHidden= true;
});

}

@override
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.24.1-beat.4
version: 1.25.0-beat.1

environment:
sdk: '>=3.0.6 <4.0.0'
Expand Down
2 changes: 1 addition & 1 deletion scripts/init.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ final assetsPath =
final binDir = Directory(path.join(assetsPath, 'bin'));

const rawCoreName = 'itun2socks';
const rawCoreVersion = '1.22.2';
const rawCoreVersion = '1.22.3';

Future downloadLatestCore(String arch, String token) async {
final dio = Dio();
Expand Down

0 comments on commit c276a10

Please sign in to comment.