Skip to content

Commit 0bec14d

Browse files
committedOct 15, 2024·
chore: bump version to 0.5.3
1 parent c49e9c5 commit 0bec14d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+312
-172
lines changed
 

‎docs/build-your-own-theme.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ To demonstrate how to create a theme with Touying, let's step by step create a s
2020
If you want to modify a Touying internal theme locally instead of creating one from scratch, you can achieve this by:
2121

2222
1. Copying the [theme code](https://github.com/touying-typ/touying/tree/main/themes) from the `themes` directory to your local, for example, copying `themes/university.typ` to your local `university.typ`.
23-
2. Replacing the `#import "../src/exports.typ": *` command at the top of the `university.typ` file with `#import "@preview/touying:0.5.2": *`.
23+
2. Replacing the `#import "../src/exports.typ": *` command at the top of the `university.typ` file with `#import "@preview/touying:0.5.3": *`.
2424

2525
Then you can import and use the theme by:
2626

2727
```typst
28-
#import "@preview/touying:0.5.2": *
28+
#import "@preview/touying:0.5.3": *
2929
#import "university.typ": *
3030
3131
#show: university-theme.with(
@@ -48,7 +48,7 @@ Depending on whether the theme is your own or part of Touying, you can import it
4848
If it's just for your own use, you can directly import Touying:
4949

5050
```typst
51-
#import "@preview/touying:0.5.2": *
51+
#import "@preview/touying:0.5.3": *
5252
```
5353

5454
If you want the theme to be part of Touying, placed in the Touying `themes` directory, then you should change the import statement above to
@@ -73,7 +73,7 @@ Generally, the first step in making slides is to determine the font size and pag
7373

7474
```typst
7575
// bamboo.typ
76-
#import "@preview/touying:0.5.2": *
76+
#import "@preview/touying:0.5.3": *
7777
7878
#let bamboo-theme(
7979
aspect-ratio: "16-9",
@@ -94,7 +94,7 @@ Generally, the first step in making slides is to determine the font size and pag
9494
}
9595
9696
// main.typ
97-
#import "@preview/touying:0.5.2": *
97+
#import "@preview/touying:0.5.3": *
9898
#import "bamboo.typ": *
9999
100100
#show: bamboo-theme.with(aspect-ratio: "16-9")
@@ -195,7 +195,7 @@ We also need to customize a `slide` method, which accepts `#let slide(title: aut
195195

196196
```typst
197197
// bamboo.typ
198-
#import "@preview/touying:0.5.2": *
198+
#import "@preview/touying:0.5.3": *
199199
200200
#let slide(title: auto, ..args) = touying-slide-wrapper(self => {
201201
if title != auto {
@@ -270,7 +270,7 @@ We also need to customize a `slide` method, which accepts `#let slide(title: aut
270270
271271
272272
// main.typ
273-
#import "@preview/touying:0.5.2": *
273+
#import "@preview/touying:0.5.3": *
274274
#import "bamboo.typ": *
275275
276276
#show: bamboo-theme.with(aspect-ratio: "16-9")
@@ -294,7 +294,7 @@ For the `new-section-slide` method, it's the same, but the only thing to note is
294294

295295
```typst
296296
// bamboo.typ
297-
#import "@preview/touying:0.5.2": *
297+
#import "@preview/touying:0.5.3": *
298298
299299
#let slide(title: auto, ..args) = touying-slide-wrapper(self => {
300300
if title != auto {
@@ -411,7 +411,7 @@ For the `new-section-slide` method, it's the same, but the only thing to note is
411411
412412
413413
// main.typ
414-
#import "@preview/touying:0.5.2": *
414+
#import "@preview/touying:0.5.3": *
415415
#import "bamboo.typ": *
416416
417417
#show: bamboo-theme.with(

‎docs/changelog.md

+32-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,38 @@ sidebar_position: 14
44

55
# Changelog
66

7-
## v0.5.1
87

9-
Fix some bugs.
8+
## v0.5.3
9+
10+
### Features
11+
12+
- feat: add `stretch` parameter for `#alternatives[]` function class. This allows us to handle cases where the internal element is a context expression.
13+
- feat: add `config-common(align-enum-marker-with-baseline: true)` for aligning the enum marker with the baseline.
14+
- feat: add `linebreaks` option to `components.mini-slides`. https://github.com/touying-typ/touying/pull/96
15+
- feat: add `<touying:skip>` label to skip a new-section-slide.
16+
- feat: add `config-common(show-hide-set-list-marker-none: true)` to make the markers of `list` and `enum` invisible after `#pause`.
17+
- feat: add `config-common(bibliography-as-footnote: bibliography(title: none, "ref.bib"))` to display the bibliography in footnotes.
18+
- refactor: add `config-common(show-strong-with-alert: true)` configuration to display strong text with an alert. (small breaking change for some themes)
19+
- refactor: refactor `display-current-heading` for preserving heading style in title and subtitle. https://github.com/touying-typ/touying/issues/71
20+
- refactor: make `new-section-slide-fn` function class can receive `body` parameter. We can use `receive-body-for-new-section-slide-fn` to control it. **(Breaking change)**
21+
- For example, you can add `#speaker-note[]` for a new section slide, like `= Section Title \ #speaker-note[]`.
22+
- If you don't want to append content to the body of the new section slide, you can use `---` after the section title.
23+
24+
### Fixes
25+
26+
- fix outdated documentation.
27+
- fix bug of `enable-frozen-states-and-counters` in handout mode.
28+
- fix unusable `square()` function. https://github.com/touying-typ/touying/issues/73
29+
- fix hidden footer for `show-notes-on-second-screen: bottom`. https://github.com/touying-typ/touying/issues/89
30+
- fix metadata element in table cells. https://github.com/touying-typ/touying/issues/77 https://github.com/touying-typ/touying/issues/95
31+
- fix `auto-offset-for-heading` to `false` by default.
32+
- fix uncover/only hides more content than it should. https://github.com/touying-typ/touying/issues/85
33+
- theme(simple): fix wrong title and subtitle. https://github.com/touying-typ/touying/issues/70
34+
35+
36+
## v0.5.1 & v0.5.2
37+
38+
- Fix somg bugs.
1039

1140

1241
## v0.5.0
@@ -27,7 +56,7 @@ This is a significant disruptive version update. Touying has removed many mistak
2756
A simple usage example is shown below, and more examples can be found in the `examples` directory:
2857

2958
```typst
30-
#import "@preview/touying:0.5.2": *
59+
#import "@preview/touying:0.5.3": *
3160
#import themes.university: *
3261
3362
#show: university-theme.with(

0 commit comments

Comments
 (0)