Commit graph

48 commits

Author SHA1 Message Date
@gapmiss
e6e1f76e8f chore: release 0.1.11 2026-06-25 16:38:40 -05:00
@gapmiss
3755d19417 fix: render inline callout labels containing square brackets in Live Preview
The Live Preview decorator used `[^\]]*` for the label, which stops at the
first `]`. A multi-part label like `[!!mail|test [with brackets]|var(...)]`
broke as soon as it hit the `]` after "brackets", so the closing ]` no longer
matched and the callout stayed as raw code. Reading mode was unaffected
because its post-processor checks startsWith/endsWith. Switch the class to
`[^`]+` so it matches up to the bounding backtick, consistent with the
post-processor and cursor-detection regexes.

Co-authored-by: Thierry VUILLEMIN <6804067+vuillemint@users.noreply.github.com>
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-25 16:37:38 -05:00
@gapmiss
858a209cbe fix: sync versions.json with manifest.json minAppVersion and bump esbuild
versions.json was out of sync — releases 0.1.5–0.1.10 incorrectly listed
minAppVersion as 0.15.0 instead of 1.4.10. Also updates release.mjs to
read minAppVersion from manifest.json rather than hardcoding it, and bumps
esbuild from 0.25.4 to 0.28.1.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-06-14 12:07:54 -05:00
@gapmiss
ef1fca869e docs: remove duplicate Installation section from README.md 2026-06-06 15:46:56 -05:00
@gapmiss
5da6a34253 fix: update package-lock.json for removed packages 2026-06-06 15:31:31 -05:00
@gapmiss
ae2caf86b6 chore: release 0.1.10 2026-06-06 14:42:33 -05:00
@gapmiss
3cb8a6d45e fix: remove unused variables in editor view
Remove dead code (_currentLine, startOfLine, endOfLine) flagged by
community plugin scanner. Per-match selection checking already handles
cursor overlap.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-06-06 14:42:24 -05:00
@gapmiss
d20986d90a chore: release 0.1.9 2026-06-06 14:32:07 -05:00
@gapmiss
a03e81ed06 fix: enable strict mode and fix TypeScript errors
Update tsconfig.json for TypeScript 5.9+ compatibility:
- Remove deprecated baseUrl, use moduleResolution "bundler"
- Enable strict mode to match IDE settings
- Scope include to src/**/*.ts

Fix strict mode violations across codebase.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-06-06 14:31:46 -05:00
@gapmiss
dcde16861f docs: update README.md 2026-06-02 17:14:27 -05:00
@gapmiss
d208ad379a chore: release 0.1.8 2026-05-31 14:12:43 -05:00
@gapmiss
2501bea1bc docs: add CONTRIBUTING guide 2026-05-31 14:12:33 -05:00
@gapmiss
e063d0145a chore: release 0.1.7 2026-05-30 17:55:01 -05:00
@gapmiss
b0835b9889 feat: add custom font CSS variable
Added --inline-callout-font-family variable (default: inherit).
Configurable via Style Settings plugin.

Closes #6

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-05-30 17:46:14 -05:00
@gapmiss
750716057c feat: add no-icon button to modals
Both new and modify modals now show "None" text when no-icon is selected
and include a circle-off button to quickly set icon to none.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-05-30 17:40:19 -05:00
@gapmiss
224a035795 feat: add no-icon support with none/blank
Use `none` or `blank` as the icon name to render a callout without an icon.
Icons ending with `-none` also work. The icon space is not reserved.

Closes #4

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-05-30 17:30:34 -05:00
@gapmiss
cf52f94f29 feat: add hex color support
Support hex colors (#RGB, #RRGGBB) in addition to RGB values and CSS variables.
Color picker in modals now preserves hex format instead of converting to RGB.

Closes #2

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-05-30 17:20:54 -05:00
@gapmiss
663e6b83f0 chore: release 0.1.6 2026-05-21 19:28:43 -05:00
@gapmiss
0738435a23 fix: replace builtin-modules with Node.js built-in
Use module.builtinModules instead of deprecated builtin-modules package.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-05-21 19:28:21 -05:00
@gapmiss
fa00a41857 chore: release 0.1.5 2026-05-21 19:22:52 -05:00
@gapmiss
2e2db6aad4 fix: remove plugin reload, fix all ESLint errors, add release workflow
- Remove disablePlugin/enablePlugin reload method (Scorecard security risk)
- Add eslint-plugin-obsidianmd with typescript-eslint type-checked rules
- Fix 113 ESLint errors across all source files:
  - Replace any types with proper typing
  - Use createSpan/createEl instead of document.createElement
  - Fix floating promises, unused vars, case declarations
  - Shorten command IDs to avoid plugin name duplication
  - Use window.setTimeout instead of bare setTimeout
- Update minAppVersion to 1.4.10 (required by AbstractInputSuggest)
- Update TypeScript to 5.x, ESLint to 9.x
- Add GitHub Actions workflow for releases with artifact attestation

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-05-21 19:22:33 -05:00
gapmiss
38b094b4d2
Update README.md 2025-06-29 10:34:23 -05:00
gapmiss
bd2ff6ee10 chore: release 0.1.4 2025-05-13 14:45:57 -05:00
gapmiss
2d6980c908 menu.addItem icon 2025-05-13 14:45:13 -05:00
gapmiss
9a7e655eb4 chore: release 0.1.3 2025-05-12 16:06:26 -05:00
gapmiss
1a7238ca4b addCommand icons 2025-05-12 16:05:51 -05:00
gapmiss
74e5d9dfcc npm audit; README 2025-05-10 07:18:09 -05:00
gapmiss
286c244f87 chore: release 0.1.2 2025-05-05 06:15:04 -05:00
gapmiss
dfe6800b31 fix build 2025-05-05 06:14:49 -05:00
gapmiss
c6179ff14a chore: release 0.1.1 2025-05-05 06:10:44 -05:00
gapmiss
31e0407ae2 README, release.mjs 2025-05-05 06:09:50 -05:00
gapmiss
ab0bc0cf61 Suggest modal CSS 2025-05-02 13:43:04 -05:00
gapmiss
ea0923b93b LICENSE copyright 2025-04-29 16:22:09 -05:00
gapmiss
0fd72c2ccb README.md, manifest & package desc 2025-04-07 07:10:15 -05:00
gapmiss
183d126a8b v0.1.0 release 2025-04-06 18:19:21 -05:00
gapmiss
45c80b8656 Update README.md 2025-04-06 17:35:42 -05:00
gapmiss
0bb07a8c22 Update README.md 2025-04-06 17:33:16 -05:00
gapmiss
47df2c6005 Update README.md 2025-04-06 17:31:38 -05:00
gapmiss
5fc00a9032 Update README.md 2025-04-06 16:59:02 -05:00
gapmiss
2e97030b33 Update README.md 2025-04-06 16:56:58 -05:00
gapmiss
a659407192 Update README.md 2025-04-06 16:54:29 -05:00
gapmiss
153287d6ca Screencasts, README 2025-04-06 16:49:50 -05:00
gapmiss
269e9bd73d README.md, modals, example.md 2025-04-06 16:02:35 -05:00
gapmiss
d6285b675b Update README.md 2025-04-04 20:54:16 -05:00
gapmiss
0d8411cb73 Demonstration 2025-04-04 19:49:32 -05:00
gapmiss
9c264d0594 Screenshots 2025-04-04 19:43:54 -05:00
gapmiss
77e9b7cb49 Update README 2025-04-04 19:27:36 -05:00
gapmiss
77f3a98765 Initial commit 2025-04-04 18:11:01 -05:00