Skip to content

Commit

Permalink
Bump version and update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
dhzdhd committed Jan 8, 2025
1 parent 7907b61 commit b087ee1
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<documents_folder>/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
Expand Down
6 changes: 2 additions & 4 deletions lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import 'dart:io';
import 'dart:isolate';

import 'package:dio/dio.dart';
import 'package:flutter/material.dart';
Expand All @@ -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';
Expand All @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit b087ee1

Please sign in to comment.