Skip to content

Commit

Permalink
0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-lednev committed Sep 27, 2024
1 parent ad5fc0d commit b0a63ab
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 7 deletions.
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 0.23.0

### ✨ New features

- Now clicking on checkboxes on the timeline completes a task. [obsidian-tasks](https://github.com/obsidian-tasks-group/obsidian-tasks) logic is also respected: recurrent tasks get updated, 'finished' property gets added
- There is now an option to sort items by time in your planner after an edit (thanks, @Gelio)
- You can now configure what kind of task to create on edit: bullet (`- task`) or checkbox (`- [ ] task`)
- Minimal task duration is now configurable. Now tasks won't shrink beyond this point when editing
- Timestamps get parsed anywhere on the line, not only at the start, e.g.: `- [ ] #task 20:30 - 21:00 Wake up`
- Note that if a timestamp is not at the start of the line, it needs to be in a stricter format to avoid confusing the plugin
- `20:00` will work
- `2000` will not work
- There is now an option to specify your email in remote calendar config. If you do this, your RSVP status (declined/tentative) will get displayed on remote tasks from this calendar (thanks, @ramandv)

### 🐞 Fixed issues

- Now timeline will stay where you've left it when you reload Obsidian (thanks, @k4a-l)

## 0.22.0

### ✨ New features
Expand Down Expand Up @@ -45,12 +63,12 @@

- ✨ Color coding: you can define background color for blocks containing certain text in first line
- ✨ Weekly view now displays unscheduled tasks on top
- ✨ Advanced drag-and-drop editing does not require modifier keys any more, you pick current edit mode in timeline controls
- ✨ Advanced drag-and-drop editing does not require modifier keys any more, you pick current edit mode in timeline controls

### Fixed issues

- 🐞 Fixed scheduling tasks for other days than today (by @Lunkle)
- 🐞 Pointer to current time is now more visible
- 🐞 Pointer to current time is now more visible
- 🐞 Task summary in internet calendars is now displayed next to calendar name, to make it visible in short blocks

## 0.19.1 - 0.19.6
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- ❤️ Support the project directly:
- <a href="https://www.buymeacoffee.com/machineelf" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>


## Table of contents

- [Table of contents](#table-of-contents)
Expand Down Expand Up @@ -143,7 +144,6 @@ If your organization doesn't let you share your calendar this way, you might try
- Open today's Day Planner
- Show the Week Planner
- Insert Planner Heading at Cursor
- Reorder tasks by time

## Note on the old plugin version

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-day-planner",
"name": "Day Planner",
"version": "0.22.1",
"version": "0.23.0",
"minAppVersion": "0.16.0",
"description": "A day planner with clean UI and readable syntax",
"author": "James Lynch, continued by Ivan Lednev",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-day-planner",
"version": "0.22.1",
"version": "0.23.0",
"description": "A plugin to help you plan your day and setup pomodoro timers",
"main": "main.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"0.23.0": "0.16.0",
"0.22.1": "0.16.0",
"0.22.0": "0.16.0",
"0.21.1": "0.16.0",
Expand Down

0 comments on commit b0a63ab

Please sign in to comment.