Skip to content

Commit

Permalink
Merge pull request #42 from bartkessels/release/1.8.0
Browse files Browse the repository at this point in the history
Release/1.8.0
  • Loading branch information
bartkessels authored Dec 20, 2024
2 parents c037806 + 385aa55 commit 92f0194
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 10 deletions.
24 changes: 17 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,21 @@ The Daily note calendar plugin started as a hobby project because another calend

# Table of contents

- [1. Overview](#1-overview)
- [1. Features](#1-features)
- [1.1 Periodic notes](#11-periodic-notes)
- [1.2 Variables](#12-variables)
- [1.3 Notes created on a specific day](#13-notes-created-on-a-specific-day)
- [2. External dependencies](#2-external-dependencies)
- [3. Build and test](#3-build-and-test)
- [4. Contribute](#4-contribute)
- [4.1 Branching strategy](#41-branching-strategy)
- [5. Create a new release](#5-create-a-new-release)

# 1. Overview
# 1. Features

![Daily note calendar plugin light mode](./docs/images/daily-note-calendar-light-mode.png)

## 1.1 Periodic notes

Quickly navigate your vault using a calendar view, this plugin allows you to create and navigate to your periodic notes such as

Expand All @@ -37,6 +44,11 @@ Quickly navigate your vault using a calendar view, this plugin allows you to cre
For each note, you can specify the template of the name `yyyy-MM-dd - eeee` and the folder where the newly created periodic note should be stored.
The path is also customizable using the date formatting rules of [`date-fns`](https://date-fns.org/docs/format).


Below each date, you can choose to display an indicator whether or note that date already has a note.

## 1.2 Variables

All the notes that you create must be based on a template, this allows you to create your periodic note based on the same template every time.
Inside your template-file you can use the following variables:

Expand All @@ -46,13 +58,11 @@ Inside your template-file you can use the following variables:
| `{{today:<template>}}` | The date of today. This date is based on the date and time of creation of the note. | You can use the same date templating rules of [date-fns](https://date-fns.org/docs/format) that you use in the name or the folder. Thus `{{today:yyyy-MM-dd - eeee, HH:mm}}` would turn into _2024-12-31 - Monday, 12:59_. |
| `{{title}}` | - | This will take the title of the note you had opened before clicking a date in the calendar. |

<img src="./docs/images/daily-note-calendar-light-mode.png" alt="Daily note calendar plugin in light mode" width="400" />
<img src="./docs/images/daily-note-calendar-dark-mode.png" alt="Daily note calendar plugin in dark mode" width="400" />
## 1.3 Notes created on a specific day

As you see in the images above, you can also enable a feature which allows you to display all the notes created on a specific day.
This can be helpful when you need to navigate a lot back and forth between your periodic notes and the notes you created on a specific day.
For each day you select, you can enable the feature to display all the notes created on that specific day below the calendar.
This allows you to easily navigate your vault using the calendar view and quickly find the notes you've created on any day.

If you're missing a feature, or something is not working as expected, please let me know by creating an issue in the [issue tracker](https://github.com/bartkessels/daily-note-calendar/issues).

# 2. External dependencies

Expand Down
Binary file modified docs/images/daily-note-calendar-dark-mode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/daily-note-calendar-light-mode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/daily-note-calendar-settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "daily-note-calendar",
"name": "Daily notes calendar",
"version": "1.7.1",
"version": "1.8.0",
"minAppVersion": "0.15.0",
"description": "Navigate your Obsidian Vault using a calendar view.",
"author": "bartkessels",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "daily-note-calendar",
"version": "1.7.1",
"version": "1.8.0",
"description": "Navigate your Obsidian vault using a calendar view.",
"main": "main.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
"1.6.3": "0.15.0",
"1.6.4": "0.15.0",
"1.7.0": "0.15.0",
"1.7.1": "0.15.0"
"1.7.1": "0.15.0",
"1.8.0": "0.15.0"
}

0 comments on commit 92f0194

Please sign in to comment.