diff --git a/docs/participants.typ b/docs/participants.typ index c9aea7a..30db854 100644 --- a/docs/participants.typ +++ b/docs/participants.typ @@ -58,10 +58,12 @@ /// - width (auto, int, float, length): Optional fixed width of the column\ If the column's content (e.g. sequence comments) is larger, it will overflow /// - margin (int, float, length): Additional margin to add to the column\ This margin is not included in `width` and `min-width`, but rather added separately /// - min-width (int, float, length): Minimum width of the column\ If set to a larger value than `width`, the latter will be overriden +/// - max-width (int, float, length, none): Maximum width of the column\ If set to a lower value than `width`, the latter will be overriden\ If set to `none`, no restriction is applied #let _col( p1, p2, width: auto, margin: 0, - min-width: 0 + min-width: 0, + max-width: none ) = {} \ No newline at end of file diff --git a/gallery/example1.pdf b/gallery/example1.pdf index bcfc103..693d6e1 100644 Binary files a/gallery/example1.pdf and b/gallery/example1.pdf differ diff --git a/gallery/example2.pdf b/gallery/example2.pdf index 421fc32..0861fff 100644 Binary files a/gallery/example2.pdf and b/gallery/example2.pdf differ diff --git a/gallery/example3.pdf b/gallery/example3.pdf index 54bdd7a..f916e4d 100644 Binary files a/gallery/example3.pdf and b/gallery/example3.pdf differ diff --git a/gallery/notes.pdf b/gallery/notes.pdf index 13090f3..2ff99fd 100644 Binary files a/gallery/notes.pdf and b/gallery/notes.pdf differ diff --git a/gallery/readme/boilerplate.png b/gallery/readme/boilerplate.png index 04af7e8..755b523 100644 Binary files a/gallery/readme/boilerplate.png and b/gallery/readme/boilerplate.png differ diff --git a/gallery/readme/lifelines.png b/gallery/readme/lifelines.png index 4d8b939..fbd5bcf 100644 Binary files a/gallery/readme/lifelines.png and b/gallery/readme/lifelines.png differ diff --git a/gallery/readme/simple_sequence.png b/gallery/readme/simple_sequence.png index 1af1870..f771ad5 100644 Binary files a/gallery/readme/simple_sequence.png and b/gallery/readme/simple_sequence.png differ diff --git a/manual.pdf b/manual.pdf index 959d06e..dca8906 100644 Binary files a/manual.pdf and b/manual.pdf differ diff --git a/manual.typ b/manual.typ index 8678ec6..69e96c7 100644 --- a/manual.typ +++ b/manual.typ @@ -30,8 +30,8 @@ #set page(numbering: "1/1", header: align(right)[chronos #sym.dash.em v#chronos.version]) #set page( - header: locate(loc => align(left)[chronos #sym.dash.em v#chronos.version]), - footer: locate(loc => align(center, counter(page).display("1/1", both: true))) + header: align(left)[chronos #sym.dash.em v#chronos.version], + footer: context align(center, counter(page).display("1/1", both: true)) ) = Introduction diff --git a/src/lib.typ b/src/lib.typ index a2568fb..25671e5 100644 --- a/src/lib.typ +++ b/src/lib.typ @@ -1,4 +1,4 @@ -#let version = version(0, 1, 1) +#let version = version(0, 2, 0) #import "diagram.typ": diagram, from-plantuml, _gap, _evt, _col #import "sequence.typ": _seq, _ret