diff --git a/CHANGELOG.md b/CHANGELOG.md index df5319b..3909975 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. For currently known issues, check the [GitHub issues tab](https://github.com/dhzdhd/SyncVault/issues?q=is%3Aopen+is%3Aissue+label%3Abug) +## 0.6.0 | 08-01-2025 (Prerelease) + +### Additions + +- Added new Linux build (needs testing). +- Added file logs (visit `/SyncVault/logs`). +- Reimplemented provider information dialog. + +### Fixes / Improvements + +- Improved tree view UI. +- (Dev only) Fixed MacOS debug builds. + +### Temporary removals (due to new backend) + +- RClone download in settings page does not work. +- Minio folder creation does not work as intended (as it does support nested file paths, only buckets). +- None of the switches in the expanded cards in home page work (auto sync, two way sync, delete on sync). +- Folder deletion does not work as intended. +- New accounts (remotes) are not yet automatically detected by supplied rclone config file. + ## 0.5.4 | 28-12-2024 (Prerelease) ### Additions diff --git a/lib/main.dart b/lib/main.dart index 6ede95d..0fc5d55 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,5 +1,4 @@ import 'dart:io'; -import 'dart:isolate'; import 'package:dio/dio.dart'; import 'package:flutter/material.dart'; @@ -10,7 +9,6 @@ import 'package:hive_ce_flutter/adapters.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import 'package:path_provider/path_provider.dart'; import 'package:sentry_flutter/sentry_flutter.dart'; -import 'package:syncvault/helpers.dart'; import 'package:syncvault/injectable.dart'; import 'package:syncvault/src/accounts/controllers/auth_controller.dart'; import 'package:syncvault/src/accounts/controllers/folder_controller.dart'; @@ -31,8 +29,8 @@ void callbackDispatcher() { Workmanager().executeTask((task, inputData) async { await Hive.initFlutter(); - final authInfo = Auth.init(); - final folderInfo = Folder.init(); + // final authInfo = Auth.init(); + // final folderInfo = Folder.init(); // for (final folderModel in folderInfo) { // if (folderModel.isAutoSync) { diff --git a/pubspec.yaml b/pubspec.yaml index bff5f8b..bf7bad8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: A new Flutter project. publish_to: 'none' -version: 0.5.4 +version: 0.6.0 environment: sdk: '>=3.6.0 <4.0.0'