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]

### Changed

- Improve default settings in codespace settings.

## [2.24.0] - 2025-07-21

Includes updates to core through commit: [32262dd](https://github.com/PreTeXtBook/pretext/commit/32262dda4922a4535bcfb10fe1c66b50c51337ac)
Expand Down
9 changes: 4 additions & 5 deletions templates/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@
// "image": "pretextbook/pretext:latest",
"features": {"ghcr.io/devcontainers/features/github-cli": {}},

// The pretext-full image above includes pretext, prefigure, and enough parts of latex and sagemath for most cases. If there are errors with sage, you can install the full sagemath package through Conda by running ./.devcontainer/installSage.sh, or uncommenting that line and rebuilding the container.
// The pretext-full image above includes pretext, prefigure, and enough parts of latex and sagemath for most cases. Here we install additional dependencies.
"postCreateCommand": {
// "install sagemath": "bash ./.devcontainer/installSage.sh",
"install pandoc": "bash ./.devcontainer/installPandoc.sh",
"mark repo as safe": "git config --global --add safe.directory $(pwd)"
},
Expand Down Expand Up @@ -57,18 +56,18 @@
}
},


// Configure tool-specific properties.
"customizations": {
"codespaces": {
"openFiles": ["source/main.ptx"]
"openFiles": ["README.md"]
},
"vscode": {
"settings": {
"editor.quickSuggestions": {
"other": "off"
},
"files.autoSave": "onFocusChange",
"files.autoSave": "afterDelay",
"editor.snippetSuggestions": "bottom",
"xml.validation.enabled": true,
"redhat.telemetry.enabled": false,
Expand Down