Compare commits

...

5 Commits

Author SHA1 Message Date
e57e617bb9 fixed groups with _ret 2025-03-10 17:54:01 +00:00
dfb980e366 Merge pull request 'Adapt to typst v0.13.0' (#7) from johannesacco/chronos:main into dev
Reviewed-on: #7
2025-03-10 16:41:51 +00:00
3beaad03d4 Bump version to 0.2.1 2025-03-10 17:22:49 +01:00
5cb8f50f2a Update to cetz:0.3.3
This fixes a number of warnings introduced in typst v0.13.0.

Also increase typst version to v0.13.0 as that is what cetz:0.3.3
requires.
2025-03-10 17:22:42 +01:00
19c60c5ecf Release 0.2.0
Reviewed-on: #5
2024-11-09 14:00:05 +00:00
16 changed files with 18 additions and 11 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -46,7 +46,6 @@
while i < elmts.len() { while i < elmts.len() {
let elmt = elmts.at(i) let elmt = elmts.at(i)
if elmt.type == "grp" { if elmt.type == "grp" {
let grp-elmts = elmt.elmts
elmt.elmts = elmt.elmts.map(e => { elmt.elmts = elmt.elmts.map(e => {
if e.type == "seq" { if e.type == "seq" {
if e.p1 == "?" { if e.p1 == "?" {
@ -60,12 +59,17 @@
elmts.at(i) = elmt elmts.at(i) = elmt
elmts = ( elmts = (
elmts.slice(0, i + 1) + elmts.slice(0, i + 1) +
grp-elmts + elmt.elmts +
(( ((
type: "grp-end" type: "grp-end",
start-i: i
),) + ),) +
elmts.slice(i+1) elmts.slice(i+1)
) )
} else if elmt.type == "grp-end" {
// Put back elements in group because they might have changed
elmts.at(elmt.start-i).elmts = elmts.slice(elmt.start-i + 1, i)
} else if elmt.type == "seq" { } else if elmt.type == "seq" {
if elmt.enable-dst { if elmt.enable-dst {
activation-history.push(elmt) activation-history.push(elmt)

View File

@ -1,4 +1,4 @@
#import "@preview/cetz:0.3.1": draw #import "@preview/cetz:0.3.3": draw
#import "consts.typ": * #import "consts.typ": *
#let _grp(name, desc: none, type: "default", elmts) = { #let _grp(name, desc: none, type: "default", elmts) = {

View File

@ -1,4 +1,4 @@
#import "@preview/cetz:0.3.1": draw #import "@preview/cetz:0.3.3": draw
#import "consts.typ": * #import "consts.typ": *
#let SIDES = ( #let SIDES = (

View File

@ -1,4 +1,4 @@
#import "@preview/cetz:0.3.1": draw #import "@preview/cetz:0.3.3": draw
#import "consts.typ": * #import "consts.typ": *
#let PAR-SPECIALS = "?[]" #let PAR-SPECIALS = "?[]"

View File

@ -1,4 +1,4 @@
#import "@preview/cetz:0.3.1": canvas, draw #import "@preview/cetz:0.3.3": canvas, draw
#import "utils.typ": get-participants-i, get-style, normalize-units #import "utils.typ": get-participants-i, get-style, normalize-units
#import "group.typ" #import "group.typ"
#import "participant.typ" #import "participant.typ"

View File

@ -1,4 +1,4 @@
#import "@preview/cetz:0.3.1": draw #import "@preview/cetz:0.3.3": draw
#import "consts.typ": * #import "consts.typ": *
#let _sep(name) = { #let _sep(name) = {

View File

@ -1,4 +1,4 @@
#import "@preview/cetz:0.3.1": draw, vector #import "@preview/cetz:0.3.3": draw, vector
#import "consts.typ": * #import "consts.typ": *
#import "participant.typ" #import "participant.typ"
#import "note.typ" #import "note.typ"

View File

@ -36,6 +36,9 @@
max-i = calc.max(max-i, i1) max-i = calc.max(max-i, i1)
} }
} }
if max-i < min-i {
(min-i, max-i) = (max-i, min-i)
}
return (min-i, max-i) return (min-i, max-i)
} }

View File

@ -1,7 +1,7 @@
[package] [package]
name = "chronos" name = "chronos"
version = "0.2.0" version = "0.2.1"
compiler = "0.12.0" compiler = "0.13.0"
repository = "https://git.kb28.ch/HEL/chronos" repository = "https://git.kb28.ch/HEL/chronos"
entrypoint = "src/lib.typ" entrypoint = "src/lib.typ"
authors = [ authors = [