From 5d43d3a0c403ab754ba3102184da9a36a6408f66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Fri, 26 May 2006 15:17:18 +0000 Subject: [PATCH] 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 --- lib/ChangeLog | 4 ++++ lib/configure.py | 2 +- status.14x | 5 ++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/lib/ChangeLog b/lib/ChangeLog index 5534c04a0a..3214247ce6 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2006-05-26 Enrico Forestieri + + * configure.py: look for dvipdfmx before dvipdfm. + 2006-05-18 Enrico Forestieri * configure.py: fix setting of \cygwin_path_fix_needed; remove diff --git a/lib/configure.py b/lib/configure.py index af2de9bfd1..d2e81a6072 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -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']) diff --git a/status.14x b/status.14x index 2de52af806..a38ed5be79 100644 --- a/status.14x +++ b/status.14x @@ -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).