philemonchiro_obsidian-note.../package.json
Philemon Chiro c3d9269f49 v0.2.0: wall mode and reviewer-bot async-no-await fixes
The bigger half is the new "wall" view: a sticky-note styled,
vertically-scrolled, curated subset of your notes.

- New density modes 'wall' and 'wall-compact' selectable from the
  toolbar. Wall is now the default density on fresh installs.
- Per-card sticky-note look: deterministic 1-3 degree rotation
  seeded by file path, paper-style drop shadow, hover lift to 0deg.
- Eight wall backgrounds (cork, whiteboard, slate, paper, graph,
  blueprint, linen, chalkboard) chosen from the settings tab.
  Default: slate.
- Walls are curated, not auto-filled. The wall starts empty; users
  add notes via the floating + button (FuzzySuggestModal picker)
  or via the empty state's "Fill from current view" shortcut
  (only offered when the current filter has <= 200 notes).
- Right-click any card on the wall: "Remove from wall".
- Command "Clear wall" (palette) wipes the current wall.
- The freeform-canvas prototype was scrapped in favor of the
  column layout after testing showed dragging cards onto a giant
  scattered canvas was unusable at vault scale.

Bot fixes:

- async onClose / async render / async make-trash arrow had no
  awaits. Made onClose and onOpen non-async (return Promise.resolve)
  to match Obsidian's signature; render is now sync; the trash arrow
  is sync too (its body's awaits are inside a ConfirmModal callback).
- Switched view content access from this.containerEl.children[1] to
  this.contentEl. Fixes a tab-switching ghosting bug — newer Obsidian
  versions can wrap views in extra layers, shifting the children
  index, so renders were occasionally landing on the wrong element.
  Per the developer docs, contentEl is the stable getter.
- The wall FAB moved from position: fixed to position: absolute
  inside the body container, so it disappears with its tab instead
  of bleeding across panes.
- Added @typescript-eslint/require-await to the local eslint config
  so the next round of these doesn't slip past.
2026-05-02 06:39:17 +02:00

23 lines
707 B
JSON

{
"name": "obsidian-notekeeper",
"version": "0.2.0",
"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"
}
}