From 34e0d07acaa27c6a7dc2226ce21b61fcb33a8ccd Mon Sep 17 00:00:00 2001 From: Nikolas Pikall Date: Fri, 27 Dec 2024 21:44:02 +0100 Subject: [PATCH] updated the version for new release --- CHANGELOG.md | 3 +++ README.md | 8 ++++---- template/main.typ | 2 +- typst.toml | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83bbc71..0258257 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# [v0.1.3](https://github.com/npikall/vienna-tech/releases/tag/v0.1.3) +- Fixed a bug that caused the appendix label not to change when a different language was selected. + # [v0.1.2](https://github.com/npikall/vienna-tech/releases/tag/v0.1.2) - Added layout customization options (font-sizes, title-page, etc.) - Added functionality to set fonts for the document. diff --git a/README.md b/README.md index cfa5a6a..fe24d48 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # The `vienna-tech` Template -
Version 0.1.2
+
Version 0.1.3
This is a template, modeled after the LaTeX template provided by the Vienna University of Technology for Engineering Students. It is intended to be used as a starting point for writing Bachelor's or Master's theses, but can be adapted for other purposes as well. It shall be noted that this template is not an official template provided by the Vienna University of Technology, but rather a personal effort to provide a similar template in a new typesetting system. If you want to checkout the original templates visit the website of [TU Wien](https://www.tuwien.at/cee/edvlabor/lehre/vorlagen) @@ -9,7 +9,7 @@ This is a template, modeled after the LaTeX template provided by the Vienna Univ These instructions will help you set up the template on the typst web app. ```typ -#import "@preview/vienna-tech:0.1.2": * +#import "@preview/vienna-tech:0.1.3": * // Useing the configuration #show: tuw-thesis.with( @@ -27,7 +27,7 @@ These instructions will help you set up the template on the typst web app. abstract: [The Abstract of the Thesis], bibliography: bibliography("bibliography.bib"), appendix: [The Appendix of the Thesis], - ) +) ``` ## Options @@ -59,7 +59,7 @@ All the available options that are available for the template are listed below. These instructions will get you a copy of the project up and running on the typst web app. ```bash -typst init @preview/vienna-tech:0.1.2 +typst init @preview/vienna-tech:0.1.3 ``` ### Template overview diff --git a/template/main.typ b/template/main.typ index 66156a9..68efdc7 100644 --- a/template/main.typ +++ b/template/main.typ @@ -1,4 +1,4 @@ -#import "@preview/vienna-tech:0.1.2": * +#import "@preview/vienna-tech:0.1.3": * #show "Typst": fancy-typst #show "LaTeX": fancy-latex diff --git a/typst.toml b/typst.toml index 3c187fe..83ec728 100644 --- a/typst.toml +++ b/typst.toml @@ -2,7 +2,7 @@ [package] name = "vienna-tech" -version = "0.1.2" +version = "0.1.3" entrypoint = "src/lib.typ" authors = ["Niko Pikall"] license = "Unlicense"