Fix warnings when using typst 0.12.0 (#71)
* fixes for warnings with typst 0.12.0 * update tests for typst 0.12.0 * update github test workflow for typst 0.12 * chore: apply typst updates to test code * chore: update compiler version in typst.toml * chore: use the correct preview version in coverletter2 * chore: improve comments in coverletter template * chore: update test references * fix: issues with coverletter for typst `0.12.0` * update test references with typst-test update --------- Co-authored-by: Paul Tsouchlos <developer.paul.123@gmail.com>
This commit is contained in:
4
.github/workflows/tests.yml
vendored
4
.github/workflows/tests.yml
vendored
@@ -10,11 +10,11 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
# add any other Typst versions that your package should support
|
||||
typst-version: ["0.11"]
|
||||
typst-version: ["0.12"]
|
||||
# the docs don't need to build with all versions supported by the package;
|
||||
# the latest one is enough
|
||||
include:
|
||||
- typst-version: "0.11"
|
||||
- typst-version: "0.12"
|
||||
doc: 1
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
30
lib.typ
30
lib.typ
@@ -82,7 +82,9 @@
|
||||
#linguify("cover-letter", from: lang_data)
|
||||
]
|
||||
][
|
||||
#counter(page).display()
|
||||
#context {
|
||||
counter(page).display()
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -104,7 +106,9 @@
|
||||
#linguify("resume", from: lang_data)
|
||||
]
|
||||
][
|
||||
#counter(page).display()
|
||||
#context {
|
||||
counter(page).display()
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -228,11 +232,10 @@
|
||||
)
|
||||
|
||||
// set paragraph spacing
|
||||
show par: set block(
|
||||
above: 0.75em,
|
||||
below: 0.75em,
|
||||
set par(
|
||||
spacing: 0.75em,
|
||||
justify: true,
|
||||
)
|
||||
set par(justify: true)
|
||||
|
||||
set heading(
|
||||
numbering: none,
|
||||
@@ -244,8 +247,8 @@
|
||||
size: 16pt,
|
||||
weight: "regular",
|
||||
)
|
||||
|
||||
#align(left)[
|
||||
#set align(left)
|
||||
#set block(above: 1em)
|
||||
#let color = if colored-headers {
|
||||
accent-color
|
||||
} else {
|
||||
@@ -255,8 +258,6 @@
|
||||
#box(width: 1fr, line(length: 100%))
|
||||
]
|
||||
|
||||
]
|
||||
|
||||
show heading.where(level: 2): it => {
|
||||
set text(
|
||||
color-darkgray,
|
||||
@@ -417,7 +418,7 @@
|
||||
below: 1.25em,
|
||||
)
|
||||
set par(leading: 0.65em)
|
||||
block(above: 0.5em, below: 0.5em)[
|
||||
block(above: 0.5em)[
|
||||
#body
|
||||
]
|
||||
}
|
||||
@@ -453,7 +454,6 @@
|
||||
]
|
||||
]
|
||||
]
|
||||
|
||||
}
|
||||
|
||||
/// Show cumulative GPA.
|
||||
@@ -558,11 +558,7 @@
|
||||
)
|
||||
|
||||
// set paragraph spacing
|
||||
show par: set block(
|
||||
above: 0.75em,
|
||||
below: 0.75em,
|
||||
)
|
||||
set par(justify: true)
|
||||
set par(spacing: 0.75em, justify: true)
|
||||
|
||||
set heading(
|
||||
numbering: none,
|
||||
|
||||
0
scripts/uninstall
Normal file → Executable file
0
scripts/uninstall
Normal file → Executable file
@@ -19,7 +19,9 @@
|
||||
profile-picture: image("./profile.png"),
|
||||
language: "en",
|
||||
font: "Times New Roman",
|
||||
// show-footer: false, // Uncomment to hide footer
|
||||
// Remove the following line to show the footer
|
||||
// Or set the value to `true`
|
||||
show-footer: false,
|
||||
)
|
||||
|
||||
#hiring-entity-info(entity-info: (
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#import "@preview/modern-cv:0.5.0": *
|
||||
#import "@preview/modern-cv:0.7.0": *
|
||||
|
||||
#show: coverletter.with(
|
||||
author: (
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 32 KiB |
@@ -17,11 +17,7 @@
|
||||
)
|
||||
|
||||
// set paragraph spacing
|
||||
#show par: set block(
|
||||
above: 0.75em,
|
||||
below: 0.75em,
|
||||
)
|
||||
#set par(justify: true)
|
||||
#set par(spacing: 0.75em, justify: true)
|
||||
|
||||
#set heading(
|
||||
numbering: none,
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 24 KiB |
@@ -17,11 +17,7 @@
|
||||
)
|
||||
|
||||
// set paragraph spacing
|
||||
#show par: set block(
|
||||
above: 0.75em,
|
||||
below: 0.75em,
|
||||
)
|
||||
#set par(justify: true)
|
||||
#set par(spacing: 0.75em, justify: true)
|
||||
|
||||
#set heading(
|
||||
numbering: none,
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "modern-cv"
|
||||
version = "0.7.0"
|
||||
compiler = "0.11.0"
|
||||
compiler = "0.12.0"
|
||||
entrypoint = "lib.typ"
|
||||
authors = ["Paul Tsouchlos <https://github.com/DeveloperPaul123>"]
|
||||
license = "MIT"
|
||||
|
||||
Reference in New Issue
Block a user