No description
Find a file
2024-12-14 17:05:20 +09:00
.github/workflows feat: 루틴 뷰 만들기 2024-09-24 11:52:52 +09:00
__mocks__ refactor: fsd 모듈을 alias로 참조 2024-11-13 09:31:43 +09:00
src feat: dnd reorder 로직 재구성 2024-12-14 17:05:20 +09:00
test/reorder refactor: 전체적인 구조에서 함수들 HOC 방식으로 의존성을 주입할 수 있도록 변경 2024-11-24 02:14:13 +09:00
.editorconfig feat: 루틴 뷰 만들기 2024-09-24 11:52:52 +09:00
.eslintignore feat: 루틴 뷰 만들기 2024-09-24 11:52:52 +09:00
.eslintrc 새로운 property인 daysOfMonth를 추가 2024-10-17 19:10:00 +09:00
.gitignore gitignore 수정 2024-11-14 20:37:41 +09:00
.npmrc feat: 루틴 뷰 만들기 2024-09-24 11:52:52 +09:00
esbuild.config.mjs BREAKING_CHANGE: 전체 구조를 도메인 모델 기반으로 변경하고 Group 기능을 추가 2024-12-13 20:26:32 +09:00
jest.config.js refactor: fsd 모듈을 alias로 참조 2024-11-13 09:31:43 +09:00
LICENSE Initial commit 2024-09-24 10:10:18 +09:00
manifest.json feat: 루틴 뷰 만들기 2024-09-24 11:52:52 +09:00
package-lock.json BREAKING_CHANGE: 전체 구조를 도메인 모델 기반으로 변경하고 Group 기능을 추가 2024-12-13 20:26:32 +09:00
package.json BREAKING_CHANGE: 전체 구조를 도메인 모델 기반으로 변경하고 Group 기능을 추가 2024-12-13 20:26:32 +09:00
README.md feat: 루틴 뷰 만들기 2024-09-24 11:52:52 +09:00
tsconfig.json refactor: fsd 모듈을 alias로 참조 2024-11-13 09:31:43 +09:00
version-bump.mjs feat: 루틴 뷰 만들기 2024-09-24 11:52:52 +09:00
versions.json feat: 루틴 뷰 만들기 2024-09-24 11:52:52 +09:00

<<<<<<< HEAD

daily-routine-2

new version of daily-routine obsidian plugin

Daily Routine

Daily Routine overcomes the limitations of checkboxes and todos that provide only one-time checks by introducing a new unit called routine for todos that need to be achieved daily. With routines, you can help complete todos that need to be repeated at specific intervals.

Features

  1. Create routines.
  2. Provides the progress of all routines as a percentage.
  3. Offers commands to check or uncheck all routines.
  4. (Coming soon) Track records of desired routines and provide statistics.

Creating a Routine

A routine is essentially no different from the existing checkboxes offered by Markdown. Unlike checkboxes that required clicking the exact box icon in preview mode, you can mark routines complete by clicking anywhere on the routine line.

Routines can be written with the following syntax: > - [ ]

This is identical to writing a 'quoted checkbox.'

Since using an entirely different syntax would prevent using the default checkbox features provided by Obsidian, a syntax identical to the quoted checkbox has been temporarily chosen. However, if problems arise in the long term, there is a willingness to change the syntax for writing routines.

Displaying Routine Progress

You can see the progress of routines with an icon. This can be turned on/off in the settings.

Check-All, Uncheck-All

Provides commands to check or uncheck all routines. This is useful for simple routine files not used in conjunction with the daily note.

(Coming Soon) Routine Record Tracking and Statistics

This will be added later.

65e807f (feat: 루틴 뷰 만들기)