aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO.md5
-rw-r--r--_changelog.yml7
-rw-r--r--structure/book/en/99-end.md2
-rw-r--r--structure/book/pt-br/99-end.md2
4 files changed, 14 insertions, 2 deletions
diff --git a/TODO.md b/TODO.md
index b601ba3..587c252 100644
--- a/TODO.md
+++ b/TODO.md
@@ -67,6 +67,11 @@
## Documentation
* [ ] Improve the documentation.
+* [ ] Add that, with Bookup, books can be written and logged like another
+ coding project: good practices learned from computer programming can
+ be fed back into book writing.
+* [ ] Tell about _living books_, meant to be versioned, have feeds and an
+ archive, so others can properly follow updates and cite specific versions.
* [ ] Document the "Bookup Stack": which piece of software is at which level,
and used for what.
* [ ] Add a reference to:
diff --git a/_changelog.yml b/_changelog.yml
index 33888cb..27827ae 100644
--- a/_changelog.yml
+++ b/_changelog.yml
@@ -9,6 +9,13 @@ versions:
# date_markdown:
# summary: |
+ - id: 0.6.0
+ date_atom:
+ date_rss:
+ date_markdown: unreleased
+ summary: |
+ * Check for `snippets/changes.md`.
+
- id: 0.5.9
date_atom: 2025-11-23T10:22:00-03:00
date_rss: 23 Nov 2025 10:22:00 -0300
diff --git a/structure/book/en/99-end.md b/structure/book/en/99-end.md
index d0c8b8d..6092e8f 100644
--- a/structure/book/en/99-end.md
+++ b/structure/book/en/99-end.md
@@ -12,7 +12,7 @@
<!-- This seems not to be the case anymore: https://bookdown.org/yihui/bookdown/citations.html -->
<script type="text/html">
```{r echo=FALSE, results='asis'}
-if (knitr::is_html_output()) {
+if (knitr::is_html_output() && file.exists('snippets/changed.md')) {
cat(readLines('snippets/changes.md'), sep='\n')
}
```
diff --git a/structure/book/pt-br/99-end.md b/structure/book/pt-br/99-end.md
index ba2d787..f5734eb 100644
--- a/structure/book/pt-br/99-end.md
+++ b/structure/book/pt-br/99-end.md
@@ -12,7 +12,7 @@
<!-- This seems not to be the case anymore: https://bookdown.org/yihui/bookdown/citations.html -->
<script type="text/html">
```{r echo=FALSE, results='asis'}
-if (knitr::is_html_output()) {
+if (knitr::is_html_output() && file.exists('snippets/changed.md')) {
cat(readLines('snippets/changes.md'), sep='\n')
}
```