Re: Time for 1.6 alpha?

2008-02-21 Thread Abdelrazak Younes
[EMAIL PROTECTED] wrote: On Thu, 21 Feb 2008, Abdelrazak Younes wrote: How about this as the second paragraph, might be to complicated though... In a week or two, the developers plan to release a first alpha version of LyX 1.6.0. This will be the first release in the coming 1.6-series, which

Re: Another assert

2008-02-21 Thread Martin Vermeer
On Thu, 21 Feb 2008 14:49:12 -0500 rgheck <[EMAIL PROTECTED]> wrote: > Abdelrazak Younes wrote: > > Richard Heck wrote: > >> Richard Heck wrote: > >>> José Matos wrote: > After Richard fix I get an assertion. > > > >>> The problem is that lcolor.getX11Name(Color_shadedbg), on >

Re: Time for 1.6 alpha?

2008-02-21 Thread christian . ridderstrom
On Thu, 21 Feb 2008, Abdelrazak Younes wrote: How about this as the second paragraph, might be to complicated though... In a week or two, the developers plan to release a first alpha version of LyX 1.6.0. This will be the first release in the coming 1.6-series, which as usual include changes t

Re: Words set in Buffer

2008-02-21 Thread Abdelrazak Younes
Stefan Schimanski wrote: As I see this here now: this it_ was a first start to improve the performance of the (long-)words set in the Buffer. This is used to store the long words for the completion popup. Now the problem are these requirements: 1. the semantics of a set, i.e. every item sho

Re: Another assert

2008-02-21 Thread Abdelrazak Younes
rgheck wrote: Jean-Marc Lasgouttes wrote: Andre Poenitz <[EMAIL PROTECTED]> writes: I personally don't have a problem with hex numbers for colors. But I have no strong opinion on the whole subject. That would not be a bad solution. Is there some easy way to tell in svn who put th

Crash Related to Completion?

2008-02-21 Thread rgheck
Pavel Sanda wrote: Well, the set is a sorted container by definition, see here: you are right. still i feel there is something strange in set[i] operation :) The completion popup accesses this containter in a random access way. Though probably it would be enough to speed up the first

Re: Another assert

2008-02-21 Thread rgheck
Jean-Marc Lasgouttes wrote: Andre Poenitz <[EMAIL PROTECTED]> writes: I personally don't have a problem with hex numbers for colors. But I have no strong opinion on the whole subject. That would not be a bad solution. Is there some easy way to tell in svn who put this code there?

Re: Words set in Buffer

2008-02-21 Thread Pavel Sanda
> Well, the set is a sorted container by definition, see here: you are right. still i feel there is something strange in set[i] operation :) > The completion popup accesses this containter in a random access way. > Though probably it would be enough to speed up the first access (e.g. for > the

Re: Words set in Buffer

2008-02-21 Thread Stefan Schimanski
Am 22.02.2008 um 00:56 schrieb Pavel Sanda: easy. But 2 is not supported as far as I could see. Without knowing the implementation details, I wonder why. It wouldn't be hard to put "counters" into the nodes of the red-black-tree, which count the number of children. But it seems this is no

Re: Words set in Buffer

2008-02-21 Thread Pavel Sanda
> easy. But 2 is not supported as far as I could see. Without knowing the > implementation details, I wonder why. It wouldn't be hard to put "counters" > into the nodes of the red-black-tree, which count the number of children. > But it seems this is not implemented. why it should be supported

Re: Revision 23104

2008-02-21 Thread Stefan Schimanski
See my other mail on the list about exactly this problem. The set is not the right containter, but vector isn't either... Let's wait for some conclusion before optimising for the trash here. Well, add 'no additional includes if they are not absolutely needed' to your set of requirements the

Re: Revision 23104

2008-02-21 Thread Andre Poenitz
On Fri, Feb 22, 2008 at 12:35:16AM +0100, Stefan Schimanski wrote: > > Am 22.02.2008 um 00:33 schrieb Andre Poenitz: > >> On Fri, Feb 22, 2008 at 12:27:15AM +0100, Stefan Schimanski wrote: >>> I return a const pointer now. The shared pointer is not really essential >>> here because the ownership is

Re: Revision 23104

2008-02-21 Thread Stefan Schimanski
Am 22.02.2008 um 00:33 schrieb Andre Poenitz: On Fri, Feb 22, 2008 at 12:27:15AM +0100, Stefan Schimanski wrote: I return a const pointer now. The shared pointer is not really essential here because the ownership is clear enough. Better. The deque does not have to appear in the header eit

Re: Revision 23104

2008-02-21 Thread Andre Poenitz
On Fri, Feb 22, 2008 at 12:27:15AM +0100, Stefan Schimanski wrote: > I return a const pointer now. The shared pointer is not really essential > here because the ownership is clear enough. Better. The deque does not have to appear in the header either, it's private static data anyway... And I ju

Re: Revision 23104

2008-02-21 Thread Stefan Schimanski
Am 22.02.2008 um 00:24 schrieb Andre Poenitz: On Fri, Feb 22, 2008 at 12:17:38AM +0100, Stefan Schimanski wrote: Am 22.02.2008 um 00:13 schrieb Andre Poenitz: Stefan, it might be a bit late in the game, but having #include that you added in revision 23104 in Inset.h is not acceptable.

Re: Revision 23104

2008-02-21 Thread Andre Poenitz
On Fri, Feb 22, 2008 at 12:17:38AM +0100, Stefan Schimanski wrote: > > Am 22.02.2008 um 00:13 schrieb Andre Poenitz: > >> >> Stefan, >> >> it might be a bit late in the game, but having #include >> >> that you added in revision 23104 in Inset.h is not acceptable. This adds >> more than 17000 line

Re: User interface language preference

2008-02-21 Thread Joost Verburg
Abdelrazak Younes wrote: FYI, I implemented just that before 1.5.0 and part of the code is still there commented out. Unfortunately, it was rejected then for the very same reason as now. I too think this option would be useful. One use case I can think of besides the other you already cited:

Re: Revision 23104

2008-02-21 Thread Stefan Schimanski
Am 22.02.2008 um 00:13 schrieb Andre Poenitz: Stefan, it might be a bit late in the game, but having #include shared_ptr.hpp> that you added in revision 23104 in Inset.h is not acceptable. This adds more than 17000 lines to each compilation unit where it was not used before (and quite a bi

Simplified notifyCursorLeaves

2008-02-21 Thread Stefan Schimanski
Hi! I propose this patch to simplify the notifyCursorLeaves mechanism, which is mainly used to implement the removal of empty script insets in mathed. The current problem is that the calls to the notifyCursorLeaves loop, which calls the method for the left insets, are spread all over the

Revision 23104

2008-02-21 Thread Andre Poenitz
Stefan, it might be a bit late in the game, but having #include that you added in revision 23104 in Inset.h is not acceptable. This adds more than 17000 lines to each compilation unit where it was not used before (and quite a bit did not, but Inset.h is #included by almost everything) Andre'

Re: LyX and Qt4.4 - bug 4568 (was Re: Cannot compile trunk)

2008-02-21 Thread Pavel Sanda
>> i guess there will be more transitional problems wrt 4.4 (rc1 here). >> GuiApplication.cpp: In member function 'void >> lyx::frontend::GuiApplication::commitData(QSessionManager&)': >> GuiApplication.cpp:552: error: invalid use of undefined type 'struct >> QSessionManager' > > #include is mis

Words set in Buffer

2008-02-21 Thread Stefan Schimanski
Modified: lyx-devel/trunk/src/insets/InsetText.cpp URL: http://www.lyx.org/trac/file/lyx-devel/trunk/src/insets/InsetText.cpp?rev=23113 = = = = = = = = == --- lyx-devel/trunk/src/insets/InsetText.cpp (original) +++ lyx-devel/tru

Re: Warnings for Pavel

2008-02-21 Thread Pavel Sanda
> I purposely left RC_VISUAL_CURSOR out of this function, because something > is fishy about it. AFAICT, this function doesn't do anything... JMarc took > a look and I think he also wasn't sure about it... So before just fixing > the warnings, we ought to try and figure out what this function *s

Re: Warnings for Pavel

2008-02-21 Thread Dov Feldstern
Richard Heck wrote: LyXFunc.cpp: In function 'void lyxactOnUpdatedPrefs(const lyx::LyXRC&, const lyx::LyXRC&)': LyXFunc.cpp:1885: warning: enumeration value 'RC_FULL_SCREEN_LIMIT' not handled in switch LyXFunc.cpp:1885: warning: enumeration value 'RC_FULL_SCREEN_SCROLLBAR' not handled in sw

Re: Trunk compile errors

2008-02-21 Thread Abdelrazak Younes
Pavel Sanda wrote: Linking... CutAndPaste.obj : error LNK2019: unresolved external symbol "public: bool __thiscall lyx::InsetCollapsable::undefined(void)const " ([EMAIL PROTECTED]@lyx@@QBE_NXZ) referenced in function "void __cdecl lyx::cap::switchBetweenClasses(class boost::shared_ptrlyx::Text

Re: Trunk compile errors

2008-02-21 Thread Pavel Sanda
> Linking... > CutAndPaste.obj : error LNK2019: unresolved external symbol "public: bool > __thiscall lyx::InsetCollapsable::undefined(void)const " > ([EMAIL PROTECTED]@lyx@@QBE_NXZ) referenced in function "void > __cdecl lyx::cap::switchBetweenClasses(class boost::shared_ptr lyx::TextClass> con

Trunk compile errors

2008-02-21 Thread Abdelrazak Younes
..\..\..\..\src\insets\InsetText.cpp(71) : error C2664: 'std::_Tree<_Traits>::iterator::iterator(std::_Tree_nod<_Traits>::_Node *,const std::_Tree<_Traits> *)' : cannot convert parameter 1 from 'std::_Tree<_Traits>::const_iterator' to 'std::_Tree_nod<_Traits>::_Node *' with [ _

Re: Another assert

2008-02-21 Thread Jean-Marc Lasgouttes
Andre Poenitz <[EMAIL PROTECTED]> writes: > I personally don't have a problem with hex numbers for colors. But I > have no strong opinion on the whole subject. That would not be a bad solution. JMarc

Re: LyX development statistics

2008-02-21 Thread Andre Poenitz
On Thu, Feb 21, 2008 at 09:28:24PM +0100, Stefan Schimanski wrote: > If you like statistics about LyX: > > http://www.ohloh.net/projects/3881?p=LyX What a pile of mis-information. "Over the entire history of the project, 34 developers have contributed." Well, lib/CREDITS lists 146 contributors.

Re: [Cvslog] r23110 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-21 Thread Stefan Schimanski
Am 21.02.2008 um 21:59 schrieb Andre Poenitz: On Thu, Feb 21, 2008 at 08:04:19PM -, [EMAIL PROTECTED] wrote: Author: rgheck Date: Thu Feb 21 21:04:17 2008 New Revision: 23110 URL: http://www.lyx.org/trac/changeset/23110 Log: Cosmetics. And silence some warnings. Modified: lyx-devel/tr

Re: [Cvslog] r23110 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-21 Thread Andre Poenitz
On Thu, Feb 21, 2008 at 08:04:19PM -, [EMAIL PROTECTED] wrote: > Author: rgheck > Date: Thu Feb 21 21:04:17 2008 > New Revision: 23110 > > URL: http://www.lyx.org/trac/changeset/23110 > Log: > Cosmetics. And silence some warnings. > > Modified: > lyx-devel/trunk/src/frontends/qt4/GuiCompl

Re: r23068 - /lyx-devel/trunk/src/BufferView.cpp

2008-02-21 Thread Enrico Forestieri
On Thu, Feb 21, 2008 at 10:26:37AM +0100, Abdelrazak Younes wrote: > Pavel Sanda wrote: > >>> Then, this is going to be most annoying. Consider that I am skimming > >>> through a document and an element is off screen. Then, if I try to > >>> enlarge the window to see it, I am brought back to the cu

Re: Another assert

2008-02-21 Thread Andre Poenitz
On Thu, Feb 21, 2008 at 02:49:12PM -0500, rgheck wrote: > Abdelrazak Younes wrote: >> Richard Heck wrote: >>> Richard Heck wrote: José Matos wrote: > After Richard fix I get an assertion. > > The problem is that lcolor.getX11Name(Color_shadedbg), on LaTeXFeatures line

LyX development statistics

2008-02-21 Thread Stefan Schimanski
If you like statistics about LyX: http://www.ohloh.net/projects/3881?p=LyX Stefan

Re: InsetCollapsable Problem [WAS: Crash in trunk related to layout, InsetSpace or SpecialChar]

2008-02-21 Thread Abdelrazak Younes
rgheck wrote: Andre Poenitz wrote: On Thu, Feb 21, 2008 at 11:32:28AM -0500, rgheck wrote: Andre Poenitz wrote: On Wed, Feb 20, 2008 at 03:08:03PM -0500, Richard Heck wrote: Index: insets/InsetLayout.h === --- inset

Re: LyX and Qt4.4 - bug 4568 (was Re: Cannot compile trunk)

2008-02-21 Thread Abdelrazak Younes
Pavel Sanda wrote: Or 4.4's ;-} It seems we have a bug there: http://bugzilla.lyx.org/show_bug.cgi?id=4568 Could somebody have a look? i guess there will be more transitional problems wrt 4.4 (rc1 here). GuiApplication.cpp: In member function 'void lyx::frontend::GuiApplication::commitData

Re: r23084 - in /lyx-devel/trunk/src: LyXAction.cpp LyXFunc.c...

2008-02-21 Thread Abdelrazak Younes
Pavel Sanda wrote: Pavel Sanda wrote: Pavel Sanda wrote: Yes, the left one is for 'minimizing the buffer' or in other words 'closing the tab without closing the buffer'. We need another icon for it, any artist up there? The right button is the 'close buffer' one, unchanged. The associated i

[Fwd: About Japanese edition LyX 1.5.3 for Windows OS IWAMI]

2008-02-21 Thread Abdelrazak Younes
Hi there, Don't know if you remember Mr Iwami, he's the one who helped us implement input methods for CJK. It seems that he has prepared a special edition for Windows Japonese users. He asks us if we could send the announcement and put it on the web site too. I think this is fair and it will

Re: Another assert

2008-02-21 Thread rgheck
Abdelrazak Younes wrote: Richard Heck wrote: Richard Heck wrote: José Matos wrote: After Richard fix I get an assertion. The problem is that lcolor.getX11Name(Color_shadedbg), on LaTeXFeatures line 636, is returning "red". I'll look to see why this is, but maybe someone else knows? Th

Re: Mathed completion popup

2008-02-21 Thread Stefan Schimanski
Commited. Please report any problems with it. Thanks Stefan Am 21.02.2008 um 16:40 schrieb Stefan Schimanski: Am 21.02.2008 um 16:18 schrieb Abdelrazak Younes: Stefan Schimanski wrote: there are 2 problems in this: firstly this cause much more disturbing spaces of text begining in case

Re: InsetCollapsable Problem [WAS: Crash in trunk related to layout, InsetSpace or SpecialChar]

2008-02-21 Thread rgheck
Andre Poenitz wrote: On Thu, Feb 21, 2008 at 11:32:28AM -0500, rgheck wrote: Andre Poenitz wrote: On Wed, Feb 20, 2008 at 03:08:03PM -0500, Richard Heck wrote: Index: insets/InsetLayout.h === --- insets/InsetLayo

Re: InsetCollapsable Problem [WAS: Crash in trunk related to layout, InsetSpace or SpecialChar]

2008-02-21 Thread Andre Poenitz
On Thu, Feb 21, 2008 at 11:32:28AM -0500, rgheck wrote: > Andre Poenitz wrote: >> On Wed, Feb 20, 2008 at 03:08:03PM -0500, Richard Heck wrote: >> >>> Index: insets/InsetLayout.h >>> === >>> --- insets/InsetLayout.h(revision 230

Re: InsetCollapsable Problem [WAS: Crash in trunk related to layout, InsetSpace or SpecialChar]

2008-02-21 Thread rgheck
Andre Poenitz wrote: On Wed, Feb 20, 2008 at 03:08:03PM -0500, Richard Heck wrote: Index: insets/InsetLayout.h === --- insets/InsetLayout.h(revision 23079) +++ insets/InsetLayout.h(working copy) @@ -23,6 +23,12 @@

Re: LyX and Qt4.4 - bug 4568 (was Re: Cannot compile trunk)

2008-02-21 Thread Pavel Sanda
>> Or 4.4's ;-} > > It seems we have a bug there: > > http://bugzilla.lyx.org/show_bug.cgi?id=4568 > > Could somebody have a look? i guess there will be more transitional problems wrt 4.4 (rc1 here). GuiApplication.cpp: In member function 'void lyx::frontend::GuiApplication::commitData(QSessionM

Re: Mathed completion popup

2008-02-21 Thread Stefan Schimanski
Am 21.02.2008 um 16:18 schrieb Abdelrazak Younes: Stefan Schimanski wrote: there are 2 problems in this: firstly this cause much more disturbing spaces of text begining in case no icon is available, secondly images are not the same width as you have already written. Maybe we can use a sp

Re: r23084 - in /lyx-devel/trunk/src: LyXAction.cpp LyXFunc.c...

2008-02-21 Thread Pavel Sanda
> Pavel Sanda wrote: >>> Pavel Sanda wrote: > Yes, the left one is for 'minimizing the buffer' or in other words > 'closing the tab without closing the buffer'. We need another icon for > it, any artist up there? > > The right button is the 'close buffer' one, unchanged. The a

Re: Mathed completion popup

2008-02-21 Thread Abdelrazak Younes
Edwin Leuven wrote: Abdelrazak Younes wrote: The first alpha is coming soon... hurry up! ;-) why not annouce an official freeze next week for example to give people like stefan (and tommaso perhaps) some time to commit their stuff? That would be sensible indeed. Abdel.

Re: Mathed completion popup

2008-02-21 Thread Edwin Leuven
Abdelrazak Younes wrote: The first alpha is coming soon... hurry up! ;-) why not annouce an official freeze next week for example to give people like stefan (and tommaso perhaps) some time to commit their stuff?

Re: Mathed completion popup

2008-02-21 Thread Abdelrazak Younes
Stefan Schimanski wrote: there are 2 problems in this: firstly this cause much more disturbing spaces of text begining in case no icon is available, secondly images are not the same width as you have already written. Maybe we can use a space-holder icon, and scale others to the same size? Sol

Re: Mathed completion popup

2008-02-21 Thread Stefan Schimanski
there are 2 problems in this: firstly this cause much more disturbing spaces of text begining in case no icon is available, secondly images are not the same width as you have already written. Maybe we can use a space-holder icon, and scale others to the same size? Solved it already. With a t

Re: postats.py

2008-02-21 Thread José Matos
On Wednesday 20 February 2008 17:23:43 Juergen Spitzmueller wrote: > José Matos wrote: > > Does it works now? > > Yes. Please commit to branch as well. Done. > Jürgen -- José Abílio

Re: r23084 - in /lyx-devel/trunk/src: LyXAction.cpp LyXFunc.c...

2008-02-21 Thread Abdelrazak Younes
Pavel Sanda wrote: Pavel Sanda wrote: Yes, the left one is for 'minimizing the buffer' or in other words 'closing the tab without closing the buffer'. We need another icon for it, any artist up there? The right button is the 'close buffer' one, unchanged. The associated icon should be rename

Re: r23084 - in /lyx-devel/trunk/src: LyXAction.cpp LyXFunc.c...

2008-02-21 Thread Pavel Sanda
> Pavel Sanda wrote: >>> Yes, the left one is for 'minimizing the buffer' or in other words >>> 'closing the tab without closing the buffer'. We need another icon for >>> it, any artist up there? >>> >>> The right button is the 'close buffer' one, unchanged. The associated >>> icon should be ren

Re: r23084 - in /lyx-devel/trunk/src: LyXAction.cpp LyXFunc.c...

2008-02-21 Thread Abdelrazak Younes
Abdelrazak Younes wrote: Pavel Sanda wrote: as i played with this... how can be the split view brought back into unsplit? Not possible right now because the tab bar and thus the close buttons are hidden. Either we disable the tabbar hiding or we need a new LFUN to destroy the current TabWork

Re: Mathed completion popup

2008-02-21 Thread Bo Peng
> there are 2 problems in this: firstly this cause much more disturbing > spaces of text begining in case no icon is available, secondly images > are not the same width as you have already written. Maybe we can use a space-holder icon, and scale others to the same size? Bo

Re: r23084 - in /lyx-devel/trunk/src: LyXAction.cpp LyXFunc.c...

2008-02-21 Thread Abdelrazak Younes
Pavel Sanda wrote: Yes, the left one is for 'minimizing the buffer' or in other words 'closing the tab without closing the buffer'. We need another icon for it, any artist up there? The right button is the 'close buffer' one, unchanged. The associated icon should be renamed to closebuffer.png

Re: r23068 - /lyx-devel/trunk/src/BufferView.cpp

2008-02-21 Thread Pavel Sanda
> This bug is reproducible even without resizing: > 1. scroll a bit so that the cursor is not visible anymore > 2. hit the keyboard arrow keys to move the cursor or type something ouch. p

Re: r23084 - in /lyx-devel/trunk/src: LyXAction.cpp LyXFunc.c...

2008-02-21 Thread Pavel Sanda
> Yes, the left one is for 'minimizing the buffer' or in other words 'closing > the tab without closing the buffer'. We need another icon for it, any > artist up there? > > The right button is the 'close buffer' one, unchanged. The associated icon > should be renamed to closebuffer.png though.

Re: r23068 - /lyx-devel/trunk/src/BufferView.cpp

2008-02-21 Thread Abdelrazak Younes
Pavel Sanda wrote: i'm sorry Abdel, but your polishment brought the old bugs back :( 1. srollbar is not correct after resize (as Enrico noted, its not a serious bug, no problem if remain this way) Are you sure? For me it works correctly... weird. maybe you just need the right recipe. 1. o

Re: r23068 - /lyx-devel/trunk/src/BufferView.cpp

2008-02-21 Thread Pavel Sanda
>> i'm sorry Abdel, but your polishment brought the old bugs back :( >> 1. srollbar is not correct after resize (as Enrico noted, its not a >> serious bug, >>no problem if remain this way) > > Are you sure? For me it works correctly... weird. maybe you just need the right recipe. 1. open docu

Re: r23084 - in /lyx-devel/trunk/src: LyXAction.cpp LyXFunc.c...

2008-02-21 Thread Abdelrazak Younes
Pavel Sanda wrote: Juergen Spitzmueller wrote: [EMAIL PROTECTED] wrote: Introducing LFUN_SPLIT_VIEW Nice! Do you plan to support horizontal splitting as well? Should be easy yes (by adding an "horizontal" argument). But first we need some more controls of tabs. In particular we need a 'mini

Re: r23068 - /lyx-devel/trunk/src/BufferView.cpp

2008-02-21 Thread Abdelrazak Younes
Pavel Sanda wrote: Then, this is going to be most annoying. Consider that I am skimming through a document and an element is off screen. Then, if I try to enlarge the window to see it, I am brought back to the cursor location? Just tried it. It is really unbearable. I strongly suggest to revert

Re: r23084 - in /lyx-devel/trunk/src: LyXAction.cpp LyXFunc.c...

2008-02-21 Thread Pavel Sanda
> Juergen Spitzmueller wrote: >> [EMAIL PROTECTED] wrote: >>> Introducing LFUN_SPLIT_VIEW >> Nice! >> Do you plan to support horizontal splitting as well? > > Should be easy yes (by adding an "horizontal" argument). > > But first we need some more controls of tabs. In particular we need a > 'minim

Re: r23068 - /lyx-devel/trunk/src/BufferView.cpp

2008-02-21 Thread Pavel Sanda
Then, this is going to be most annoying. Consider that I am skimming through a document and an element is off screen. Then, if I try to enlarge the window to see it, I am brought back to the cursor location? >>> Just tried it. It is really unbearable. I strongly suggest to >>> revert

Re: Time for 1.6 alpha?

2008-02-21 Thread Abdelrazak Younes
Abdelrazak Younes wrote: José Matos wrote: On Thursday 21 February 2008 12:35:24 Juergen Spitzmueller wrote: Hm, are you sure about that? I agree with Jürgen, and I agree with Abdel (note that _probably_). :-) There is no need to be so specific about the number of expected releases. Tha

Re: Time for 1.6 alpha?

2008-02-21 Thread Juergen Spitzmueller
José Matos wrote: >> Hm, are you sure about that? > > I agree with Jürgen, and I agree with Abdel (note that _probably_). Yes, but this will raise expectations ;-) Anyway, I'll put in something. Jürgen

Re: Time for 1.6 alpha?

2008-02-21 Thread Abdelrazak Younes
José Matos wrote: On Thursday 21 February 2008 12:35:24 Juergen Spitzmueller wrote: Hm, are you sure about that? I agree with Jürgen, and I agree with Abdel (note that _probably_). :-) There is no need to be so specific about the number of expected releases. That will free us to release

Re: Time for 1.6 alpha?

2008-02-21 Thread Abdelrazak Younes
José Matos wrote: On Thursday 21 February 2008 12:35:24 Juergen Spitzmueller wrote: Hm, are you sure about that? I agree with Jürgen, and I agree with Abdel (note that _probably_). :-) There is no need to be so specific about the number of expected releases. That will free us to release

Re: Time for 1.6 alpha?

2008-02-21 Thread José Matos
On Thursday 21 February 2008 12:35:24 Juergen Spitzmueller wrote: > Hm, are you sure about that? I agree with Jürgen, and I agree with Abdel (note that _probably_). :-) There is no need to be so specific about the number of expected releases. That will free us to release when deemed necessar

Re: Time for 1.6 alpha?

2008-02-21 Thread Abdelrazak Younes
Juergen Spitzmueller wrote: Abdelrazak Younes wrote: This is probably going to be the penultimate 1.5.x release before LyX 1.6.0 Hm, are you sure about that? No, hence the 'probably' :-) Abdel.

Re: Time for 1.6 alpha?

2008-02-21 Thread Juergen Spitzmueller
Abdelrazak Younes wrote: > This is probably going to be the penultimate 1.5.x release before LyX > 1.6.0 Hm, are you sure about that? Jürgen

Re: Time for 1.6 alpha?

2008-02-21 Thread Abdelrazak Younes
Juergen Spitzmueller wrote: Abdelrazak Younes wrote: So maybe we could say something about it in the 1.5.4 announcement? write something and I'll include it. We are pleased to announce the release of LyX 1.5.4. This is a maintenance release that further improves the stability and the perf

Re: Time for 1.6 alpha?

2008-02-21 Thread Juergen Spitzmueller
Abdelrazak Younes wrote: > So maybe we could say something about it in the 1.5.4 announcement? write something and I'll include it. Jürgen

Re: Time for 1.6 alpha?

2008-02-21 Thread Abdelrazak Younes
José Matos wrote: In order not to disturb the normal flow I propose to set a release date of one week after 1.5.4. The rationale is both technical and PR (public relations) related. So maybe we could say something about it in the 1.5.4 announcement? Abdel.

Re: Time for 1.6 alpha?

2008-02-21 Thread José Matos
On Thursday 21 February 2008 10:51:59 Abdelrazak Younes wrote: > We have a problem with Qt4.4 snapshot apparently (bug 4568) but do we > care? I tend to think not. I suggest that we don't care for alpha. For beta OTHO... > Abdel. -- José Abílio

Re: Time for 1.6 alpha?

2008-02-21 Thread Abdelrazak Younes
José Matos wrote: On Thursday 21 February 2008 08:13:25 Abdelrazak Younes wrote: 1.6 development introduced 26 bugs (until further bugs are added of course): http://tinyurl.com/2ppsjo I use trunk for a few months already and I reckon that it is more than ready for an alpha release. Jose? I

Re: Time for 1.6 alpha?

2008-02-21 Thread José Matos
On Thursday 21 February 2008 08:13:25 Abdelrazak Younes wrote: > 1.6 development introduced 26 bugs (until further bugs are added of > course): > > http://tinyurl.com/2ppsjo > > I use trunk for a few months already and I reckon that it is more than > ready for an alpha release. Jose? I agree. No

Re: r23084 - in /lyx-devel/trunk/src: LyXAction.cpp LyXFunc.c...

2008-02-21 Thread Abdelrazak Younes
Juergen Spitzmueller wrote: [EMAIL PROTECTED] wrote: Introducing LFUN_SPLIT_VIEW Nice! Do you plan to support horizontal splitting as well? Should be easy yes (by adding an "horizontal" argument). But first we need some more controls of tabs. In particular we need a 'minimize' button alon

Re: r23084 - in /lyx-devel/trunk/src: LyXAction.cpp LyXFunc.c...

2008-02-21 Thread Juergen Spitzmueller
[EMAIL PROTECTED] wrote: > Introducing LFUN_SPLIT_VIEW Nice! Do you plan to support horizontal splitting as well? Jürgen

Re: r23068 - /lyx-devel/trunk/src/BufferView.cpp

2008-02-21 Thread Pavel Sanda
> a bit with it and I must say that the gitk history browsing is bloody try qgit, its more comfortable i would say. anyway, once you get into depths of git log & blame parameters you forget about ui... its much more speedy thing compared to any clicking once you get accustomed. pavel

Re: r23068 - /lyx-devel/trunk/src/BufferView.cpp

2008-02-21 Thread Abdelrazak Younes
Pavel Sanda wrote: Then, this is going to be most annoying. Consider that I am skimming through a document and an element is off screen. Then, if I try to enlarge the window to see it, I am brought back to the cursor location? Just tried it. It is really unbearable. I strongly suggest to revert

Re: Cannot compile trunk

2008-02-21 Thread Pavel Sanda
>> I am not sure where this comes from... > > This is Pavel using Qt4.3' designer. Just open PrefUi.ui in Qt4.2' designer > and save it. > > Pavel, please use Qt4.2 designer in the future. arrgh i locally compiled Qt4.2 for that reason here. i even changed the directory to ~/designer/qt-x11-open

Re: r23068 - /lyx-devel/trunk/src/BufferView.cpp

2008-02-21 Thread Pavel Sanda
> > Then, this is going to be most annoying. Consider that I am skimming > > through a document and an element is off screen. Then, if I try to > > enlarge the window to see it, I am brought back to the cursor location? > > Just tried it. It is really unbearable. I strongly suggest to > revert the

Re: Mathed completion popup

2008-02-21 Thread Pavel Sanda
> > i see. imho images should be after text, so all text items are aligned to > > the left > > border. > > It would be better if images have the same size, and be kept to the > left. This can avoid irregular spaces after short symbol names. there are 2 problems in this: firstly this cause much

Time for 1.6 alpha?

2008-02-21 Thread Abdelrazak Younes
1.6 development introduced 26 bugs (until further bugs are added of course): http://tinyurl.com/2ppsjo I use trunk for a few months already and I reckon that it is more than ready for an alpha release. Jose? Abdel.

LyX and Qt4.4 - bug 4568 (was Re: Cannot compile trunk)

2008-02-21 Thread Abdelrazak Younes
Andre Poenitz wrote: On Wed, Feb 20, 2008 at 12:24:07PM +0100, Abdelrazak Younes wrote: Pavel, please use Qt4.2 designer in the future. Or 4.4's ;-} It seems we have a bug there: http://bugzilla.lyx.org/show_bug.cgi?id=4568 Could somebody have a look? Abdel.