diff --git a/CHANGELOG.md b/CHANGELOG.md index ae93871..8828203 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.0] - 2024-06-09 + +## Added + +- Possibility to configure the remote path and local/remote filename #56 + +## Removed + +- BREAKING CHANGE: The username is no longer automatically appended to webdav base url (reinitialize your app if needed) + ## [0.9.1] - 2024-05-23 ### Fixed @@ -291,7 +301,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Intiial release -[unreleased]: https://github.com/tmaegel/ntodotxt/compare/v0.9.1...HEAD +[unreleased]: https://github.com/tmaegel/ntodotxt/compare/v0.10.0...HEAD +[0.10.0]: https://github.com/tmaegel/ntodotxt/compare/v0.9.1...v0.10.0 [0.9.1]: https://github.com/tmaegel/ntodotxt/compare/v0.9.0...v0.9.1 [0.9.0]: https://github.com/tmaegel/ntodotxt/compare/v0.8.1...v0.9.0 [0.8.1]: https://github.com/tmaegel/ntodotxt/compare/v0.8.0...v0.8.1 diff --git a/README.md b/README.md index 8a1c21f..2ae3f11 100644 --- a/README.md +++ b/README.md @@ -27,27 +27,24 @@ This application is under active development and will continue to be modified an ## Features - Manage your todos in [todo.txt](https://github.com/todotxt/todo.txt) format -- Manage your todos locally only if you want -- Synchronize your todos via webdav with a server of your choice +- Manage your todos locally and/or synchronize your todos via webdav with a server of your choice +- Custom path and filename of todo files (local and remote) - Completely customizable filters - Ordering - Filter by project, context, priorities and completion -- Custom path and filename of todo file on device +- Search todos ## Planned features -- [x] Build and publish to F-Droid (Android) -- [ ] Build and publish to Google Play (Android) -- [ ] Build and publish as `flatpak` to [flathub](https://flathub.org/) (Linux) -- [ ] Build and publish as `snap` to [snapcraft](https://snapcraft.io/) (Linux) -- [ ] Build and publish to Microsoft Store (Windows) -- [ ] Add language localization (e.g. english, german) -- [ ] Custom path of todo file on remote side -- [ ] Custom todo filename remote side -- [ ] Import existing todos from file -- [ ] Export todos to file -- [ ] Archiving of completed todos (done.txt) -- [ ] [Recurring](https://c306.net/t/topydo-docs/#Recurrence) tasks +- Build and publish to Google Play (Android) +- Build and publish as `flatpak` to [flathub](https://flathub.org/) (Linux) +- Build and publish as `snap` to [snapcraft](https://snapcraft.io/) (Linux) +- Build and publish to Microsoft Store (Windows) +- Add language localization (e.g. english, german) +- Import existing todos from file +- Export todos to file +- Archiving of completed todos (done.txt) +- [Recurring](https://c306.net/t/topydo-docs/#Recurrence) tasks ## Build @@ -70,7 +67,7 @@ See them in [awesome WebDAV list](https://github.com/WebDAVDevs/awesome-webdav/b ## Troubleshoot -### Prevent the file path of todo.txt from being automatically reset. +### Prevent the file path of todo.txt from being automatically reset #### One UI Core (Samsung) diff --git a/lib/constants/app.dart b/lib/constants/app.dart index 2c29201..fc8b199 100644 --- a/lib/constants/app.dart +++ b/lib/constants/app.dart @@ -1,6 +1,6 @@ // coverage:ignore-file -const String version = '0.9.1'; +const String version = '0.10.0'; /// https://m3.material.io/foundations/layout/applying-layout/window-size-classes const int maxScreenWidthCompact = 600; diff --git a/pubspec.yaml b/pubspec.yaml index 39c96ea..52b2bc6 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ name: ntodotxt description: App for managing your todos within a todo.txt file locally or via webdav (e.g. Nextcloud) publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 0.9.1+22 +version: 0.10.0+23 environment: sdk: '>=3.0.5 <4.0.0'