Skip to content

Commit 001c05b

Browse files
Merge tag '20.0.0' into nii-mergework-202007
2 parents 0f6335c + 5523707 commit 001c05b

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
lines changed

CHANGELOG

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22
ChangeLog
33
*********
44

5+
20.0.0 (2020-07-01)
6+
===================
7+
- Happy Canada Day, everyone!
8+
- Feature: Stop preloading videos in MFR to save bandwidth/memory. Instead display a static poster
9+
with the COS logo. (thanks ro @allsey87 for the suggestion and thanks to @Johnetordoff for the
10+
alley-oop!)
11+
12+
19.1.0 (2019-09-25)
13+
===================
14+
- Feature: Update MFR's Dockerfile to be based off of Debian Buster and install LibreOffice via
15+
apt-get. It had been pulling down a LibreOffice .deb from LO's archive, but they only make the most
16+
recent patch version available. This meant that the Dockerfile had to be update with every patch
17+
release. The version in Debian Buster is v6.1.5.
18+
19+
19.0.2 (2019-06-21)
20+
===================
21+
- Fix: Update MFR dependencies on jinja and mistune python libraries.
22+
523
19.0.1 (2019-06-20)
624
===================
725
- Fix: Update Dockerfile to install LibreOffice v6.1.6. v6.1.5 is no longer available from their

mfr/extensions/video/templates/viewer.mako

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
}
77
</style>
88

9-
<video controls height="100%">
9+
<video controls poster="/static/images/vid-thumbnail.png" preload="none" height="100%">
1010
<source src="${url}">
1111
Your browser does not support the video tag.
1212
</video>
74.9 KB
Loading

mfr/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '19.0.1'
1+
__version__ = '20.0.0'

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ nbconvert==4.2.0
3232
nbformat==4.1.0
3333
traitlets==4.2.2
3434
jsonschema==2.4.0
35-
jinja2==2.7.3
36-
mistune==0.7
35+
jinja2==2.10.1
36+
mistune==0.8.1
3737

3838
# Pdf
3939
reportlab==3.4.0

0 commit comments

Comments
 (0)