Skip to content

Commit b11f88f

Browse files
committed
version bump
1 parent 5843921 commit b11f88f

4 files changed

Lines changed: 35 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Changelog
2+
3+
All notable changes to Marginalia are documented here.
4+
5+
## 0.1.1
6+
7+
Patch release.
8+
9+
- Fix panel action behavior when the comments panel has focus
10+
- `Jump`, `Edit`, `Resolve`, and `Delete` now correctly target the active note's markdown editor from the panel
11+
- Prevent panel fallback to "Open a markdown note to view comments" during panel-initiated actions
12+
13+
## 0.1.0
14+
15+
Initial release.
16+
17+
- Add, edit, resolve, and delete inline comments on selected text
18+
- Editor highlights with separate unresolved/resolved styling
19+
- Inline comment icon widgets in the editor for quick access
20+
- Sidebar comments panel with per-comment jump, edit, resolve/unresolve, and delete actions
21+
- Jump-to-comment selection and scroll behavior from panel actions
22+
- Command palette commands: `Add comment` and `Toggle comments panel`
23+
- Editor context-menu action to add comments from the current selection
24+
- Ribbon icon to toggle the comments panel
25+
- Optional best-effort reading mode highlighting
26+
- Settings: author name, highlight colors, reading mode toggle
27+
- Paired HTML comment marker format invisible to standard renderers
28+
- Comment metadata includes ID, author, timestamp, and resolved state
29+
- Safe serialization that escapes literal `-->` sequences in payload JSON
30+
- Robust parser with malformed marker validation
31+
- CI workflow (type-check, test, build) and release automation

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "marginalia",
33
"name": "Marginalia",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"minAppVersion": "1.5.0",
66
"description": "Add inline comments to any document. Select text, leave a comment, and collaborate with highlights, a sidebar panel, and resolution tracking — all stored invisibly in standard markdown.",
77
"author": "Eric Alt",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-marginalia",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Add inline comments to any document. Select text, leave a comment, and collaborate with highlights, a sidebar panel, and resolution tracking — all stored invisibly in standard markdown.",
55
"main": "main.js",
66
"scripts": {

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"0.1.0": "1.5.0"
2+
"0.1.0": "1.5.0",
3+
"0.1.1": "1.5.0"
34
}

0 commit comments

Comments
 (0)