You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,14 @@ Instructions: Add a subsection under `[Unreleased]` for additions, fixes, change
9
9
10
10
## [Unreleased]
11
11
12
+
### Changed
13
+
14
+
- The CLI now uses your assembled source in case you use "versions" for checking for some source errors and deciding whether assets must be regenerated. For example, if you change an asset in a component that is not part of a version, it will not trigger rebuilding all assets.
15
+
16
+
### Fixed
17
+
18
+
- Fixed a bug with the denver theme that displayed some tasks with their headings not inline.
19
+
12
20
## [2.16.1] - 2025-04-08
13
21
14
22
Includes updates to core through commit: [7017d8f](https://github.com/PreTeXtBook/pretext/commit/7017d8fcc7005984ffc7fad81d0a37062a529a9d)
"Only one <document-id> is allowed in a PreTeXt document."
348
348
)
349
-
d=d_list[0]
350
-
assertisinstance(d, str)
351
-
# Use the correct number of `../` to undo the project's `output-dir`, so the output from the build is located in the correct directory of `published/document-id`.
# NB as of 2025-04-08, we are no longer setting the output directory automatically for
350
+
# Runestone targets. This must be managed by the project.ptx file or by a client script.
351
+
# The commented code below is how we used to do this.
352
+
353
+
# d = d_list[0]
354
+
# assert isinstance(d, str)
355
+
# # Use the correct number of `../` to undo the project's `output-dir`, so the output from the build is located in the correct directory of `published/document-id`.
Returns a hash table (dictionary) with keys the asset types present in the current target's source, each with value a hash of all the assets of that type.
469
+
Returns a hash table (dictionary) with keys the asset types present in the current target's *assembled* source, each with value a hash of all the assets of that type.
450
470
ex: {latex-image: <hash>, asymptote: <hash>}.
451
471
452
472
NOTE: This is a change in behavior starting in 2.13; previously the keys were dictionaries mapping xml:id's to hashes of individual assets.
0 commit comments