add support for dvipdfmx converter

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@13935 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2006-05-26 15:17:18 +00:00
parent 8f02fb39d0
commit 5d43d3a0c4
3 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2006-05-26 Enrico Forestieri <forenr@tlc.unipr.it>
* configure.py: look for dvipdfmx before dvipdfm.
2006-05-18 Enrico Forestieri <forenr@tlc.unipr.it>
* configure.py: fix setting of \cygwin_path_fix_needed; remove

View File

@ -336,7 +336,7 @@ def checkConverterEntries():
checkProg('a DVI to PS converter', ['dvips -o $$o $$i'],
rc_entry = [ r'\converter dvi ps "%%" ""' ])
#
checkProg('a DVI to PDF converter', ['dvipdfm $$i'],
checkProg('a DVI to PDF converter', ['dvipdfmx $$i', 'dvipdfm $$i'],
rc_entry = [ r'\converter dvi pdf3 "%%" ""' ])
#
path, dvipng = checkProg('dvipng', ['dvipng'])

View File

@ -37,6 +37,8 @@ What's new
- Add buttons for \overset and \underset to the math panel (bug 2533)
- Add support for the dvipdfmx converter.
** Bug fixes
* Document input/output:
@ -95,9 +97,6 @@ What's new
- When pasting contents to a tabular with the middle mouse button, the
language has sometimes be changed. This is fixed now.
- Fix unconditional movement of the cursor outside of a tabular when
opening the tabular dialog.
- Text copied from an ERT box has no longer the pseudo "latex" language
(bug 2476).