mirror of
https://github.com/ankit-kapur/obsidian-kanban-status-updater-plugin.git
synced 2026-07-22 05:42:29 +00:00
Added gitignore and demo GIF
This commit is contained in:
parent
013da36f95
commit
bb6b43006d
4 changed files with 63 additions and 1 deletions
60
.gitignore
vendored
Normal file
60
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,60 @@
|
||||||
|
# Dependency directories
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# NPM/Yarn logs
|
||||||
|
npm-debug.log
|
||||||
|
yarn-error.log
|
||||||
|
yarn-debug.log
|
||||||
|
.pnpm-debug.log
|
||||||
|
|
||||||
|
# Build process
|
||||||
|
.rollup.cache/
|
||||||
|
.hot/
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
.idea/
|
||||||
|
*.iml
|
||||||
|
*.sublime-project
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
|
# OS generated files
|
||||||
|
.DS_Store
|
||||||
|
.DS_Store?
|
||||||
|
._*
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
ehthumbs.db
|
||||||
|
Thumbs.db
|
||||||
|
desktop.ini
|
||||||
|
|
||||||
|
# Local development files
|
||||||
|
test-vault/
|
||||||
|
.obsidian/
|
||||||
|
|
||||||
|
# Temporary files
|
||||||
|
*.tmp
|
||||||
|
*.bak
|
||||||
|
.cache/
|
||||||
|
.temp/
|
||||||
|
tmp/
|
||||||
|
|
||||||
|
# Environment variables
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.development
|
||||||
|
.env.test
|
||||||
|
.env.production
|
||||||
|
|
||||||
|
# Logs
|
||||||
|
logs
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# Optional: Uncomment if you don't want to include compiled JS in version control
|
||||||
|
# main.js
|
||||||
|
# *.js.map
|
||||||
|
|
||||||
|
# Keep manifest.json, styles.css, and README.md in version control
|
||||||
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
This plugin automatically updates a property in a note's frontmatter when a card containing a link to that note is moved to a different column on a Kanban board.
|
This plugin automatically updates a property in a note's frontmatter when a card containing a link to that note is moved to a different column on a Kanban board.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Automatically updates a YAML frontmatter property (default: "status") when a card is moved on a Kanban board
|
- Automatically updates a YAML frontmatter property (default: "status") when a card is moved on a Kanban board
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"statusPropertyName": "kanban-status",
|
"statusPropertyName": "status",
|
||||||
"showNotifications": false,
|
"showNotifications": false,
|
||||||
"debugMode": false
|
"debugMode": false
|
||||||
}
|
}
|
||||||
BIN
demo.gif
Normal file
BIN
demo.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 42 MiB |
Loading…
Reference in a new issue