-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path85-whats-new.Rmd
More file actions
83 lines (64 loc) · 1.97 KB
/
Copy path85-whats-new.Rmd
File metadata and controls
83 lines (64 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# What's New by Version
```{r setup-news, include=FALSE}
knitr::opts_chunk$set(
# fig.retina = 2, out.width = '100%'
cache=TRUE,
fig.align="center",
fig.width=8,
fig.height=7
)
```
```{r news-notes, eval=FALSE, echo=FALSE}
# Consider presenting as a table with two columns?
# - purpose is to keep track of documentation changes, alongside
# occassional venndir R package version when it changes over time.
#
# Venndir-book v1.0.1 | Venndir version 0.0.57.900
#
# Venndir book should have an
# - Edition: 1, 2, 3 - book editioning
# - major rewrite - new major chapter
# - Version: .1, .2, .3
# - new diagram style
# - feature additions
# - Addendum? .1.1, .1.2, .1.3
# - minor corrections, typos
# - small clarifications
```
```{r news-gt, echo=FALSE, eval=FALSE}
# library(yaml)
library(tibble)
whatsnew <- yaml::read_yaml("whatsnew.yml")
whatsnew[[1]]
whatsnew[[2]]
changelog <- whatsnew
tbl <- purrr::map_dfr(changelog, function(x) {
tibble(
book_version = x$book_version,
venndir_version = x$venndir_version,
change = x$changes
)
})
tbl %>%
gt(groupname_col = "book_version") %>%
tab_header(title = "Venndir Book Changelog") %>%
cols_label(venndir_version = "Venndir Version", change = "Change")
```
### v0.3.0 | 13 July 2025
* Edits to Preface, Introduction.
### v0.2.0 | 06 July 2025 | venndir v0.0.58.900 {-}
New chapters and sections:
* Inserted Chapter \@ref(whats-new-by-version): [What's New by Version]
* Inserted Chapter \@ref(glossary): [Glossary]
* Section \@ref(text-venn): [Text Venn]
* Section \@ref(figure-scale-and-position): [Figure Scale and Position]
* Section \@ref(custom-sign-label-colors): [Custom Sign Label Colors]
* Section \@ref(seehawer-kmt2-gene-venns): [Seehawer Kmt2 Gene Venns]
### v0.1.0 | 26 June 2025 | venndir v0.0.56.900 {-}
* Initial release, six chapters:
1. What is a Venn Diagram?
2. Data Import
3. Venndir Basics
4. Deeper Customizations
5. Venndir Gallery
6. References