Skip to content

Commit bc6da2e

Browse files
committed
update to v2.7.2 (but use latest)
1 parent 5319369 commit bc6da2e

6 files changed

Lines changed: 56 additions & 57 deletions

File tree

.devcontainer/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
app:
3-
image: ghcr.io/ximeraproject/ximeralatex:v2.7.0
4-
# image: ghcr.io/ximeraproject/ximeralatex:v2.7.0-full
3+
image: ghcr.io/ximeraproject/ximeralatex:v2.7.2
4+
# image: ghcr.io/ximeraproject/ximeralatex:v2.7.2-full
55
volumes:
66
# This is where VS Code should expect to find your project's source code and the value of "workspaceFolder" in .devcontainer/devcontainer.json
77
- ..:/code:cached

.vscode/settings.json

Lines changed: 46 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"alignment": "right",
6060
"task": "HTML",
6161
"description": "Create HTML of the current file.",
62-
"tooltip": "Compile a HTML from the current file."
62+
"tooltip": "Compile (and publish) HTML \nfrom the current file."
6363
},
6464
{
6565
"label": "SERVE",
@@ -91,52 +91,51 @@
9191
"description": "Remove all generated files",
9292
"problemMatcher": [],
9393
},
94-
95-
{
96-
"label": "Bake",
97-
"alignment": "right",
98-
"task": "Bake",
99-
"description": "Bake this project (make .html files).",
100-
"tooltip": "Bake this project."
101-
},
102-
{
103-
"task": "Bake pdf",
104-
"label": "Bake PDF's (with answers)",
105-
"description": "Make PDF's.",
106-
"problemMatcher": [],
107-
},
108-
{
109-
"task": "Bake pdf (force rebuild)",
110-
"label": "Force (re-)Bake PDF's (with answers)",
111-
"description": "Make PDF's.",
112-
"problemMatcher": [],
113-
},
114-
{
115-
"task": "Bake handout",
116-
"label": "Bake handout PDF's (without answers)",
117-
"description": "Make handout PDF's.",
118-
"problemMatcher": [],
119-
},
120-
{
121-
"task": "Bake handout (fore rebuild)",
122-
"label": "Force (re-)Bake handout PDF's (without answers)",
123-
"description": "Make handout PDF's.",
124-
"problemMatcher": [],
125-
},
126-
{
127-
"label": "Frost",
128-
"alignment": "right",
129-
"task": "Frost",
130-
"description": "Frost this project.",
131-
"tooltip": "Frost this project."
132-
},
133-
{
134-
"label": "Serve",
135-
"alignment": "right",
136-
"task": "Serve",
137-
"description": "Serve this project.",
138-
"tooltip": "Serve this project."
139-
},
94+
// {
95+
// "label": "Bake",
96+
// "alignment": "right",
97+
// "task": "Bake",
98+
// "description": "Bake this project (make .html files).",
99+
// "tooltip": "Bake this project."
100+
// },
101+
// {
102+
// "task": "Bake pdf",
103+
// "label": "Bake PDF's (with answers)",
104+
// "description": "Make PDF's.",
105+
// "problemMatcher": [],
106+
// },
107+
// {
108+
// "task": "Bake pdf (force rebuild)",
109+
// "label": "Force (re-)Bake PDF's (with answers)",
110+
// "description": "Make PDF's.",
111+
// "problemMatcher": [],
112+
// },
113+
// {
114+
// "task": "Bake handout",
115+
// "label": "Bake handout PDF's (without answers)",
116+
// "description": "Make handout PDF's.",
117+
// "problemMatcher": [],
118+
// },
119+
// {
120+
// "task": "Bake handout (fore rebuild)",
121+
// "label": "Force (re-)Bake handout PDF's (without answers)",
122+
// "description": "Make handout PDF's.",
123+
// "problemMatcher": [],
124+
// },
125+
// {
126+
// "label": "Frost",
127+
// "alignment": "right",
128+
// "task": "Frost",
129+
// "description": "Frost this project.",
130+
// "tooltip": "Frost this project."
131+
// },
132+
// {
133+
// "label": "Serve",
134+
// "alignment": "right",
135+
// "task": "Serve",
136+
// "description": "Serve this project.",
137+
// "tooltip": "Serve this project."
138+
// },
140139
{
141140
"task": "Update DevEnv",
142141
"label": "Update the build environment",

.vscode/tasks.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@
3131
{
3232
"label": "SERVE",
3333
"args": [
34-
"all",
35-
"-s",
34+
"ghaction",
3635
],
3736
},
3837
{

xmScripts/config.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
# version of Ximera xake container to use (with xmlatex)
33
#
44
# : "${XAKE_BASE:=ximeralatex}"
5-
# : "${XAKE_VERSION:=v2.7.0}"
6-
# : "${XAKE_VERSION:=v2.7.0-full}" # with texlive_full
5+
: "${XAKE_VERSION:=latest}"
6+
# : "${XAKE_VERSION:=v2.7.2}"
7+
# : "${XAKE_VERSION:=v2.7.2-full}" # with texlive_full
78
#
89
# For publishing you'll need a GPG Key
910
# To generate a key-pair, fill in your name and email, and run 'xmlatex genKey'
10-
YOUR_NAME="Bart Snapp"
11-
YOUR_EMAIL="snapp.14@osu.edu--tempMooc"
11+
YOUR_NAME="Just For DUMMY Testing"
12+
YOUR_EMAIL="noproblem@dummy.org"
1213
#
1314
# Current 'xmlatex genKey' logic:
1415
# if there is no .xmKeyFile, and it is properly .gitignored,

xmScripts/xmlatex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fi
4343
#
4444
# default docker image to run; overwrite with 'export XAKE_IMAGE=myxake:0.1'
4545
: "${XAKE_BASE:=ximeralatex}"
46-
: "${XAKE_VERSION:=v2.7.0}"
46+
: "${XAKE_VERSION:=v2.7.2}"
4747
: "${XAKE_CONTAINER:=$XAKE_BASE:$XAKE_VERSION}"
4848
: "${DOCKER_REPO:=ghcr.io/ximeraproject/}"
4949

xmScripts/xmlatex.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22
set str=%*
33
set "str=%str:\=/%"
4-
set "DOCKER_IMAGE=ghcr.io/ximeraproject/ximeralatex:v2.6.8"
4+
set "DOCKER_IMAGE=ghcr.io/ximeraproject/ximeralatex:v2.7.2"
55
echo Starting docker %DOCKER_IMAGE% with args %str% in directory %cd%.
66
echo docker run --rm --net="host" --mount type=bind,source=%cd%,target=/code %DOCKER_IMAGE% xmlatex %str%
77
docker run --rm --net="host" --mount type=bind,source=%cd%,target=/code %DOCKER_IMAGE% xmlatex %str%

0 commit comments

Comments
 (0)