Re: Form is function

2015-10-11 Thread Guillaume Munch
Le 11/10/2015 12:19, Liviu Andronic a écrit : This way .x targets are indicative of the relative recent nature of the bug, which is still useful info. It is useful to know if a bug is recent, but we already have the bug # and often the version, no? I think that Guillaumes proposal to

Re: Moving towards a 2.2 release

2015-10-10 Thread Guillaume Munch
Le 10/10/2015 05:01, Scott Kostyshak a écrit : 1. Do you agree that the master branch is stable and that we should move soon towards releasing an alpha? I saw a couple of reports of crashes that could not be reproduced (Guillaume, I think you had one recently? [1]), but these seem to be the

Re: IBus compatibility

2015-10-10 Thread Guillaume Munch
Le 29/09/2015 02:23, Guillaume Munch a écrit : The bug <http://www.lyx.org/trac/ticket/9362> causes the keyboard to malfunction and consistently causes deadlocks with data loss. I've finally narrowed down the issue to the fact that LyX is currently incompatible with IBus and in particul

Form is function (was: Removing 2.2.0 milestone (as opposed to changing to 2.3.0))

2015-10-10 Thread Guillaume Munch
Le 10/10/2015 22:51, Scott Kostyshak a écrit : I am going to start removing many 2.2.0 milestones if it seems unlikely the bugs will be fixed for 2.2.0 (i.e. no one has said they are working on them). If I remember correctly, there was some discussion on this and most LyX developers prefer this

Re: Moving towards a 2.2 release

2015-10-10 Thread Guillaume Munch
Le 10/10/2015 23:25, Scott Kostyshak a écrit : On Sat, Oct 10, 2015 at 07:50:59PM +0100, Guillaume Munch wrote: http://www.lyx.org/trac/ticket/9362 : the problem has been quite precisely identified, a decision has to be taken. Even if it is just "let's warn the users". Can

Re: UTF-8 in string literals and translation strings in particular

2015-10-08 Thread Guillaume Munch
Please, do not scatter the messages that much, and make the discussion easy to follow. Recalling the subject of the discussion: Le 08/10/2015 01:55, Cyrille Artho a écrit : Why not apply a variant of that hack as using "sed" to all the language/menu strings in the repository? Of course the

Re: segmentation fault, lyx2.2.0dev @ Fedora 23 with Qt 5.5.0

2015-10-08 Thread Guillaume Munch
Le 06/10/2015 15:41, PhilipPirrip a écrit : Thanks, Kornel. I'll check these later. I went back in time, September 28 18:13 commit 39343d65af worked. Moving forward, will let you know when things went bad and send you the backtrace. Dear Philip, I cannot reproduce it with my own

Re: segmentation fault, lyx2.2.0dev @ Fedora 23 with Qt 5.5.0

2015-10-08 Thread Guillaume Munch
Le 08/10/2015 15:27, PhilipPirrip a écrit : Dear Guillaume, I finished my search for the bug yesterday, by checking out a few suspicious commits in the last 30 days, and to my great surprise even the latest commit worked. I really don't know what happened. I had it all built in a separate

Re: UTF-8 in string literals and translation strings in particular

2015-10-08 Thread Guillaume Munch
Le 08/10/2015 16:46, Kornel Benko a écrit : Am Donnerstag, 8. Oktober 2015 um 16:14:49, schrieb Stephan Witt I think the idea was to let the translators do it manually where it is appropriate. And to do it for english this way too. I think that too. I did it for sk.po, it

Re: UTF-8 in string literals and translation strings in particular

2015-10-08 Thread Guillaume Munch
Le 08/10/2015 14:45, Jean-Marc Lasgouttes a écrit : I will reply only to some of the arguments for the sake of efficiency. As we usually say, I lacked the time to make it shorter... The problem with the patch is that it does not have a clear goal. The discussion would have been much easier

Re: UTF-8 in string literals and translation strings in particular

2015-10-08 Thread Guillaume Munch
Le 08/10/2015 22:11, Georg Baum a écrit : Jean-Marc Lasgouttes wrote: The problem with the patch is that it does not have a clear goal. The discussion would have been much easier if you had splitted it in 3 from the start: 1/ easy use of utf8 in docstring 2/ allow utf8 in translattable

Re: segmentation fault, lyx2.2.0dev @ Fedora 23 with Qt 5.5.0

2015-10-06 Thread Guillaume Munch
Le 06/10/2015 15:29, Kornel Benko a écrit : Hi Kornel, I could send it if I knew how. Sorry, have no experience with that, but willing to learn! # gdb lyx Or as I learnt recently, to properly see the symbols (you'll have to compile with the various devel options ON though): #

Re: UTF-8 in string literals and translation strings in particular

2015-10-06 Thread Guillaume Munch
Le 06/10/2015 18:28, Jean-Marc Lasgouttes a écrit : For the docstring part of the code, I am not sure what code like the following do: -LASSERT(static_cast(*c) < 0x80, return l); -s.push_back(*c); +if (static_cast(*c) < 0x80) +s.push_back(*c); +else +return s +=

Re: UTF-8 in string literals and translation strings in particular

2015-10-06 Thread Guillaume Munch
Le 06/10/2015 18:28, Jean-Marc Lasgouttes a écrit : Le 06/10/2015 18:38, Guillaume Munch a écrit : I'm trying to come up with examples where do we actually "need" unicode in the interface. The ellipsis case seems to be trivial indeed. Is it trivial? On my ubuntu libreoffice (w

Re: UTF-8 in string literals and translation strings in particular

2015-10-06 Thread Guillaume Munch
Le 06/10/2015 20:03, Guillaume Munch a écrit : Le 06/10/2015 18:28, Jean-Marc Lasgouttes a écrit : For the docstring part of the code, I am not sure what code like the following do: -LASSERT(static_cast(*c) < 0x80, return l); -s.push_back(*c); +if (static_cast(*c) <

Re: UTF-8 in string literals and translation strings in particular

2015-10-06 Thread Guillaume Munch
Le 06/10/2015 21:01, Pavel Sanda a écrit : Guillaume Munch wrote: Seriously, I think this is just going to annoy our translators. Seriously :) as described in the rationale of my patch, this cannot be more transparent for translators. Gettext pre-sets the previous translation; translators

Re: UTF-8 in string literals and translation strings in particular

2015-10-06 Thread Guillaume Munch
Le 06/10/2015 17:13, Pavel Sanda a écrit : Guillaume Munch wrote: Le 04/10/2015 23:20, Guillaume Munch a écrit : Dear list, Has there been some discussion already about allowing UTF-8 in the source code, in particular for translatable strings? Is this something we long for? Guillaume

Re: [LyX/master] Fix compilation with MSVC in c++98 mode

2015-10-05 Thread Guillaume Munch
Le 05/10/2015 00:56, Uwe Stöhr a écrit : Am 01.10.2015 um 23:10 schrieb Guillaume Munch: commit 39343d65af804d83803b16557b624f3cc024cc21 Author: Guillaume Munch <g...@lyx.org> Date: Mon Sep 28 18:13:19 2015 +0100 Fix compilation with MSVC in c++98 mode Hello Guillaume, w

Re: LyX on high resolution displays

2015-10-05 Thread Guillaume Munch
Le 05/10/2015 12:38, PhilipPirrip a écrit : Hi, It is pretty bad that 2.2 is slower than 2.1. Could you share your lorem ipsum document? JMarc Hi JMarc, It was a plain text lorem ipsum copied from the web to a text editor and then to LyX, nothing special about it. It had paragraphs of some

Re: UTF-8 in string literals and translation strings in particular

2015-10-05 Thread Guillaume Munch
Le 04/10/2015 23:20, Guillaume Munch a écrit : Dear list, Has there been some discussion already about allowing UTF-8 in the source code, in particular for translatable strings? Is this something we long for? Guillaume Seeing how there is unanimous interest, here's a proof of concept

UTF-8 in string literals and translation strings in particular

2015-10-04 Thread Guillaume Munch
Deal list, Has there been some discussion already about allowing UTF-8 in the source code, in particular for translatable strings? Is this something we long for? Guillaume

Re: Understanding the painting process (André, Abdel, Lars, please read)

2015-10-02 Thread Guillaume Munch
Le 02/10/2015 14:38, Jean-Marc Lasgouttes a écrit : Hello, Hello After a gentle push by Guillaume and a boring meeting, I decided to actually read the code that handles metrics computing and contents drawing. The result is the document below, which is available in

Re: Update on the patches

2015-10-01 Thread Guillaume Munch
Le 01/10/2015 00:43, Pavel Sanda a écrit : Jean-Marc Lasgouttes wrote: Le 15/09/2015 17:54, Guillaume Munch a écrit : I can remove more irrelevant parts and do that, but before that I am hoping to get some better configuration if anybody else is using emacs. BSD is just close to your style

Re: 2 compilation errors with current master

2015-10-01 Thread Guillaume Munch
Le 30/09/2015 17:18, Jean-Marc Lasgouttes a écrit : Le 30/09/2015 18:08, Guillaume Munch a écrit : Surely more difficult than my patch. Also it's pointless spending too much effort since support/shared_ptr.h will disappear in 2.3. Yes, but I dislike solutions that require to check compiler

Re: [PATCH] Improvements to cursor highlighting in the source panel

2015-10-01 Thread Guillaume Munch
Le 30/09/2015 13:20, Jean-Marc Lasgouttes a écrit : Le 28/09/2015 19:51, Guillaume Munch a écrit : Then it would make my life easier in improving TexRow to support such argument insets because the latex error reporting is more precise. Also, this could just be an option which would be enabled

Re: #9759: "List of figures" navigation menu is not convenient

2015-10-01 Thread Guillaume Munch
Le 28/09/2015 19:56, Jürgen Spitzmüller a écrit : Am Montag 28 September 2015, 04:11:37 schrieb Guillaume Munch: The attached patch includes the above features along with other enhancements like a symbol that indicates disabled entries. (See description.) OK to commit? Looks very good. Thanks

Re: 2 compilation errors with current master

2015-09-30 Thread Guillaume Munch
Le 30/09/2015 15:53, Jean-Marc Lasgouttes a écrit : Le 28/09/2015 19:11, Guillaume Munch a écrit : What about using explicitely lyx::make_shared in the TocBackend code? Doesn't it solve the ambiguity? Yes, I can accept this solution given that we won't have to support c++98 for very long

Re: 2 compilation errors with current master

2015-09-28 Thread Guillaume Munch
Le 28/09/2015 16:32, Jean-Marc Lasgouttes a écrit : Le 21/09/2015 00:40, Guillaume Munch a écrit : Can you please test the attached patch and report if it fixes the compilation in c++98 mode? (with up-to-date master) What about using explicitely lyx::make_shared in the TocBackend code

Re: [PATCH] Improvements to cursor highlighting in the source panel

2015-09-28 Thread Guillaume Munch
Le 28/09/2015 09:31, Jean-Marc Lasgouttes a écrit : Le 28/09/2015 09:32, Guillaume Munch a écrit : What do you think of the attached? For testing, the most obvious difference is the cursor tracking in the source panel which will now work inside insets. Otherwise see the description. From

[PATCH] Improvements to cursor highlighting in the source panel

2015-09-28 Thread Guillaume Munch
What do you think of the attached? For testing, the most obvious difference is the cursor tracking in the source panel which will now work inside insets. Otherwise see the description. Guillaume >From 7d3cbee52845ca3b96f98d2253d3d033cc6b933b Mon Sep 17 00:00:00 2001 From: Guillaume Munch

IBus compatibility

2015-09-28 Thread Guillaume Munch
The bug causes the keyboard to malfunction and consistently causes deadlocks with data loss. I've finally narrowed down the issue to the fact that LyX is currently incompatible with IBus and in particular its asynchronous mode. The setting is stable &

Re: Update on the patches

2015-09-27 Thread Guillaume Munch
Le 13/09/2015 22:28, Richard Heck a écrit : On 09/12/2015 09:31 PM, Guillaume Munch wrote: <http://www.lyx.org/trac/ticket/9364> MathData::updateMacros() breaks text selection and search/replace : I believe that these two calls to clearSelection() are not (or no longer) useful. I am very

Re: 2 compilation errors with current master

2015-09-27 Thread Guillaume Munch
Le 20/09/2015 23:40, Guillaume Munch a écrit : Le 20/09/2015 17:05, Uwe Stöhr a écrit : I get 2 compilation errors with current master: ..\..\src\TocBackend.cpp(191): error C2668: 'boost::make_shared': ambiguous call of an overloaded function [D:\LyXGit\Master\compile-result\src\LyX.vcxproj

Re: #9759: "List of figures" navigation menu is not convenient

2015-09-27 Thread Guillaume Munch
Le 18/09/2015 16:06, Cyrille Artho a écrit : Jürgen Spitzmüller wrote: 2015-09-18 2:37 GMT+02:00 Guillaume Munch <g...@lyx.org <mailto:g...@lyx.org>>: And in fact, I'd also like to navigate there directly. > > Navigation would be analoguous to sections tha

Re: Update on the patches

2015-09-27 Thread Guillaume Munch
Le 28/09/2015 04:31, Guillaume Munch a écrit : Le 13/09/2015 22:28, Richard Heck a écrit : On 09/12/2015 09:31 PM, Guillaume Munch wrote: <http://www.lyx.org/trac/ticket/9364> MathData::updateMacros() breaks text selection and search/replace : I believe that these two calls to clearSel

Re: LyX2.2 build fails on OS X

2015-09-25 Thread Guillaume Munch
Le 25/09/2015 13:21, Jean-Marc Lasgouttes a écrit : I removed support for concept checks. They do not seems to be very useful these days. Thanks for the fix.

Re: LyX2.2 build fails on OS X

2015-09-24 Thread Guillaume Munch
Le 23/09/2015 21:21, Stephan Witt a écrit : Am 21.09.2015 um 07:54 schrieb Stephan Witt <st.w...@gmx.net>: Am 21.09.2015 um 02:35 schrieb Guillaume Munch <g...@lyx.org>: Le 21/09/2015 02:12, Guillaume Munch a écrit : Le 20/09/2015 20:06, Georg Baum a écrit : Jürgen Spitzmüller

Re: LyX2.2 build fails on OS X

2015-09-20 Thread Guillaume Munch
Le 21/09/2015 02:12, Guillaume Munch a écrit : Le 20/09/2015 20:06, Georg Baum a écrit : Jürgen Spitzmüller wrote: Am Sonntag 20 September 2015, 18:43:33 schrieb Guillaume Munch: I understand that there are two separate issues: - There are errors looking like Uwe's if one uses --disable

Re: 2 compilation errors with current master

2015-09-20 Thread Guillaume Munch
Le 20/09/2015 17:05, Uwe Stöhr a écrit : I get 2 compilation errors with current master: ..\..\src\TocBackend.cpp(191): error C2668: 'boost::make_shared': ambiguous call of an overloaded function [D:\LyXGit\Master\compile-result\src\LyX.vcxproj] ..\..\src\TocBackend.cpp(191): error C2228:

Re: LyX2.2 build fails on OS X

2015-09-20 Thread Guillaume Munch
Le 20/09/2015 20:06, Georg Baum a écrit : Jürgen Spitzmüller wrote: Am Sonntag 20 September 2015, 18:43:33 schrieb Guillaume Munch: I understand that there are two separate issues: - There are errors looking like Uwe's if one uses --disable-cxx11, probably due to my latest patches. I

Re: 2 compilation errors with current master

2015-09-20 Thread Guillaume Munch
Le 20/09/2015 17:05, Uwe Stöhr a écrit : I get 2 compilation errors with current master: ..\..\src\TocBackend.cpp(191): error C2668: 'boost::make_shared': ambiguous call of an overloaded function [D:\LyXGit\Master\compile-result\src\LyX.vcxproj] ..\..\src\TocBackend.cpp(191): error C2228:

Re: LyX2.2 build fails on OS X

2015-09-20 Thread Guillaume Munch
Le 20/09/2015 14:40, pdv a écrit : Hi, As of commit 9b7ccbf (the introduction of class InsetCaptionable) building LyX2.2 fails on OS X (with XCode and with autotools). This is the error message:

Re: LyX2.2 build fails on OS X

2015-09-20 Thread Guillaume Munch
Le 20/09/2015 18:29, Jürgen Spitzmüller a écrit : Am Sonntag 20 September 2015, 18:08:38 schrieb Jürgen Spitzmüller: I have not explicitly disabled c++11, and it seems to use it: Configuration Host type: i686-pc-linux-gnu Special build flags: build=development warnings

Re: LyX2.2 build fails on OS X

2015-09-20 Thread Guillaume Munch
Le 20/09/2015 14:49, Jürgen Spitzmüller a écrit : Master fails to compile for me as well, this is on openSuse 13.1 with gcc- Version 4.8.3 20140627 [gcc-4_8-branch revision 212064] (SUSE Linux) and autotools: make[6]: Entering directory '/home/juergen/lyx/lyx-devel/src/frontends/qt4' CXX

Re: Bug with nested braces in mathed

2015-09-17 Thread Guillaume Munch
Le 17/09/2015 06:06, Andrew Parsloe a écrit : LyX doesn't handle nested braces correctly. In a maths inset write { {1234 } } so that the outer pair of braces contains a single argument. Now save and close the document, then reopen it and the maths inset will contain { 1234 } i.e. 4 tokens rather

Re: #9759: "List of figures" navigation menu is not convenient

2015-09-17 Thread Guillaume Munch
Sorry for the formatting issues, I don't know what happened. From http://www.lyx.org/trac/ticket/9759 : #9759: "List of figures" navigation menu is not convenient -+ Reporter: gadmm| Owner: gadmm Type: defect | Status:

Re: #9759: "List of figures" navigation menu is not convenient

2015-09-17 Thread Guillaume Munch
From http://www.lyx.org/trac/ticket/9759 : Le 16/09/2015 09:06, LyX Ticket Tracker a écrit : #9759: "List of figures" navigation menu is not convenient > -+ Reporter: gadmm > | Owner: gadmm Type: defect | Status: fixedinmaster >

Re: Update on the patches

2015-09-15 Thread Guillaume Munch
Le 14/09/2015 09:03, Jean-Marc Lasgouttes a écrit : Le 14/09/2015 02:22, Guillaume Munch a écrit : One thing that would have helped was to have emacs configuration files with the correct coding style that you use. For instance my .emacs now reads (omitting irrelevant parts): Such information

Re: LyX on high resolution displays

2015-09-15 Thread Guillaume Munch
Le 14/09/2015 09:04, Jean-Marc Lasgouttes a écrit : Le 14/09/2015 03:34, Guillaume Munch a écrit : For the record, if Scott's indication on using CMake is not suitable, I had to ./configure in Ubuntu as follows: ./configure --enable-qt5 --with-qt-dir=/usr/lib/x86_64-linux-gnu/qt5 --with-qt

Re: Update on the patches

2015-09-15 Thread Guillaume Munch
Le 14/09/2015 08:53, Jean-Marc Lasgouttes a écrit : * Where should I commit po files? I vaguely remember reading somewhere that these should be against stable, do I remember correctly and in that case is it better to commit to master at the same time? In general the po files of master are

Re: How to compile LyX in Win64?

2015-09-15 Thread Guillaume Munch
Le 14/09/2015 09:17, Pål Næverlid Sævik a écrit : But, of course, there are always features I would like included and certain improvements that I can envision. I know c++ pretty well, and am curious if I would be able to make some contributions to the source code. But I have never participated

Re: Update on the patches

2015-09-15 Thread Guillaume Munch
Le 14/09/2015 23:39, Richard Heck a écrit : On 09/13/2015 10:09 PM, Guillaume Munch wrote: Le 13/09/2015 22:28, Richard Heck a écrit : On 09/12/2015 09:31 PM, Guillaume Munch wrote: * I would like to discuss another set of patches that makes it convenient to navigate within floats: see <h

Re: Update on the patches

2015-09-14 Thread Guillaume Munch
Le 14/09/2015 05:04, Scott Kostyshak a écrit : On Mon, Sep 14, 2015 at 03:42:15AM +0100, Guillaume Munch wrote: Le 14/09/2015 03:17, Scott Kostyshak a écrit : put a link to the lyx-devel message on the trac ticket. How do you find this link? Well, I just do [a and mutt copies it to my

Re: LyX on high resolution displays

2015-09-13 Thread Guillaume Munch
Le 14/09/2015 00:34, PhilipPirrip a écrit : On 09/13/2015 06:02 PM, Scott Kostyshak wrote: Ah it seemes that Qt 5 is needed in order to take advantage of the commits. see http://www.lyx.org/trac/ticket/9130#comment:15 I would warn that you should use Qt 5.5 as using previous versions caused

Re: Update on the patches

2015-09-13 Thread Guillaume Munch
Le 14/09/2015 03:17, Scott Kostyshak a écrit : put a link to the lyx-devel message on the trac ticket. How do you find this link?

Re: Update on the patches

2015-09-13 Thread Guillaume Munch
Le 13/09/2015 21:52, Richard Heck a écrit : On 09/12/2015 10:19 PM, Scott Kostyshak wrote: On Sun, Sep 13, 2015 at 02:31:27AM +0100, Guillaume Munch wrote: I've pushed the patches that we discussed. First of all, congrats on your push! I am now enjoying the improvements you just committed

Re: Update on the patches

2015-09-13 Thread Guillaume Munch
Le 13/09/2015 12:55, Georg Baum a écrit : Guillaume Munch wrote: * Where should I commit po files? I vaguely remember reading somewhere that these should be against stable, do I remember correctly and in that case is it better to commit to master at the same time? Note that you do not need

Re: Update on the patches

2015-09-13 Thread Guillaume Munch
Le 14/09/2015 01:00, Scott Kostyshak a écrit : On Mon, Sep 14, 2015 at 12:39:38AM +0100, Guillaume Munch wrote: Le 13/09/2015 12:55, Georg Baum a écrit : Guillaume Munch wrote: * Where should I commit po files? I vaguely remember reading somewhere that these should be against stable, do I

Re: Update on the patches

2015-09-13 Thread Guillaume Munch
Le 14/09/2015 01:22, Guillaume Munch a écrit : and the .dir-locals.el reads: ((nil . ((indent-tabs-mode . t) (tab-width . 4) (fill-column . 80))) (c-mode . ((c-file-style . "BSD") (c-basic-offset . 4) (c-set-style . "bsd")

Re: Update on the patches

2015-09-13 Thread Guillaume Munch
Le 13/09/2015 22:28, Richard Heck a écrit : On 09/12/2015 09:31 PM, Guillaume Munch wrote: * I would like to discuss another set of patches that makes it convenient to navigate within floats: see <http://www.lyx.org/trac/ticket/9759>. To test the patch please compare the behaviour,

Update on the patches

2015-09-12 Thread Guillaume Munch
Dear list, I've pushed the patches that we discussed. * f3008c30 and 4d1ad336 are suitable for stable. Shall I commit them? * Am I responsible for updating the release notes? If so, do all the little bug fixes have to be mentioned? * Where should I commit po files? I vaguely remember

Re: Update on the patches

2015-09-12 Thread Guillaume Munch
Le 13/09/2015 03:19, Scott Kostyshak a écrit : On Sun, Sep 13, 2015 at 02:31:27AM +0100, Guillaume Munch wrote: Dear list, I've pushed the patches that we discussed. First of all, congrats on your push! I am now enjoying the improvements you just committed and I am looking forward to your

Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)

2015-09-10 Thread Guillaume Munch
Le 10/09/2015 16:17, Jean-Marc Lasgouttes a écrit : Le 05/09/15 00:42, Guillaume Munch a écrit : In any case I uploaded the final version of these patches here : <http://www.lyx.org/trac/ticket/6501> Who can review/commit those patches? I am not competent in GUI stuff. Just

Re: [RFC] Fun with newlines

2015-09-04 Thread Guillaume Munch
Le 31/08/2015 13:23, Jean-Marc Lasgouttes a écrit : Le 28/08/2015 19:25, Guillaume Munch a écrit : First, thank you, it sure looks better than hand-drawn lines. Have you considered the following characters: ⮐ U+2B90 RETURN LEFT ⮑ U+2B91 RETURN RIGHT ⮒ U+2B92 NEWLINE LEFT ⮓ U+2B93 NEWLINE RIGHT

Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)

2015-09-04 Thread Guillaume Munch
shak <skost...@lyx.org> He deserves it IMHO. I agree. But I think, he already got commit rights, see commit d88e40158912e0205d2aaf21abbc9de7a6addbfc Author: Guillaume Munch <ga...@free.fr> Date: Mon Aug 24 21:05:48 2015 +0200 Fix compil

Re: #9743: Display trouble with \overrightarrow and superscripts

2015-08-29 Thread Guillaume Munch
and the development versions of LyX. Thank you for your original report. Best regards Guillaume Munch

Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)

2015-08-29 Thread Guillaume Munch
Le 29/08/2015 15:14, Kornel Benko a écrit : Am Donnerstag, 27. August 2015 um 01:42:12, schrieb Guillaume Munch ga...@free.fr Dear list, Here are all my patches to the View Source panel including the ones from a preview thread with QTimers. This is for the latest master and it compiles

Re: #9743: Display trouble with \overrightarrow and superscripts

2015-08-29 Thread Guillaume Munch
n the stable and the development versions of LyX. Thank you for your original report. Best regards Guillaume Munch

Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)

2015-08-29 Thread Guillaume Munch
Le 29/08/2015 15:14, Kornel Benko a écrit : Am Donnerstag, 27. August 2015 um 01:42:12, schrieb Guillaume Munch <ga...@free.fr> Dear list, Here are all my patches to the View Source panel including the ones from a preview thread with QTimers. This is for the latest master and it co

Re: [RFC] Fun with newlines

2015-08-28 Thread Guillaume Munch
Le 28/08/2015 09:42, Jean-Marc Lasgouttes a écrit : Le 22/07/2015 12:05, Jean-Marc Lasgouttes a écrit : Now for something different... I have been annoyed by the looks of InsetNewLine for some time now. The following patch replaces the horrible hand-made arrow with a nice Unicode character.

Re: [RFC] Fun with newlines

2015-08-28 Thread Guillaume Munch
Le 28/08/2015 09:42, Jean-Marc Lasgouttes a écrit : Le 22/07/2015 12:05, Jean-Marc Lasgouttes a écrit : Now for something different... I have been annoyed by the looks of InsetNewLine for some time now. The following patch replaces the horrible hand-made arrow with a nice Unicode character.

Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)

2015-08-26 Thread Guillaume Munch
Dear list, Here are all my patches to the View Source panel including the ones from a preview thread with QTimers. This is for the latest master and it compiles without --enable-cxx11. Anybody curious can test the patches (please) and make suggestions while it is still on the stove. See

Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)

2015-08-26 Thread Guillaume Munch
Le 27/08/2015 02:12, Scott Kostyshak a écrit : On Wed, Aug 26, 2015 at 8:42 PM, Guillaume Munch ga...@free.fr wrote: Anybody curious can test the patches (please) and make suggestions while it is still on the stove. See more detail about the changes in the commit messages. I look forward

Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)

2015-08-26 Thread Guillaume Munch
Dear list, Here are all my patches to the View Source panel including the ones from a preview thread with QTimers. This is for the latest master and it compiles without --enable-cxx11. Anybody curious can test the patches (please) and make suggestions while it is still on the stove. See

Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)

2015-08-26 Thread Guillaume Munch
Le 27/08/2015 02:12, Scott Kostyshak a écrit : On Wed, Aug 26, 2015 at 8:42 PM, Guillaume Munch <ga...@free.fr> wrote: Anybody curious can test the patches (please) and make suggestions while it is still on the stove. See more detail about the changes in the commit messages. I look f

Re: [LyX/master] Improve math-mode lfun for switching to text

2015-08-23 Thread Guillaume Munch
Le 23/08/2015 14:06, Scott Kostyshak a écrit : On Sun, Aug 23, 2015 at 5:14 AM, Georg Baum b...@lyx.org wrote: commit 27f067dd9d2da4bff679e2b0493a5723d406e1a6 Author: Guillaume Munch ga...@free.fr Date: Sun Aug 23 11:10:05 2015 +0200 Improve math-mode lfun for switching to text

Re: New problems with copy and paste?

2015-08-23 Thread Guillaume Munch
Le 14/08/2015 21:28, aparsloe a écrit : Given an enumerated list, say, ... 29. foo food footling 30. bar bard barking selecting a word in an item, say bard in the example, and pasting it into a new paragraph elsewhere starts a new list, so one gets 1. bard. Is this expected behaviour --

Re: New problems with copy and paste?

2015-08-23 Thread Guillaume Munch
Le 14/08/2015 21:28, aparsloe a écrit : Given an enumerated list, say, ... 29. foo food footling 30. bar bard barking selecting a word in an item, say "bard" in the example, and pasting it into a new paragraph elsewhere starts a new list, so one gets "1. bard". Is this expected behaviour

Re: [LyX/master] Improve math-mode lfun for switching to text

2015-08-23 Thread Guillaume Munch
Le 23/08/2015 14:06, Scott Kostyshak a écrit : On Sun, Aug 23, 2015 at 5:14 AM, Georg Baum <b...@lyx.org> wrote: commit 27f067dd9d2da4bff679e2b0493a5723d406e1a6 Author: Guillaume Munch <ga...@free.fr> Date: Sun Aug 23 11:10:05 2015 +0200 Improve math-mode lfun for switc

[PATCH] fix various accelerators

2015-08-21 Thread Guillaume Munch
Please accept the following accelerator fixes in .po files: * One finishes to implement Jürgen's 3bb588f4 which fixes #9495. * The other fixes conflicting accelerators in fr.po (e.g. _Rechercher _Remplacer ...) Guillaume From c1f314cf9951f31379ca6c86d066d40004570d84 Mon Sep 17 00:00:00

#9362

2015-08-21 Thread Guillaume Munch
Dear list, I have been trying to isolate a very strange input bug here: http://www.lyx.org/trac/ticket/9362. I made tests with various versions of LyX and Qt and I have been unable to locate which software is responsible for the bug so far and I am running out of ideas. (More details on the

Re: [PATCH] minor improvements to mathed

2015-08-21 Thread Guillaume Munch
Le 20/08/2015 20:39, Georg Baum a écrit : Richard Heck wrote: On 08/19/2015 06:35 PM, Guillaume Munch wrote: These patch are also up to date and both can be applied to stable as well. OK. Whoever applies them to master please also apply to stable. I can do that, but I could not find

Re: [PATCH] minor improvements to mathed

2015-08-21 Thread Guillaume Munch
Le 20/08/2015 20:39, Georg Baum a écrit : Richard Heck wrote: On 08/19/2015 06:35 PM, Guillaume Munch wrote: These patch are also up to date and both can be applied to stable as well. OK. Whoever applies them to master please also apply to stable. I can do that, but I could not find

#9362

2015-08-21 Thread Guillaume Munch
Dear list, I have been trying to isolate a very strange input bug here: . I made tests with various versions of LyX and Qt and I have been unable to locate which software is responsible for the bug so far and I am running out of ideas. (More details on

[PATCH] fix various accelerators

2015-08-21 Thread Guillaume Munch
Please accept the following accelerator fixes in .po files: * One finishes to implement Jürgen's 3bb588f4 which fixes #9495. * The other fixes conflicting accelerators in fr.po (e.g. _Rechercher & _Remplacer ...) Guillaume >From c1f314cf9951f31379ca6c86d066d40004570d84 Mon Sep 17 00:00:00

Re: Guillaume's pending patches

2015-08-19 Thread Guillaume Munch
Thank you Scott. Le 19/08/2015 03:12, Scott Kostyshak a écrit : Guillaume has various patches for bug fixes in several places that have been waiting around a bit. I do not know enough about the code that the patches touch in order to review them. However, I can test the patches and confirm that

Re: [PATCH] minor improvements to mathed

2015-08-19 Thread Guillaume Munch
Le 19/08/2015 21:34, Georg Baum a écrit : Richard Heck wrote: On 08/01/2015 06:34 AM, Guillaume Munch wrote: Here are again two very small patches if you agree. 1. Add \ensuremath to the list of math completions. This is certainly fine. 2. math-mode inserts \text instead of \mbox when

Re: [PATCH] \{ and \% now correctly use the selection as their argument instead of erasing it (bug #6466)

2015-08-19 Thread Guillaume Munch
Le 19/08/2015 20:55, Georg Baum a écrit : Richard Heck wrote: On 08/03/2015 09:32 AM, Guillaume Munch wrote: Le 31/07/2015 17:05, Guillaume Munch a écrit : \{ and \% now correctly use the selection as their argument instead of erasing it. Solves http://www.lyx.org/trac/ticket/6466. Please

Re: [PATCH] \{ and \% now correctly use the selection as their argument instead of erasing it (bug #6466)

2015-08-19 Thread Guillaume Munch
Le 19/08/2015 21:28, Georg Baum a écrit : Guillaume Munch wrote: Le 31/07/2015 23:08, Scott Kostyshak a écrit : On Fri, Jul 31, 2015 at 12:05 PM, Guillaume Munch ga...@free.fr wrote: \{ and \% now correctly use the selection as their argument instead of erasing it. Solves http://www.lyx.org

Re: Guillaume's pending patches

2015-08-19 Thread Guillaume Munch
Thank you Scott. Le 19/08/2015 03:12, Scott Kostyshak a écrit : Guillaume has various patches for bug fixes in several places that have been waiting around a bit. I do not know enough about the code that the patches touch in order to review them. However, I can test the patches and confirm that

Re: [PATCH] \{ and \% now correctly use the selection as their argument instead of erasing it (bug #6466)

2015-08-19 Thread Guillaume Munch
Le 19/08/2015 20:55, Georg Baum a écrit : Richard Heck wrote: On 08/03/2015 09:32 AM, Guillaume Munch wrote: Le 31/07/2015 17:05, Guillaume Munch a écrit : \{ and \% now correctly use the selection as their argument instead of erasing it. Solves <http://www.lyx.org/trac/ticket/6466>.

Re: [PATCH] minor improvements to mathed

2015-08-19 Thread Guillaume Munch
Le 19/08/2015 21:34, Georg Baum a écrit : Richard Heck wrote: On 08/01/2015 06:34 AM, Guillaume Munch wrote: Here are again two very small patches if you agree. 1. Add \ensuremath to the list of math completions. This is certainly fine. 2. math-mode inserts \text instead of \mbox when

Re: [PATCH] \{ and \% now correctly use the selection as their argument instead of erasing it (bug #6466)

2015-08-19 Thread Guillaume Munch
Le 19/08/2015 21:28, Georg Baum a écrit : Guillaume Munch wrote: Le 31/07/2015 23:08, Scott Kostyshak a écrit : On Fri, Jul 31, 2015 at 12:05 PM, Guillaume Munch <ga...@free.fr> wrote: \{ and \% now correctly use the selection as their argument instead of erasing it. Solves

Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)

2015-08-14 Thread Guillaume Munch
got rid of that in 2.2. JMarc Le 8 août 2015 23:21:18 UTC+02:00, Guillaume Munch ga...@free.fr a écrit : Cher Jean-Marc, Ce que je retiens de ma lecture du manuel de Boost::Move est qu'il ne peut pas y avoir de rétroportage complètement transparent de unique_ptr (ils semblent pourtant avoir

Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)

2015-08-14 Thread Guillaume Munch
got rid of that in 2.2. JMarc Le 8 août 2015 23:21:18 UTC+02:00, Guillaume Munch <ga...@free.fr> a écrit : Cher Jean-Marc, Ce que je retiens de ma lecture du manuel de Boost::Move est qu'il ne peut pas y avoir de rétroportage complètement transparent de unique_ptr (ils semblent pourtant

Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)

2015-08-06 Thread Guillaume Munch
Le 06/08/2015 22:44, Jean-Marc Lasgouttes a écrit : Le 5 août 2015 03:18:37 UTC+02:00, Guillaume Munch ga...@free.fr a écrit : Hello, Here is a patch that I would like to discuss. It brings some improvements to the source view panel and it fixes http://www.lyx.org/trac/ticket/6501 (Cursor

Re: [PATCH] \{ and \% now correctly use the selection as their argument instead of erasing it (bug #6466)

2015-08-06 Thread Guillaume Munch
Le 05/08/2015 14:39, Richard Heck a écrit : On 08/03/2015 09:32 AM, Guillaume Munch wrote: Le 31/07/2015 17:05, Guillaume Munch a écrit : \{ and \% now correctly use the selection as their argument instead of erasing it. Solves http://www.lyx.org/trac/ticket/6466. Please criticise

Re: [PATCH] minor improvements to mathed

2015-08-06 Thread Guillaume Munch
Le 05/08/2015 14:38, Richard Heck a écrit : On 08/01/2015 06:34 AM, Guillaume Munch wrote: Here are again two very small patches if you agree. 1. Add \ensuremath to the list of math completions. This is certainly fine. 2. math-mode inserts \text instead of \mbox when already in math mode

Re: [PATCH] minor improvements to mathed

2015-08-06 Thread Guillaume Munch
Le 05/08/2015 14:38, Richard Heck a écrit : On 08/01/2015 06:34 AM, Guillaume Munch wrote: Here are again two very small patches if you agree. 1. Add \ensuremath to the list of math completions. This is certainly fine. 2. math-mode inserts \text instead of \mbox when already in math mode

Re: [PATCH] \{ and \% now correctly use the selection as their argument instead of erasing it (bug #6466)

2015-08-06 Thread Guillaume Munch
Le 05/08/2015 14:39, Richard Heck a écrit : On 08/03/2015 09:32 AM, Guillaume Munch wrote: Le 31/07/2015 17:05, Guillaume Munch a écrit : \{ and \% now correctly use the selection as their argument instead of erasing it. Solves <http://www.lyx.org/trac/ticket/6466>. Please cri

<    4   5   6   7   8   9   10   >