From bf83af63e62515881b192387b6f0e552f9346c02 Mon Sep 17 00:00:00 2001 From: mgt Date: Sun, 24 Sep 2023 21:58:42 +0800 Subject: [PATCH] chore: bump to v0.8.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- addons/vscode/CHANGELOG.md | 10 ++++++++++ addons/vscode/README.md | 10 ++++++++++ addons/vscode/package.json | 2 +- 5 files changed, 23 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 22c7a3fe..4675c08f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3200,7 +3200,7 @@ dependencies = [ [[package]] name = "typst-preview" -version = "0.8.0" +version = "0.8.1" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 0723003a..1677cc8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typst-preview" -version = "0.8.0" +version = "0.8.1" authors = ["The Typst Project Developers"] edition = "2021" diff --git a/addons/vscode/CHANGELOG.md b/addons/vscode/CHANGELOG.md index 77d35e6e..9f687c18 100644 --- a/addons/vscode/CHANGELOG.md +++ b/addons/vscode/CHANGELOG.md @@ -146,3 +146,13 @@ Add preview button - Fix #111: Previously stroke related attributes are not rendered correctly. This is now fixed. - Fix #105: The compiler will panic randomly. This is now fixed. - Upstream bug fixes: https://github.com/Myriad-Dreamin/typst.ts/releases/tag/v0.4.0-rc3 + +## v0.8.1 + +- Bug fixes: + - #121: Disable darkreader for preview panel. This should fix the problem where the preview panel is invisible when darkreader is installed in the browser. + - #123: Fix a VDOM bug which may cause color/clip-path desync. + - #124: Fix a race condition which may cause the webview process messages out of order, resulting in blank screen. + - #125: Resizing the preview panel is not that laggy now. +- Features: + - #120: We now show page breaks and center pages horizontally. By default we will choose the `vscode-sideBar-background` color as the page break color. If it is not distinguishable from white, we will use rgb(82, 86, 89) instead. diff --git a/addons/vscode/README.md b/addons/vscode/README.md index 6802d838..90b54912 100644 --- a/addons/vscode/README.md +++ b/addons/vscode/README.md @@ -177,3 +177,13 @@ Add preview button - Fix #111: Previously stroke related attributes are not rendered correctly. This is now fixed. - Fix #105: The compiler will panic randomly. This is now fixed. - Upstream bug fixes: https://github.com/Myriad-Dreamin/typst.ts/releases/tag/v0.4.0-rc3 + +### v0.8.1 + +- Bug fixes: + - #121: Disable darkreader for preview panel. This should fix the problem where the preview panel is invisible when darkreader is installed in the browser. + - #123: Fix a VDOM bug which may cause color/clip-path desync. + - #124: Fix a race condition which may cause the webview process messages out of order, resulting in blank screen. + - #125: Resizing the preview panel is not that laggy now. +- Features: + - #120: We now show page breaks and center pages horizontally. By default we will choose the `vscode-sideBar-background` color as the page break color. If it is not distinguishable from white, we will use `rgb(82, 86, 89)` instead. diff --git a/addons/vscode/package.json b/addons/vscode/package.json index 1de9bc64..660c2abf 100644 --- a/addons/vscode/package.json +++ b/addons/vscode/package.json @@ -8,7 +8,7 @@ "type": "git", "url": "https://github.com/Enter-tainer/typst-preview" }, - "version": "0.8.0", + "version": "0.8.1", "engines": { "vscode": "^1.77.0" },