diff --git a/manifest-beta.json b/manifest-beta.json index 8aeadb5..0af124a 100644 --- a/manifest-beta.json +++ b/manifest-beta.json @@ -1,7 +1,7 @@ { "id": "math-booster", "name": "Math Booster", - "version": "1.0.1-beta", + "version": "1.0.1", "minAppVersion": "1.3.5", "description": "Turn your Obsidian into LaTeX on steroids. Dynamically numbered theorem environments & equations, theorems/equations live suggestion, showing backlinks to theorems/equations and live-rendering equations inside callouts & quotes.", "author": "Ryota Ushio", diff --git a/manifest.json b/manifest.json index 8cc4c9e..0af124a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "math-booster", "name": "Math Booster", - "version": "1.0.0", + "version": "1.0.1", "minAppVersion": "1.3.5", "description": "Turn your Obsidian into LaTeX on steroids. Dynamically numbered theorem environments & equations, theorems/equations live suggestion, showing backlinks to theorems/equations and live-rendering equations inside callouts & quotes.", "author": "Ryota Ushio", diff --git a/package-lock.json b/package-lock.json index 9d1de0b..d698e72 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-math-booster", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-math-booster", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "dependencies": { "@codemirror/language": "^6.0.0", diff --git a/package.json b/package.json index b3d0707..7c86ab5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-math-booster", - "version": "1.0.0", + "version": "1.0.1", "description": "Turn your Obsidian into LaTeX on steroids. Dynamically numbered theorem environments & equations, theorems/equations live suggestion, showing backlinks to theorems/equations and live-rendering equations inside callouts & quotes.", "main": "main.js", "scripts": { diff --git a/src/equation_number.ts b/src/equation_number.ts index 7aa183f..7a7986c 100644 --- a/src/equation_number.ts +++ b/src/equation_number.ts @@ -2,7 +2,7 @@ import { App, MarkdownRenderChild, renderMath, finishRenderMath, MarkdownPostPro import { EditorView, ViewPlugin, PluginValue, ViewUpdate } from '@codemirror/view'; import MathBooster from './main'; -import { getBacklinks, getMathCache, getSectionCacheFromMouseEvent, getSectionCacheOfDOM, resolveSettings, trimMathText } from './utils'; +import { getBacklinks, getMathCache, getSectionCacheFromMouseEvent, getSectionCacheOfDOM, resolveSettings } from './utils'; import { MathContextSettings } from "./settings/settings"; import { Backlink, BacklinkModal } from "./backlinks"; import { AutoNoteIndexer, IndexItem } from "./indexer";