Re: [Lazarus] fixes_1_8 - DBLookupComboBox broken

2018-01-11 Thread Gabor Boros via Lazarus
2018. 01. 11. 12:22 keltezéssel, Werner Pamler via Lazarus írta: Am 11.01.2018 um 10:14 schrieb Gabor Boros via Lazarus: From my POV, unacceptable if a fix broke a feature in a fixes_* branch after x.y.0 version released from it. Sorry for the inconvenience. Call it "unacceptable" or not -

Re: [Lazarus] High-DPI TImageList

2018-01-11 Thread Ondrej Pokorny via Lazarus
I added Qt, Qt5 and Gtk2 support. I also rewrote the IDE ImageList editor to support multiple resolutions. Ondrej -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

Re: [Lazarus] fixes_1_8 - DBLookupComboBox broken

2018-01-11 Thread Werner Pamler via Lazarus
Am 11.01.2018 um 10:14 schrieb Gabor Boros via Lazarus: From my POV, unacceptable if a fix broke a feature in a fixes_* branch after x.y.0 version released from it. Sorry for the inconvenience. Call it "unacceptable" or not - that's the way things are, nobody is perfect. Please open

Re: [Lazarus] Recommended practices for Win / Linux development.

2018-01-11 Thread Mattias Gaertner via Lazarus
On Wed, 10 Jan 2018 19:16:25 -0500 Donald Ziesig via Lazarus wrote: > Hi Everyone! > > A long time ago, I tried to develop common software for Windows and > Linux.  I remember having problems keeping the object files, etc, > separated so that the two versions of

Re: [Lazarus] fixes_1_8 - DBLookupComboBox broken

2018-01-11 Thread Gabor Boros via Lazarus
2018. 01. 10. 21:57 keltezéssel, Werner Pamler via Lazarus írta: You did not assign a Datasource to the DBLookupCombo. This is where the value picked from the combo is stored to. Without a Datasource I consider the present hehavior to be correct. I use the DBLookupComboBox without DataSource

[Lazarus] Any tips to speed up Lazarus->GDB debugger?

2018-01-11 Thread Dennis via Lazarus
I am using Lazarus 1.8 Win64 , FPC 3.0.4. As with older versions, debugger is very slow (compared to Delphi). Is there any tricks I can use to speed up the debugger e.g. turn off debug info of all lazarus units/object files? I remember in Delphi 5, they had an option of whether to use Debug

Re: [Lazarus] Recommended practices for Win / Linux development.

2018-01-11 Thread Donald Ziesig via Lazarus
On 01/11/2018 03:21 AM, Mattias Gaertner via Lazarus wrote: On Wed, 10 Jan 2018 19:16:25 -0500 Donald Ziesig via Lazarus wrote: Hi Everyone! A long time ago, I tried to develop common software for Windows and Linux.  I remember having problems keeping the

Re: [Lazarus] Any tips to speed up Lazarus->GDB debugger?

2018-01-11 Thread Martin Frb via Lazarus
On 11/01/2018 15:13, Dennis via Lazarus wrote: I am using Lazarus 1.8 Win64 , FPC 3.0.4. As with older versions, debugger is very slow (compared to Delphi). Is there any tricks I can use to speed up the debugger e.g. turn off debug info of all lazarus units/object files? I remember in Delphi

Re: [Lazarus] Recommended practices for Win / Linux development.

2018-01-11 Thread Mattias Gaertner via Lazarus
On Thu, 11 Jan 2018 10:25:24 -0500 Donald Ziesig via Lazarus wrote: >[...] > How about Line Endings? Lazarus and FPC support LF, CRLF and CR. Mattias -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org

Re: [Lazarus] Any tips to speed up Lazarus->GDB debugger?

2018-01-11 Thread Martin Frb via Lazarus
On 11/01/2018 15:13, Dennis via Lazarus wrote: I remember in Delphi 5, they had an option of whether to use Debug dcu (of the main VCL units/objects files). Is there a similar switch I can use to disable debugger in all, except my own source code so as to speed up the debugger? To add to my

Re: [Lazarus] Recommended practices for Win / Linux development.

2018-01-11 Thread Denis Kozlov via Lazarus
On 11/01/2018 15:25, Donald Ziesig via Lazarus wrote: How about Line Endings? You can use system unit constants which will map to the appropriate values on each platform: System.LineEnding System.DirectorySeparator

Re: [Lazarus] IDE needs lexers JSON, XML

2018-01-11 Thread leledumbo via Lazarus
> IMO it's good to install JSON/XML syntaxes in IDE. many apps have res in such formats Isn't it already there? I don't remember, though, but my Lazarus has them already. -- Sent from: http://free-pascal-lazarus.989080.n3.nabble.com/ -- ___ Lazarus

Re: [Lazarus] fixes_1_8 - DBLookupComboBox broken

2018-01-11 Thread Michael Thompson via Lazarus
On 11 January 2018 at 19:22, Werner Pamler via Lazarus < lazarus@lists.lazarus-ide.org> wrote: > Please open "dblookupcombobox.inc" (in (lazarus)/lcl/include), find the > method TDBLookupCombobox.Select and replace it by the following code which > restores the code before r56990/r55911 for the

Re: [Lazarus] IDE needs lexers JSON, XML

2018-01-11 Thread Alexey via Lazarus
But I don’t see that IDE supports file filters for xml/json/ini, and seems that these 3 syntaxes not activated for files on editor. Text not colored. -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org

Re: [Lazarus] IDE needs lexers JSON, XML

2018-01-11 Thread AlexeyT via Lazarus
 Thank you, now i understand. Yes, xml/ini syntaxes work, only Im confused because ini default hiliting is all black (not nice colors for elements in def config). When I open an XML or INI file, the correct highlighters are picked up. Not for JSON, though. -- Regards, Alexey --

[Lazarus] IDE, XML syntax hiliting of

2018-01-11 Thread AlexeyT via Lazarus
It is not ok: brackets hilite with one color, inside text in another. In almost all text editors, this hilites as single token. -- Regards, Alexey -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org

Re: [Lazarus] Any tips to speed up Lazarus->GDB debugger?

2018-01-11 Thread Luca Olivetti via Lazarus
El 11/01/18 a les 18:45, Martin Frb via Lazarus ha escrit: On 11/01/2018 15:13, Dennis via Lazarus wrote: I remember in Delphi 5, they had an option of whether to use Debug dcu (of the main VCL units/objects files). Is there a similar switch I can use to disable debugger in all, except my

Re: [Lazarus] IDE needs lexers JSON, XML

2018-01-11 Thread Ondrej Pokorny via Lazarus
On 12.01.2018 12:53, Alexey via Lazarus wrote: But I don’t see that IDE supports file filters for xml/json/ini, and seems that these 3 syntaxes not activated for files on editor. Text not colored. XML and INI are supported directly, JSON is supported by JScript highlighter: When I open