Skip to content

Commit 27a58d3

Browse files
minor fixes for GHA
1 parent 8b59c63 commit 27a58d3

6 files changed

Lines changed: 18 additions & 11 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ resume_entry(educ)
128128
```
129129

130130
```{=typst}
131-
#resume-entry(title: "Ph.D. in Physics",location: "Zürich, Switzerland",date: "1905",description: "University of Zürich",)
132-
#resume-entry(title: "Master of Science",location: "Zürich, Switzerland",date: "1896 - 1900",description: "ETH",)
131+
#resume-entry(title: [Ph.D. in Physics],location: [Zürich, Switzerland],date: [1905],description: [University of Zürich],)
132+
#resume-entry(title: [Master of Science],location: [Zürich, Switzerland],date: [1896 - 1900],description: [ETH],)
133133
```
134134

135135
``` r
@@ -146,7 +146,7 @@ resume_entry(award, details = c("detail1", "detail2"))
146146
```
147147

148148
```{=typst}
149-
#resume-entry(title: "Nobel Prize in Physics",location: "Stockholm, Sweden",date: "1921",description: "For his services to",)
149+
#resume-entry(title: [Nobel Prize in Physics],location: [Stockholm, Sweden],date: [1921],description: [For his services to],)
150150
#resume-item[
151151
- Theoretical Physics
152152
- Discovery of the law of the photoelectric effect
@@ -176,7 +176,7 @@ work |>
176176
```
177177

178178
```{=typst}
179-
#resume-entry(title: "Associate Professor",location: "Zürich, Switzerland",date: "1909 - 1911",description: "University of Zürich",)
180-
#resume-entry(title: "Junior Professor",location: "Bern, Switzerland",date: "1908 - 1909",description: "University of Bern",)
181-
#resume-entry(title: "Technical Assistant",location: "Bern, Switzerland",date: "1902 - 1908",description: "Federal Patent Office",)
179+
#resume-entry(title: [Associate Professor],location: [Zürich, Switzerland],date: [1909 - 1911],description: [University of Zürich],)
180+
#resume-entry(title: [Junior Professor],location: [Bern, Switzerland],date: [1908 - 1909],description: [University of Bern],)
181+
#resume-entry(title: [Technical Assistant],location: [Bern, Switzerland],date: [1902 - 1908],description: [Federal Patent Office],)
182182
```

_extensions/awesomecv/typst-template.typ

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#import "@preview/fontawesome:0.6.0": *
1+
#import "@preview/fontawesome:0.5.0": *
22

33
//------------------------------------------------------------------------------
44
// Style
@@ -29,7 +29,7 @@
2929
#if parts.len() == 2 {
3030
fa-icon(parts.at(1), fill: color-darknight)
3131
} else if parts.len() == 3 and parts.at(1) == "brands" {
32-
fa-icon(parts.at(2), font: "Font Awesome 7 Brands", fill: color-darknight)
32+
fa-icon(parts.at(2), font: "Font Awesome 6 Brands", fill: color-darknight)
3333
} else {
3434
assert(false, "Invalid fontawesome icon string")
3535
}

assets/img/thumbnail.png

0 Bytes
Loading

renv.lock

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@
922922
},
923923
"typstcv": {
924924
"Package": "typstcv",
925-
"Version": "0.0.2.2",
925+
"Version": "0.0.2.4",
926926
"Source": "Repository",
927927
"Type": "Package",
928928
"Title": "CV for Quarto & Typst",
@@ -938,6 +938,9 @@
938938
"Roxygen": "list(markdown = TRUE)",
939939
"RoxygenNote": "7.3.2",
940940
"Repository": "https://kazuyanagimoto.r-universe.dev",
941+
"RemoteUrl": "https://github.com/kazuyanagimoto/typstcv",
942+
"RemoteRef": "HEAD",
943+
"RemoteSha": "d6d55170e7c7e958e54e96f13cf9f0d70ed7f759",
941944
"NeedsCompilation": "no",
942945
"Author": "Kazuharu Yanagimoto [aut, cre] (ORCID: <https://orcid.org/0009-0007-1967-8304>)",
943946
"Maintainer": "Kazuharu Yanagimoto <kazuharu.yanagimoto@gmail.com>"

template-typstcv.qmd

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,10 @@ brand:
3434
fonts:
3535
- family: Roboto
3636
source: google
37+
weight: [100, 200, 300, 400, 500, 600, 700]
3738
- family: Source Sans 3
3839
source: google
40+
weight: [100, 200, 300, 400, 500, 600, 700]
3941
base: Source Sans 3
4042
color:
4143
primary: "#dc3522"
@@ -71,8 +73,8 @@ resume_entry(pub)
7173
```{r}
7274
#| output: asis
7375
work |>
74-
format_date(end = "end", date_format = "%Y", sort_by = "start") |>
75-
resume_entry()
76+
format_date(end = "end", date_format = "%Y", sort_by = "start") |>
77+
resume_entry()
7678
```
7779

7880
## Awards

template.qmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ brand:
3030
fonts:
3131
- family: Roboto
3232
source: google
33+
weight: [100, 200, 300, 400, 500, 600, 700]
3334
- family: Source Sans 3
3435
source: google
36+
weight: [100, 200, 300, 400, 500, 600, 700]
3537
base: Source Sans 3
3638
color:
3739
primary: "#dc3522"

0 commit comments

Comments
 (0)