Skip to content

Commit

Permalink
1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mgmeyers committed Feb 19, 2024
1 parent c677dde commit 31cbe59
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-list-callouts",
"name": "List Callouts",
"version": "1.2.0",
"version": "1.2.1",
"minAppVersion": "1.1.1",
"description": "Create simple callouts in lists.",
"author": "mgmeyers",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-list-callouts",
"version": "1.2.0",
"version": "1.2.1",
"description": "Create simple callouts in lists.",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion release-notes.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
fdca177 Add search box for icons; fixes #37
c677dde Prevent infinite loop
6 changes: 1 addition & 5 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,7 @@ export function buildCalloutDecos(view: EditorView, state: EditorState) {
const labelPos = lineFrom + match[1].length;

// Set the line class and callout color
builder.add(
lineFrom,
lineFrom,
calloutDecoration(callout.color)
);
builder.add(lineFrom, lineFrom, calloutDecoration(callout.color));

// Add the callout background element
builder.add(
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"1.0.1": "0.15.0",
"1.0.0": "0.14.15",
"1.1.5": "1.1.1",
"1.2.0": "1.1.1"
"1.2.0": "1.1.1",
"1.2.1": "1.1.1"
}

0 comments on commit 31cbe59

Please sign in to comment.