Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Instructions: Add a subsection under `[Unreleased]` for additions, fixes, change

## [Unreleased]

### Changes

- Improve printout reflowing, especially on hide solution toggle.

## [2.48.1] - 2026-08-09

Includes updates to core through commit: [94cd93d](https://github.com/PreTeXtBook/pretext/commit/94cd93d9e175822173f5a4d89870b346aedd6717)
Expand Down
2 changes: 1 addition & 1 deletion pretext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

VERSION = get_version("pretext", Path(__file__).parent.parent)

CORE_COMMIT = "94cd93d9e175822173f5a4d89870b346aedd6717"
CORE_COMMIT = "ddf48d0b0da1ac5eb315f53f3fac3ee56a127fe6"


def activate() -> None:
Expand Down
6 changes: 4 additions & 2 deletions schema/project-ptx.rnc
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ CommonAttributes = (
attribute site {text}?,
attribute xsl { text }?,
attribute asy-method { "server" | "local" }?,
attribute standalone { "yes" | "no" }?
attribute standalone { "yes" | "no" }?,
attribute deploy { "yes" | "no" }?
)

HtmlAttributes = (
Expand All @@ -84,7 +85,8 @@ PdfAttributes = (
attribute format { "pdf" },
attribute pdf-method { "xelatex" | "pdflatex" | "latex" | "pdf-fo"}?,
attribute latex-engine { "xelatex" | "pdflatex" | "latex" }?,
attribute output-filename { text }?
attribute output-filename { text }?,
attribute latex-source { "yes" | "no" }?
)

LatexAttributes = (
Expand Down
16 changes: 16 additions & 0 deletions schema/project-ptx.rng
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,14 @@ These parameters are rarely used by content authors.</a:documentation>
</choice>
</attribute>
</optional>
<optional>
<attribute name="deploy">
<choice>
<value>yes</value>
<value>no</value>
</choice>
</attribute>
</optional>
</define>
<define name="HtmlAttributes">
<attribute name="format">
Expand Down Expand Up @@ -181,6 +189,14 @@ These parameters are rarely used by content authors.</a:documentation>
<optional>
<attribute name="output-filename"/>
</optional>
<optional>
<attribute name="latex-source">
<choice>
<value>yes</value>
<value>no</value>
</choice>
</attribute>
</optional>
</define>
<define name="LatexAttributes">
<attribute name="format">
Expand Down