From anandrajan at gmail.com Mon Jan 20 21:21:03 2020 From: anandrajan at gmail.com (Anand Rangarajan) Date: Mon, 20 Jan 2020 16:21:03 -0500 Subject: Integral sign appears in the wrong location inside lyx-2.3.4 Message-ID: OS: linux (opensuse leap 15.1) Qt version: 5.14.0 I compiled and ran lyx-2.3.4 with the configuration shown below. A problem seen in Feb 2019 ( https://www.mail-archive.com/lyx-users at lists.lyx.org/msg108800.html) is still present. When I attempt to write an integral within a math environment as in \int_a^b f(x)dx the location of the integral sign in lyx is wrong. Screenshot and lyx file attached. (The pdf looks fine.) Anand ------------------------------------- Configuration Host type: x86_64-pc-linux-gnu Special build flags: build=release std-regex use-hunspell use-aspell use-enchant Bundled libraries: boost mythes C++ Compiler: g++ (7.5.0) C++ Compiler flags: -fPIC -O2 -std=c++14 C++ Compiler user flags: Linker flags: Linker user flags: Qt Frontend: Qt version: 5.14.0 Packaging: posix LyX binary dir: /home/anand/bin LyX files dir: /home/anand/share/lyx-2.3.4 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: intab.lyx Type: application/x-lyx Size: 1776 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: intab.png Type: image/png Size: 55796 bytes Desc: not available URL: From lasgouttes at lyx.org Sun Jan 26 19:34:12 2020 From: lasgouttes at lyx.org (Jean-Marc Lasgouttes) Date: Sun, 26 Jan 2020 20:34:12 +0100 Subject: [LyX/master] Fix distcheck target In-Reply-To: <20200126191403.F2750280235@lyx.lyx.org> References: <20200126191403.F2750280235@lyx.lyx.org> Message-ID: Le 26/01/2020 ? 20:14, Jean-Marc Lasgouttes a ?crit?: > commit 9017581ecf26c5e651ee1bccc053285a1b21ca29 > Author: Jean-Marc Lasgouttes > Date: Sun Jan 26 19:46:19 2020 +0100 > > Fix distcheck target > > 1/ The most annoying part was the error in po/. It turns out that reading > and understanding the po/Makevars file was the key. A simple change of > variable ensures that "make dist" does not try to rebuild lyx.pot. > > 2/ The way tests in src/ are defined meant that the > dependency-tracking files were not all deleted. This should be OK now. On the fourth time I looked at this issue, I finally nailed it. Yay! Riki, this is candidate for branch, but probably after 2.3.5 (unless you want it right now). JMarc > --- > po/Makevars | 2 +- > src/Makefile.am | 28 ++++++++++++++-------------- > 2 files changed, 15 insertions(+), 15 deletions(-) > > diff --git a/po/Makevars b/po/Makevars > index 918124f..80330d6 100644 > --- a/po/Makevars > +++ b/po/Makevars > @@ -75,4 +75,4 @@ PO_DEPENDS_ON_POT = yes > # regenerate PO files on "make dist". Possible values are "yes" and > # "no". Set this to no if the POT file and PO files are maintained > # externally. > -DIST_DEPENDS_ON_UPDATE_PO = yes > +DIST_DEPENDS_ON_UPDATE_PO = no > diff --git a/src/Makefile.am b/src/Makefile.am > index 15a3dfa..5a9ba93 100644 > --- a/src/Makefile.am > +++ b/src/Makefile.am > @@ -705,7 +705,9 @@ check_layout_CPPFLAGS = $(AM_CPPFLAGS) > check_layout_LDADD = $(check_layout_LYX_OBJS) $(TESTS_LIBS) > check_layout_LDFLAGS = $(QT_LDFLAGS) $(ADD_FRAMEWORKS) > check_layout_SOURCES = \ > - tests/check_layout.cpp > + tests/check_layout.cpp \ > + tests/dummy_functions.cpp \ > + tests/boost.cpp > check_layout_LYX_OBJS = \ > insets/InsetLayout.o \ > CiteEnginesList.o \ > @@ -719,18 +721,16 @@ check_layout_LYX_OBJS = \ > Lexer.o \ > ModuleList.o \ > Spacing.o \ > - TextClass.o \ > - tests/dummy_functions.o \ > - tests/boost.o > + TextClass.o > > check_ExternalTransforms_CPPFLAGS = $(AM_CPPFLAGS) > check_ExternalTransforms_LDADD = $(check_ExternalTransforms_LYX_OBJS) $(TESTS_LIBS) > check_ExternalTransforms_LDFLAGS = $(QT_LDFLAGS) $(ADD_FRAMEWORKS) > check_ExternalTransforms_SOURCES = \ > - tests/check_ExternalTransforms.cpp > + tests/check_ExternalTransforms.cpp \ > + tests/dummy_functions.cpp \ > + tests/boost.cpp > check_ExternalTransforms_LYX_OBJS = \ > - tests/dummy_functions.o \ > - tests/boost.o \ > graphics/GraphicsParams.o \ > insets/ExternalTransforms.o \ > Length.o \ > @@ -740,10 +740,10 @@ check_Length_CPPFLAGS = $(AM_CPPFLAGS) > check_Length_LDADD = $(check_Length_LYX_OBJS) $(TESTS_LIBS) > check_Length_LDFLAGS = $(QT_LDFLAGS) $(ADD_FRAMEWORKS) > check_Length_SOURCES = \ > - tests/check_Length.cpp > + tests/check_Length.cpp \ > + tests/dummy_functions.cpp \ > + tests/boost.cpp > check_Length_LYX_OBJS = \ > - tests/dummy_functions.o \ > - tests/boost.o \ > Length.o \ > lengthcommon.o > > @@ -751,9 +751,9 @@ check_ListingsCaption_CPPFLAGS = $(AM_CPPFLAGS) > check_ListingsCaption_LDADD = $(check_ListingsCaption_LYX_OBJS) $(TESTS_LIBS) > check_ListingsCaption_LDFLAGS = $(QT_LDFLAGS) $(ADD_FRAMEWORKS) > check_ListingsCaption_SOURCES = \ > - tests/check_ListingsCaption.cpp > -check_ListingsCaption_LYX_OBJS = \ > - tests/dummy_functions.o \ > - tests/boost.o > + tests/check_ListingsCaption.cpp \ > + tests/dummy_functions.cpp \ > + tests/boost.cpp > +check_ListingsCaption_LYX_OBJS = > > .PHONY: alltests alltests-recursive updatetests > From rikiheck at lyx.org Sun Jan 26 21:25:28 2020 From: rikiheck at lyx.org (Richard Kimberly Heck) Date: Sun, 26 Jan 2020 16:25:28 -0500 Subject: 2.3.x is Open Again Message-ID: <50b30e3d-f52d-fb1b-9260-32eee92b4d67@lyx.org> As said. From lasgouttes at lyx.org Sun Jan 26 22:24:09 2020 From: lasgouttes at lyx.org (Jean-Marc Lasgouttes) Date: Sun, 26 Jan 2020 23:24:09 +0100 Subject: Integral sign appears in the wrong location inside lyx-2.3.4 In-Reply-To: References: Message-ID: <064d11f4-bea5-cd8e-538a-22e56216c7f8@lyx.org> Le 20/01/2020 ? 22:21, Anand Rangarajan a ?crit?: > OS: linux (opensuse leap 15.1) > Qt version: 5.14.0 > > I compiled and ran lyx-2.3.4 with the configuration shown below. A > problem seen in Feb 2019 > (https://www.mail-archive.com/lyx-users at lists.lyx.org/msg108800.html) is > still present. When I attempt to write an integral within a math > environment as in > > \int_a^b f(x)dx > > the location of the integral sign in lyx is wrong. Screenshot and lyx > file attached. (The pdf looks fine.) Hello, Does it make a difference to set the environment variable QT_HARFBUZZ to "old" ? JMarc From rikiheck at lyx.org Sun Jan 26 22:51:26 2020 From: rikiheck at lyx.org (Richard Kimberly Heck) Date: Sun, 26 Jan 2020 17:51:26 -0500 Subject: LyX 2.3.4 Windows Installer for Testing Message-ID: <20a5ecd5-5af3-f8b1-4468-1bde2432ef2f@lyx.org> Hi, all, I've put a Windows installer here ??? http://ftp.lyx.org/pub/lyx/devel/lyx-2.3/LyX-234-Installer-1.exe for testing. The main thing is that I've updated Image Magick and, frankly, am not at all sure I've done so correctly. It did manage to export the User Guide, but I haven't tested preview, etc. Please let me know if it's working properly. I'll plan to do the release mid-week if so. Riki