Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update libraries #35

Merged
merged 1 commit into from
Mar 7, 2024
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: 2 additions & 2 deletions contrib/update_cdnjs_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
import sys, os, re, requests

libraries = {
'bootstrap': '5.3.2',
'bootstrap': '5.3.3',
'codemirror': '5.65.16',
'firacode': '6.2.0',
'split.js': '1.6.5',
'js-yaml': '4.1.0',
'dayjs': '1.11.10',
'pako': '2.1.0',
'jszip': '3.10.1',
'github-markdown-css': '5.5.0'
'github-markdown-css': '5.5.1'
}

def update_file(cdnjs_url, sri, f):
Expand Down
2 changes: 1 addition & 1 deletion jinjafx_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import re, argparse, hashlib, traceback, glob, hmac, uuid, struct, binascii, gzip, requests, ctypes, subprocess
import cmarkgfm, emoji

__version__ = '24.1.1'
__version__ = '24.3.0'

llock = threading.RLock()
rlock = threading.RLock()
Expand Down
4 changes: 2 additions & 2 deletions podman/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends wget git build-essential; \

wget -P /tmp https://github.com/jgm/pandoc/releases/download/3.1.11.1/pandoc-3.1.11.1-1-amd64.deb; \
dpkg -i /tmp/pandoc-3.1.11.1-1-amd64.deb; \
wget -P /tmp https://github.com/jgm/pandoc/releases/download/3.1.12.2/pandoc-3.1.12.2-1-amd64.deb; \
dpkg -i /tmp/pandoc-3.1.12.2-1-amd64.deb; \

python3 -m venv /opt/jinjafx; \
/opt/jinjafx/bin/python3 -m pip install --upgrade git+https://github.com/cmason3/jinjafx_server.git@${BRANCH} lxml; \
Expand Down