mirror of
https://github.com/philemonchiro/obsidian-notekeeper.git
synced 2026-07-22 06:51:40 +00:00
Capture box (Keep parity): - Title input above body, both visible only when capture is focused - Discard button next to a primary Save button - Pin and color toggles in the action row; picking a color tints the whole capture box so you preview the sticky color before saving - Auto-save on focus loss (200ms grace so the color popup menu doesn't trigger a premature save) - Plain Enter inserts a newline; cmd/ctrl-Enter saves - Title typography: 20px / 500 weight, divider between title and body, inputs are flush (no nested borders) - Capture also auto-adds the new note to the current wall when in wall mode Wall view: - Pinned cards float to the top in pinOrder - 3D pushpin head on pinned wall cards (red gradient + drop shadow, softer shadow on light backgrounds) - Removed the floating + add button (redundant with the capture box) - Removed the wall switcher dropdown; one implicit wall, exposed via a 'Clear wall' command in the palette Modal preview: - Inherits the note's color: paints the modal background, transparent inner panels, lighter tag chips and code-block backgrounds for contrast on the dark color palette - Hidden Obsidian's built-in × close (overlapped with the action row); Esc / click-outside / Open-in-tab still close Bulk actions: - 40px buttons with 20px icons (was 32/16) for better legibility, vertical divider between count and actions Async/await cleanup: - onOpen, onClose, render, and the bulk-trash handler no longer declare async without an await; require-await passes locally
23 lines
707 B
JSON
23 lines
707 B
JSON
{
|
|
"name": "obsidian-notekeeper",
|
|
"version": "0.2.1",
|
|
"description": "Browse your vault as a Google Keep-style masonry of cards. Quick capture, pin, color, archive, and filter notes by labels.",
|
|
"author": "Philemon Chiro",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"@typescript-eslint/parser": "^8.59.1",
|
|
"builtin-modules": "^3.3.0",
|
|
"esbuild": "^0.21.0",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.2.9",
|
|
"obsidian": "latest",
|
|
"tslib": "^2.6.0",
|
|
"typescript": "^5.4.0"
|
|
}
|
|
}
|