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

Commit

Permalink
Release 6.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bnmnetp committed Mar 31, 2023
1 parent 264883d commit 4f4ede1
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
4 changes: 4 additions & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
RunestoneServer-6.2.2

- bug fixes

RunestoneServer-6.2.0

- Support for grading microparsons
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# ================
[tool.poetry]
name = "runestone_poetry_project"
version = "6.2.1"
version = "6.2.2"
description = "A web2py-based server for the Runestone e-book system."
authors = ["Brad Miller <[email protected]>", "Bryan A. Jones <bjones AT ece DOT msstate DOT edu"]
license = "MIT"
Expand Down
16 changes: 16 additions & 0 deletions scripts/make_script_tags.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import json
import pyclip

import_file = "/Users/bmiller/Runestone/RunestoneComponents/runestone/dist/webpack_static_imports.json"

imports = json.load(open(import_file, "r"))
res = ""
for f in imports["js"]:
res += f"""<script src="_static/{f}"></script>\n"""

for f in imports["css"]:
res += f"""<link rel="stylesheet" type="text/css" href="_static/{f}" >\n"""

print(res)
pyclip.copy(res)
print("The New imports on on the clipboard.")
7 changes: 3 additions & 4 deletions static/motd.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<h4>Updates February 3, 2023 </h4>
<h4>Updates March 31, 2023 </h4>
<ul>
<li>PreTeXt book fixes</li>
<li>Support for grading webwork and microparsons questions</li>
<li>Short answer questions can now have attachments! - the uses for this are pretty much endless! Enjoy.</li>
<li>Bug fixing and polishing</li>
<li>UI polish for async peer instruction</li>
</ul>
<h4>Runestone Academy approved as 501(c)(3) nonprofit</h4>
<h4>High School Teachers:</h4>
<p>
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!
Expand Down

0 comments on commit 4f4ede1

Please sign in to comment.