Skip to content

Commit

Permalink
release: 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RyotaUshio committed Sep 21, 2023
1 parent 43776a5 commit 321fc3b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion manifest-beta.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion src/equation_number.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 321fc3b

Please sign in to comment.