diff --git a/CHANGELOG.md b/CHANGELOG.md index 357cdf9..a38dee4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.10.0 +- Upgrade to Typst 0.11.0 +- Update fonts to be equal with Typst 0.11 + # 0.9.0 - Upgrade to Typst 0.10.0 - Remove SVGO dependency diff --git a/README.md b/README.md index 45742a6..c61f12e 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ Renders `typst` code blocks, and optionally math blocks, into images using [Typs | Plugin | Typst | |-|-| +| 0.10 | 0.11.0 | | 0.9 | 0.10.0 | | 0.8 | 0.9.0 | | 0.7 | 0.8.0 | @@ -127,3 +128,5 @@ Install it by copying `main.js`, `styles.css`, `obsidian_typst_bg.wasm` and `man - [ ] Custom editor for `.typ` files - [x] Mobile file reading - [x] Automate package downloading +- [ ] Use `sys.stdin` for preambles instead of modifying the source cod +- [ ] Overhall plugin structure (mostly communication with the webworker) diff --git a/manifest.json b/manifest.json index b5de6e0..ff397ed 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "typst", "name": "Typst Renderer", - "version": "0.9.0", + "version": "0.10.0", "minAppVersion": "1.0.0", "description": "Renders `typst` code blocks and math blocks with Typst.", "author": "fenjalien", diff --git a/package.json b/package.json index 8a78e61..c90f2cd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-typst-plugin", - "version": "0.9.0", + "version": "0.10.0", "description": "Renders `typst` code blocks to images with Typst.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 2c59f97..2aad819 100644 --- a/versions.json +++ b/versions.json @@ -1,4 +1,5 @@ { + "0.10.0": "1.0.0", "0.9.0": "1.0.0", "0.7.1": "1.0.0", "0.7.0": "1.0.0",