File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 22ChangeLog
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+
5110.20.1 (2017-03-02)
612===================
713- Fix: Cast OSF file size metadata to an int before comparing to our maximum supported file size
Original file line number Diff line number Diff line change 1- __version__ = '0.20.1 '
1+ __version__ = '0.21.0 '
22__import__ ('pkg_resources' ).declare_namespace (__name__ )
Original file line number Diff line number Diff line change 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 ( ) {
Original file line number Diff line number Diff 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' ,
You can’t perform that action at this time.
0 commit comments