Skip to content

Commit

Permalink
chore: Bump version to v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaegel committed Jun 9, 2024
1 parent 95712e6 commit 5c03be7
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 19 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
29 changes: 13 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion lib/constants/app.dart
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 5c03be7

Please sign in to comment.