release: 1.5.1+15

This commit is contained in:
Tien Do Nam
2023-01-10 02:06:53 +01:00
parent 977d575072
commit 6fc901ff9b
3 changed files with 5 additions and 3 deletions
+4
View File
@@ -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
-2
View File
@@ -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
View File
@@ -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'