Skip to content
This repository was archived by the owner on Jun 30, 2024. It is now read-only.

Commit 4f4ede1

Browse files
committed
Release 6.2.2
1 parent 264883d commit 4f4ede1

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

VERSION

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
RunestoneServer-6.2.2
2+
3+
- bug fixes
4+
15
RunestoneServer-6.2.0
26

37
- Support for grading microparsons

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# ================
1818
[tool.poetry]
1919
name = "runestone_poetry_project"
20-
version = "6.2.1"
20+
version = "6.2.2"
2121
description = "A web2py-based server for the Runestone e-book system."
2222
authors = ["Brad Miller <[email protected]>", "Bryan A. Jones <bjones AT ece DOT msstate DOT edu"]
2323
license = "MIT"

scripts/make_script_tags.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import json
2+
import pyclip
3+
4+
import_file = "/Users/bmiller/Runestone/RunestoneComponents/runestone/dist/webpack_static_imports.json"
5+
6+
imports = json.load(open(import_file, "r"))
7+
res = ""
8+
for f in imports["js"]:
9+
res += f"""<script src="_static/{f}"></script>\n"""
10+
11+
for f in imports["css"]:
12+
res += f"""<link rel="stylesheet" type="text/css" href="_static/{f}" >\n"""
13+
14+
print(res)
15+
pyclip.copy(res)
16+
print("The New imports on on the clipboard.")

static/motd.html

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
<h4>Updates February 3, 2023 </h4>
1+
<h4>Updates March 31, 2023 </h4>
22
<ul>
3-
<li>PreTeXt book fixes</li>
4-
<li>Support for grading webwork and microparsons questions</li>
5-
<li>Short answer questions can now have attachments! - the uses for this are pretty much endless! Enjoy.</li>
63
<li>Bug fixing and polishing</li>
4+
<li>UI polish for async peer instruction</li>
75
</ul>
6+
<h4>Runestone Academy approved as 501(c)(3) nonprofit</h4>
87
<h4>High School Teachers:</h4>
98
<p>
109
If your school district wants us to sign a "contract" for providing you free access to Runestone academy we will now require a $100 US legal fee to review that contract. There are many ways to use Runestone without us storing PII, so think about that as an option!

0 commit comments

Comments
 (0)