mirror of
https://github.com/typst/typst
synced 2025-05-14 17:15:28 +08:00
0.13.1 changelog (#6025)
This commit is contained in:
parent
381ff0cc2c
commit
81e9bc7c8f
26
docs/changelog/0.13.1.md
Normal file
26
docs/changelog/0.13.1.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 0.13.1
|
||||||
|
description: Changes in Typst 0.13.1
|
||||||
|
---
|
||||||
|
|
||||||
|
# Version 0.13.1
|
||||||
|
|
||||||
|
## Command Line Interface
|
||||||
|
- Fixed high CPU usage for `typst watch` on Linux. Depending on the project
|
||||||
|
size, CPU usage would spike for varying amounts of time. This bug appeared
|
||||||
|
with 0.13.0 due to a behavioral change in the inotify file watching backend.
|
||||||
|
|
||||||
|
## HTML export
|
||||||
|
- Fixed export of tables with [gutters]($table.gutter)
|
||||||
|
- Fixed usage of `<html>` and `<body>` element within [context]
|
||||||
|
- Fixed querying of [metadata] next to `<html>` and `<body>` element
|
||||||
|
|
||||||
|
## Visualization
|
||||||
|
- Fixed [curves]($curve) with multiple non-closed components
|
||||||
|
|
||||||
|
## Introspection
|
||||||
|
- Fixed a regression where labelled [symbols]($symbol) could not be
|
||||||
|
[queried]($query) by label
|
||||||
|
|
||||||
|
## Deprecations
|
||||||
|
- Fixed false positives in deprecation warnings for type/str comparisons
|
@ -10,6 +10,7 @@ forward. This section documents all changes to Typst since its initial public
|
|||||||
release.
|
release.
|
||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
- [Typst 0.13.1]($changelog/0.13.1)
|
||||||
- [Typst 0.13.0]($changelog/0.13.0)
|
- [Typst 0.13.0]($changelog/0.13.0)
|
||||||
- [Typst 0.12.0]($changelog/0.12.0)
|
- [Typst 0.12.0]($changelog/0.12.0)
|
||||||
- [Typst 0.11.1]($changelog/0.11.1)
|
- [Typst 0.11.1]($changelog/0.11.1)
|
||||||
|
@ -188,6 +188,7 @@ fn changelog_pages(resolver: &dyn Resolver) -> PageModel {
|
|||||||
let mut page = md_page(resolver, resolver.base(), load!("changelog/welcome.md"));
|
let mut page = md_page(resolver, resolver.base(), load!("changelog/welcome.md"));
|
||||||
let base = format!("{}changelog/", resolver.base());
|
let base = format!("{}changelog/", resolver.base());
|
||||||
page.children = vec![
|
page.children = vec![
|
||||||
|
md_page(resolver, &base, load!("changelog/0.13.1.md")),
|
||||||
md_page(resolver, &base, load!("changelog/0.13.0.md")),
|
md_page(resolver, &base, load!("changelog/0.13.0.md")),
|
||||||
md_page(resolver, &base, load!("changelog/0.12.0.md")),
|
md_page(resolver, &base, load!("changelog/0.12.0.md")),
|
||||||
md_page(resolver, &base, load!("changelog/0.11.1.md")),
|
md_page(resolver, &base, load!("changelog/0.11.1.md")),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user