mirror of
https://github.com/localsend/localsend.git
synced 2026-06-23 04:10:07 +00:00
release: 1.5.1+15
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
## 1.5.1 (2023-01-10)
|
||||
|
||||
- fix(windows): app sometimes crash on start
|
||||
|
||||
## 1.5.0 (2023-01-09)
|
||||
|
||||
- feat: quick save mode
|
||||
|
||||
@@ -24,9 +24,7 @@ class NetworkInfoNotifier extends StateNotifier<NetworkInfo?> {
|
||||
if (checkPlatform([TargetPlatform.windows])) {
|
||||
// https://github.com/localsend/localsend/issues/12
|
||||
_subscription = Stream.periodic(const Duration(seconds: 5), (_) {}).listen((_) async {
|
||||
final s = Stopwatch()..start();
|
||||
state = await _getInfo();
|
||||
print('fetch: ${s.elapsedMilliseconds}');
|
||||
});
|
||||
} else {
|
||||
_subscription = Connectivity().onConnectivityChanged.listen((_) async {
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ description: An open source cross-platform alternative to AirDrop
|
||||
|
||||
publish_to: 'none'
|
||||
|
||||
version: 1.5.0+15
|
||||
version: 1.5.1+15
|
||||
|
||||
environment:
|
||||
sdk: '>=2.18.5 <3.0.0'
|
||||
|
||||
Reference in New Issue
Block a user