Skip to content

Commit 0bce2a9

Browse files
committed
Merge branch 'release/0.21.0'
2 parents e862a8e + 3b673ad commit 0bce2a9

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGELOG

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

5+
0.21.0 (2017-04-07)
6+
===================
7+
- Feature: Turn on scrolling for the MFR iframe to support wide JASP files.
8+
- Fix: Fix rendering of Google Drawing (.gdraw) files by directing them to the image renderer
9+
rather than the unoconv renderer.
10+
511
0.20.1 (2017-03-02)
612
===================
713
- Fix: Cast OSF file size metadata to an int before comparing to our maximum supported file size

mfr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '0.20.1'
1+
__version__ = '0.21.0'
22
__import__('pkg_resources').declare_namespace(__name__)

mfr/server/static/js/mfr.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
self.pymParent = new pym.Parent(self.id, self.url, self.config);
8080
self.pymParent.iframe.setAttribute('allowfullscreen', '');
8181
self.pymParent.iframe.setAttribute('webkitallowfullscreen', '');
82+
self.pymParent.iframe.setAttribute('scrolling', 'yes');
8283

8384
self.pymParent.el.appendChild(self.spinner);
8485
$(self.pymParent.iframe).load(function () {

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def parse_requirements(requirements):
4242
],
4343
'mfr.exporters': [
4444
# google docs
45-
'.gdraw = mfr.extensions.unoconv:UnoconvExporter',
45+
'.gdraw = mfr.extensions.image:ImageExporter',
4646
'.gdoc = mfr.extensions.unoconv:UnoconvExporter',
4747
'.gsheet = mfr.extensions.unoconv:UnoconvExporter',
4848
'.gslides = mfr.extensions.unoconv:UnoconvExporter',

0 commit comments

Comments
 (0)