Skip to content

Commit

Permalink
Merge branch 'hotfix/0.24.2' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
icereval committed Feb 10, 2018
2 parents 4f9d119 + 22e1a7d commit f50b16e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
ChangeLog
*********

0.24.2 (2018-02-09)
===================
- Fix: Update UNOCONV_BIN setting to reflect the default pip install path.

0.24.1 (2018-02-09)
===================
- Fix: Specifically install LibreOffice 6.0.1.1 and install unoconv 0.8.2.
Expand Down
2 changes: 1 addition & 1 deletion mfr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.24.1'
__version__ = '0.24.2'
__import__('pkg_resources').declare_namespace(__name__)
2 changes: 1 addition & 1 deletion mfr/extensions/unoconv/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

config = settings.child('UNOCONV_EXTENSION_CONFIG')

UNOCONV_BIN = config.get('UNOCONV_BIN', '/usr/bin/unoconv')
UNOCONV_BIN = config.get('UNOCONV_BIN', '/usr/local/bin/unoconv')

ADDRESS = config.get('SERVER', os.environ.get('UNOCONV_PORT_2002_TCP_ADDR', '127.0.0.1'))
PORT = config.get('PORT', os.environ.get('UNOCONV_PORT_2002_TCP_PORT', '2002'))
Expand Down

0 comments on commit f50b16e

Please sign in to comment.