Re: LyX 2.3.2 on wayland, rendering errors

2019-06-25 Thread Jean-Marc Lasgouttes
Le 29/05/2019 à 19:25, Helge Hafting a écrit : 4. In a terminal, launch LyX like this: QT_QPA_PLATFORM=wayland-egl lyx Ha! So I had a patch that depended on the QPA platform name being "wayland", and now I see that it can be wayland-egl, wayland, wayland-xcomposite-egl, wayland-xcomposite-gl

Re: LyX 2.3.2 on wayland, rendering errors

2019-05-29 Thread Helge Hafting
Den 20.05.2019 15:45, skrev Jean-Marc Lasgouttes: Le 26/04/2019 à 12:04, Helge Hafting a écrit : LyX 2.3.2 in arch linux supports wayland rendering (not using X11) by setting QT_QPA_PLATFORM=wayland-egl This mostly works fine, with one exception: Now and then, large parts of the main window

Re: LyX 2.3.2 on wayland, rendering errors

2019-05-29 Thread Helge Hafting
Den 18.05.2019 00:07, skrev Jean-Marc Lasgouttes: Le 17 mai 2019 19:43:44 GMT+02:00, Helge Hafting a écrit : I can test more, but then I need a guide on how to activate/set up subpixel rendering. I know nothing about Wayland and how to set it up... But if you open a page in a web browser,

Re: LyX 2.3.2 on wayland, rendering errors

2019-05-29 Thread Helge Hafting
Den 20.05.2019 12:10, skrev Jean-Marc Lasgouttes: Le 17/05/2019 à 19:43, Helge Hafting a écrit : I tried magnifying a screendump containing a LyX window. There were clearly antialiasing, but no color artifacts in any windows (LyX, firefox and a terminal) The inactive window titlebar had some

Re: LyX 2.3.2 on wayland, rendering errors

2019-05-20 Thread Jean-Marc Lasgouttes
Le 26/04/2019 à 12:04, Helge Hafting a écrit : LyX 2.3.2 in arch linux supports wayland rendering (not using X11) by setting QT_QPA_PLATFORM=wayland-egl This mostly works fine, with one exception: Now and then, large parts of the main window shows my background image instead of lines from the

Re: LyX 2.3.2 on wayland, rendering errors

2019-05-07 Thread Jean-Marc Lasgouttes
Le 26/04/2019 à 12:04, Helge Hafting a écrit : LyX 2.3.2 in arch linux supports wayland rendering (not using X11) by setting QT_QPA_PLATFORM=wayland-egl This mostly works fine, with one exception: Now and then, large parts of the main window shows my background image instead of lines from the

Re: LyX 2.3.2 on wayland, rendering errors

2019-04-26 Thread Jean-Marc Lasgouttes
Le 26/04/2019 à 12:04, Helge Hafting a écrit : LyX 2.3.2 in arch linux supports wayland rendering (not using X11) by setting QT_QPA_PLATFORM=wayland-egl This mostly works fine, with one exception: Now and then, large parts of the main window shows my background image instead of lines from the

Re: LyX (2.3.2) & Mojave 10.14.2: LyX freezes and subexamples don’t work

2019-01-07 Thread Jürgen Spitzmüller
Am Montag, den 07.01.2019, 17:31 +0100 schrieb Martin Konvička: > 2) Specific issue: Only in the new version LyX 2.3.2 (LyX 2.3.1-1 > works fine in this respect), the linguistics module > (linguistics.module) doesn’t seem to work properly. When I try to > compile a file with subexamples such as (1a

Re: lyx-2.3.2/src/Dimension.h:36]: (style) Same expression ?

2018-12-17 Thread Kornel Benko
Am Montag, 17. Dezember 2018 18:00:31 CET schrieb David Binderman : > Hello there, > > > > >> I recommend cppcheck for all C & C++ development work. > > >I'll give it another go eventually. What flags do you recommend? > > --enable=all --language=c++ seems to

Re: lyx-2.3.2/src/Dimension.h:36]: (style) Same expression ?

2018-12-17 Thread David Binderman
Hello there, >> I recommend cppcheck for all C & C++ development work. >I'll give it another go eventually. What flags do you recommend? --enable=all --language=c++ seems to work well for me. I can use grep -v to filter out message I think are pointless. Rega

Re: LyX 2.3.2

2018-12-17 Thread Jean-Marc Lasgouttes
Le 12/12/2018 à 17:45, Richard Kimberly Heck a écrit : Bisect leads me to ef1d5020. There are some other oddities in the previous commit 7b8b3e38, involving how the caret is drawn during zoom, but the previews do reset correctly (and right away). So I'm pretty sure it is this commit that is the p

Re: lyx-2.3.2/src/Dimension.h:36]: (style) Same expression ?

2018-12-17 Thread Jean-Marc Lasgouttes
Le 17/12/2018 à 16:00, David Binderman a écrit : I wonder why gcc, clang or coverity do not spot this, though. gcc and clang are compilers. Too often "you asked for it, you got it" seems to apply to C compilers. Well, with -Wall -Wextra (which we use) they already detect a number of things.

Re: lyx-2.3.2/src/Dimension.h:36]: (style) Same expression ?

2018-12-17 Thread David Binderman
Hello there, >Thanks a lot for spotting it. You are welcome. >I wonder why gcc, clang or coverity do not spot this, though. gcc and clang are compilers. Too often "you asked for it, you got it" seems to apply to C compilers. The static analyser coverity looks

Re: lyx-2.3.2/src/Dimension.h:36]: (style) Same expression ?

2018-12-17 Thread Jean-Marc Lasgouttes
Le 17/12/2018 à 12:23, David Binderman a écrit : Hello there, Source code is        bool empty() const { return wid == 0 && asc == 0 && wid == 0; } Maybe better code        bool empty() const { return wid == 0 && asc == 0 && des == 0; } This is very embarrassing, but I am not sure that th

Re: LyX 2.3.2 Installer for Windows

2018-12-15 Thread Carlos Knauer
Thanks !! On Sat, Dec 15, 2018 at 8:20 PM Richard Kimberly Heck wrote: > The LyX 2.3.2 installer for Windows has now been released. It can be > found here: > > http://ftp.lyx.org/pub/lyx/bin/2.3.2/ > > > Public release of LyX version 2.3.2 > === > > We are pr

Re: LyX 2.3.2

2018-12-13 Thread Jean-Marc Lasgouttes
Le 12/12/2018 à 23:23, Richard Kimberly Heck a écrit : On 12/12/18 1:12 PM, Scott Kostyshak wrote: On Wed, Dec 12, 2018 at 11:45:39AM -0500, Richard Kimberly Heck wrote: On 10/28/18 10:10 PM, Richard Kimberly Heck wrote: On 10/28/18 5:25 PM, Jean-Marc Lasgouttes wrote: There are two regressio

Re: LyX 2.3.2

2018-12-12 Thread Scott Kostyshak
On Wed, Dec 12, 2018 at 05:23:04PM -0500, Richard Kimberly Heck wrote: > On 12/12/18 1:12 PM, Scott Kostyshak wrote: > > On Wed, Dec 12, 2018 at 11:45:39AM -0500, Richard Kimberly Heck wrote: > >> On 10/28/18 10:10 PM, Richard Kimberly Heck wrote: > >>> On 10/28/18 5:25 PM, Jean-Marc Lasgouttes wro

Re: LyX 2.3.2

2018-12-12 Thread Richard Kimberly Heck
On 12/12/18 1:12 PM, Scott Kostyshak wrote: > On Wed, Dec 12, 2018 at 11:45:39AM -0500, Richard Kimberly Heck wrote: >> On 10/28/18 10:10 PM, Richard Kimberly Heck wrote: >>> On 10/28/18 5:25 PM, Jean-Marc Lasgouttes wrote: There are two regressions in 2.3.1 that I know of: * bad display

Re: LyX 2.3.2

2018-12-12 Thread Scott Kostyshak
On Wed, Dec 12, 2018 at 11:45:39AM -0500, Richard Kimberly Heck wrote: > On 10/28/18 10:10 PM, Richard Kimberly Heck wrote: > > On 10/28/18 5:25 PM, Jean-Marc Lasgouttes wrote: > >> There are two regressions in 2.3.1 that I know of: > >> * bad display when splitting view and editing in second part.

Re: LyX 2.3.2

2018-12-12 Thread Richard Kimberly Heck
On 10/28/18 10:10 PM, Richard Kimberly Heck wrote: > On 10/28/18 5:25 PM, Jean-Marc Lasgouttes wrote: >> There are two regressions in 2.3.1 that I know of: >> * bad display when splitting view and editing in second part. > Bisect leads to 7b8b3e38a1b on this one. I'll guess that one (or more) > of

Re: LyX 2.3.2

2018-12-12 Thread Richard Kimberly Heck
On 10/29/18 1:05 AM, Richard Kimberly Heck wrote: > On 10/28/18 10:41 PM, Scott Kostyshak wrote: >> On Sun, Oct 28, 2018 at 09:03:50PM -0400, Richard Kimberly Heck wrote: >>> On 10/28/18 5:25 PM, Jean-Marc Lasgouttes wrote: Le 27/10/2018 à 19:19, Richard Kimberly Heck a écrit : > Now that

Re: LyX 2.3.2

2018-10-28 Thread Richard Kimberly Heck
On 10/28/18 10:41 PM, Scott Kostyshak wrote: > On Sun, Oct 28, 2018 at 09:03:50PM -0400, Richard Kimberly Heck wrote: >> On 10/28/18 5:25 PM, Jean-Marc Lasgouttes wrote: >>> Le 27/10/2018 à 19:19, Richard Kimberly Heck a écrit : Now that the server has been moved successfully, we can turn our

Re: LyX 2.3.2

2018-10-28 Thread Scott Kostyshak
On Sun, Oct 28, 2018 at 09:03:50PM -0400, Richard Kimberly Heck wrote: > On 10/28/18 5:25 PM, Jean-Marc Lasgouttes wrote: > > Le 27/10/2018 à 19:19, Richard Kimberly Heck a écrit : > >> Now that the server has been moved successfully, we can turn our > >> attention back to LyX 2.3.2. Please let me

Re: LyX 2.3.2

2018-10-28 Thread Richard Kimberly Heck
On 10/28/18 5:25 PM, Jean-Marc Lasgouttes wrote: > > There are two regressions in 2.3.1 that I know of: > * bad display when splitting view and editing in second part. Bisect leads to 7b8b3e38a1b on this one. I'll guess that one (or more) of the replacements of updateScreen with viewport->update f

Re: LyX 2.3.2

2018-10-28 Thread Richard Kimberly Heck
On 10/28/18 5:25 PM, Jean-Marc Lasgouttes wrote: > Le 27/10/2018 à 19:19, Richard Kimberly Heck a écrit : >> Now that the server has been moved successfully, we can turn our >> attention back to LyX 2.3.2. Please let me know by Monday if there are >> any patches that might change strings that need

Re: LyX 2.3.2

2018-10-28 Thread Jean-Marc Lasgouttes
Le 27/10/2018 à 19:19, Richard Kimberly Heck a écrit : Now that the server has been moved successfully, we can turn our attention back to LyX 2.3.2. Please let me know by Monday if there are any patches that might change strings that need to go to 2.3.2. The plan otherwise is to freeze strings Tu

Re: LyX 2.3.2

2018-10-28 Thread Richard Kimberly Heck
On 10/28/18 11:07 AM, Daniel wrote: > On 27/10/2018 23:33, Richard Kimberly Heck wrote: > >> Speaking of which: Have you tried to create a LyX 'package' from your >> builds? There is a "make package" command available under cmake, but I >> don't know if it works on Windows. I've got no idea, really

Re: LyX 2.3.2

2018-10-28 Thread Daniel
On 27/10/2018 23:33, Richard Kimberly Heck wrote: On 10/27/18 3:04 PM, Daniel wrote: On 27/10/2018 19:50, Richard Kimberly Heck wrote: On 10/27/18 1:45 PM, Daniel wrote: On 27/10/2018 19:19, Richard Kimberly Heck wrote: Now that the server has been moved successfully, we can turn our attentio

Re: LyX 2.3.2

2018-10-27 Thread Andrew Parsloe
On 28/10/2018 10:33 a.m., Richard Kimberly Heck wrote: On 10/27/18 3:04 PM, Daniel wrote: On 27/10/2018 19:50, Richard Kimberly Heck wrote: On 10/27/18 1:45 PM, Daniel wrote: On 27/10/2018 19:19, Richard Kimberly Heck wrote: Now that the server has been moved successfully, we can turn our att

Re: LyX 2.3.2

2018-10-27 Thread Richard Kimberly Heck
On 10/27/18 3:04 PM, Daniel wrote: > On 27/10/2018 19:50, Richard Kimberly Heck wrote: >> On 10/27/18 1:45 PM, Daniel wrote: >>> On 27/10/2018 19:19, Richard Kimberly Heck wrote: Now that the server has been moved successfully, we can turn our attention back to LyX 2.3.2. Please let me kn

Re: LyX 2.3.2

2018-10-27 Thread Daniel
On 27/10/2018 19:50, Richard Kimberly Heck wrote: On 10/27/18 1:45 PM, Daniel wrote: On 27/10/2018 19:19, Richard Kimberly Heck wrote: Now that the server has been moved successfully, we can turn our attention back to LyX 2.3.2. Please let me know by Monday if there are any patches that might c

Re: LyX 2.3.2

2018-10-27 Thread Richard Kimberly Heck
On 10/27/18 1:45 PM, Daniel wrote: > On 27/10/2018 19:19, Richard Kimberly Heck wrote: >> Now that the server has been moved successfully, we can turn our >> attention back to LyX 2.3.2. Please let me know by Monday if there are >> any patches that might change strings that need to go to 2.3.2. The

Re: LyX 2.3.2

2018-10-27 Thread Daniel
On 27/10/2018 19:19, Richard Kimberly Heck wrote: Now that the server has been moved successfully, we can turn our attention back to LyX 2.3.2. Please let me know by Monday if there are any patches that might change strings that need to go to 2.3.2. The plan otherwise is to freeze strings Tuesday

Re: [LyX/2.3.2-staging] status.23x: mention the new biblatex support in tex2lyx

2018-03-06 Thread Jürgen Spitzmüller
2018-03-06 13:52 GMT+01:00 Uwe Stöhr : > commit 150fb89e22742dcf1f61500b498bc9e7e2a7702c > Author: Uwe Stöhr > Date: Tue Mar 6 13:52:42 2018 +0100 > > status.23x: mention the new biblatex support in tex2lyx > I actually added an note (further down). There is no need to specify it more than

Re: [LyX/2.3.2-staging] * eu.po - update from Inaki.

2018-02-17 Thread Richard Heck
On 02/17/2018 01:22 PM, Pavel Sanda wrote: > Pavel Sanda wrote: >> commit f135013b3075f3e077f05b5fcc2bdc9e86825f4c >> Author: Pavel Sanda >> Date: Sat Feb 17 19:01:53 2018 +0100 >> >> * eu.po - update from Inaki. >> commit 2136af92b5b64f4488e765f52bf5a41d27106e9c >> Author: Pavel Sanda >> D

Re: [LyX/2.3.2-staging] * eu.po - update from Inaki.

2018-02-17 Thread Pavel Sanda
Pavel Sanda wrote: > commit f135013b3075f3e077f05b5fcc2bdc9e86825f4c > Author: Pavel Sanda > Date: Sat Feb 17 19:01:53 2018 +0100 > > * eu.po - update from Inaki. > commit 2136af92b5b64f4488e765f52bf5a41d27106e9c > Author: Pavel Sanda > Date: Sat Feb 17 19:07:02 2018 +0100 > > * la

Re: [LyX/2.3.2-staging] Oops, asInsetGrpahics is new to master.

2018-02-16 Thread Richard Heck
On 02/15/2018 03:48 PM, Pavel Sanda wrote: > commit 25741ca5bd2ff4c7eb55de0fabfa41bbf476c77e > Author: Pavel Sanda > Date: Thu Feb 15 21:48:23 2018 +0100 > > Oops, asInsetGrpahics is new to master. It would be fine to copy that into 2.3.2-staging. Richard