From bo.berglund at gmail.com Mon Apr 1 00:09:29 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Sun, 31 Mar 2019 18:09:29 -0400 Subject: [Lazarus] Setting a groupbox caption bold? Message-ID: I have a configuration setting form where I have used group boxes to collect properties that belong together. But the groupbox border is not really well defined so I would like to be able to augment the form visually by setting the caption of the group boxes to bold. But I find no such property for the group box... Is there a way or am I out of luck? Using Lazarus 2.0.0 with fpc 3.0.4 x64 on Windows 7 x64. Compiling as 64 bit binaries. -- Bo Berglund Developer in Sweden From werner.pamler at freenet.de Mon Apr 1 00:42:45 2019 From: werner.pamler at freenet.de (Werner Pamler) Date: Mon, 1 Apr 2019 00:42:45 +0200 Subject: [Lazarus] Setting a groupbox caption bold? In-Reply-To: References: Message-ID: Am 01.04.2019 um 00:09 schrieb Bo Berglund via lazarus: > I have a configuration setting form where I have used group boxes to > collect properties that belong together. > But the groupbox border is not really well defined so I would like to > be able to augment the form visually by setting the caption of the > group boxes to bold. > But I find no such property for the group box... > > Is there a way or am I out of luck? I use this code for TGroupbox, TRadiogroup and TCheckGroup: procedure BoldGroup(AControl: TWinControl); var   i: Integer;   propinfo: PPropInfo;   cntrl: TControl;   fnt: TFont; begin   for i:=0 to AControl.ControlCount-1 do begin     cntrl := AControl.Controls[i];     propinfo := GetPropInfo(cntrl, 'ParentFont');     if propinfo <> nil then       SetOrdProp(cntrl, propinfo, Longint(false));     propinfo := GetPropInfo(cntrl, 'Font');     if propinfo <> nil then begin       fnt := TFont(GetObjectProp(cntrl, 'Font'));       fnt.Style := [];       SetObjectProp(cntrl, 'Font', fnt);     end;   end;   AControl.Font.Style := [fsBold]; From andrea.mauri.75 at gmail.com Mon Apr 1 13:08:30 2019 From: andrea.mauri.75 at gmail.com (Andrea Mauri) Date: Mon, 1 Apr 2019 13:08:30 +0200 Subject: [Lazarus] sharing units between lazarus and delphi Message-ID: Dear all, I have a project fully developed on Lazarus. It is a desktop application running on win, linux and mac. I would like to test Delphi in order to try to build a mobile application using my lazarus units. I can suppose to divide my units in those that should act exactly the same and those that should be modified. The first group belongs to not graphical units, the second group includes units that uses the canvas. What should be the preferable way to make my units compilable both by fpc/Lazarus and Delphi? Is it better to use MODE DELPHI or is it better to introduce IFDEFs all along the code? (e.g. for different usage of @ between fpc and delphi). What are the pros and cons of the two strategies? Code compiled using MODEL DELPHI is comparable, e.g. in terms of performance, to code compiled using OBJFPC? Any hint is really appreciated. Andrea -------------- next part -------------- An HTML attachment was scrubbed... URL: From bo.berglund at gmail.com Mon Apr 1 13:54:07 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Mon, 01 Apr 2019 07:54:07 -0400 Subject: [Lazarus] Setting a groupbox caption bold? References: Message-ID: On Mon, 1 Apr 2019 00:42:45 +0200, Werner Pamler via lazarus wrote: >Am 01.04.2019 um 00:09 schrieb Bo Berglund via lazarus: >> I have a configuration setting form where I have used group boxes to >> collect properties that belong together. >> But the groupbox border is not really well defined so I would like to >> be able to augment the form visually by setting the caption of the >> group boxes to bold. >> But I find no such property for the group box... >> >> Is there a way or am I out of luck? > >I use this code for TGroupbox, TRadiogroup and TCheckGroup: > >procedure BoldGroup(AControl: TWinControl); >var >   i: Integer; >   propinfo: PPropInfo; >   cntrl: TControl; >   fnt: TFont; >begin >   for i:=0 to AControl.ControlCount-1 do begin >     cntrl := AControl.Controls[i]; >     propinfo := GetPropInfo(cntrl, 'ParentFont'); >     if propinfo <> nil then >       SetOrdProp(cntrl, propinfo, Longint(false)); >     propinfo := GetPropInfo(cntrl, 'Font'); >     if propinfo <> nil then begin >       fnt := TFont(GetObjectProp(cntrl, 'Font')); >       fnt.Style := []; >       SetObjectProp(cntrl, 'Font', fnt); >     end; >   end; >   AControl.Font.Style := [fsBold]; I don't really understand what the loop accomplishes... I don't want to touch the controls inside the group box, just the group box caption itself... Could you please show how this would be used for one of my group boxes? Do I call it inside the form.OnCreate or form.OnShow? Today I do stuff in OnShow to hide/show group boxes depening on ini file content so this might be where I'd do this. Or should it be in OnCreate? -- Bo Berglund Developer in Sweden From pascaldragon at googlemail.com Mon Apr 1 14:30:58 2019 From: pascaldragon at googlemail.com (Sven Barth) Date: Mon, 1 Apr 2019 14:30:58 +0200 Subject: [Lazarus] sharing units between lazarus and delphi In-Reply-To: References: Message-ID: Andrea Mauri via lazarus schrieb am Mo., 1. Apr. 2019, 13:08: > What should be the preferable way to make my units compilable both by > fpc/Lazarus and Delphi? > Is it better to use MODE DELPHI or is it better to introduce IFDEFs all > along the code? (e.g. for different usage of @ between fpc and delphi). > What are the pros and cons of the two strategies? > Code compiled using MODEL DELPHI is comparable, e.g. in terms of > performance, to code compiled using OBJFPC? > One of the main purposes of the Delphi mode *is* to be able to easily share code between FPC and Delphi. So yes, that is the recommended way. Also I'm not aware of any features that would have a difference in performance in those two modes. Regards, Sven > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bo.berglund at gmail.com Mon Apr 1 16:07:28 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Mon, 01 Apr 2019 10:07:28 -0400 Subject: [Lazarus] Setting a groupbox caption bold? References: Message-ID: <9e54aep42g71iujib9h3072haqjk5lb2he@4ax.com> On Mon, 1 Apr 2019 00:42:45 +0200, Werner Pamler via lazarus wrote: >procedure BoldGroup(AControl: TWinControl); >var >   i: Integer; >   propinfo: PPropInfo; >   cntrl: TControl; >   fnt: TFont; >begin >   for i:=0 to AControl.ControlCount-1 do begin >     cntrl := AControl.Controls[i]; >     propinfo := GetPropInfo(cntrl, 'ParentFont'); >     if propinfo <> nil then >       SetOrdProp(cntrl, propinfo, Longint(false)); >     propinfo := GetPropInfo(cntrl, 'Font'); >     if propinfo <> nil then begin >       fnt := TFont(GetObjectProp(cntrl, 'Font')); >       fnt.Style := []; >       SetObjectProp(cntrl, 'Font', fnt); >     end; >   end; >   AControl.Font.Style := [fsBold]; So I tried to put this into Lazarus 2.0.0... After struggling with illegal whitespace characters when copy pasting from the news reader into Lazarus I put it into a text editor and cleaned up these before copy-paste into Lazarus again. procedure BoldGroup(AControl: TWinControl); var i: Integer; propinfo: PPropInfo; cntrl: TControl; fnt: TFont; begin for i:=0 to AControl.ControlCount-1 do begin cntrl := AControl.Controls[i]; propinfo := GetPropInfo(cntrl, 'ParentFont'); if propinfo <> nil then SetOrdProp(cntrl, propinfo, Longint(false)); propinfo := GetPropInfo(cntrl, 'Font'); if propinfo <> nil then begin fnt := TFont(GetObjectProp(cntrl, 'Font')); fnt.Style := []; SetObjectProp(cntrl, 'Font', fnt); end; end; AControl.Font.Style := [fsBold]; end; I also had to add typinfo to uses. Now it did work but only after rearranging the calls from OnCreate: This works: BoldGroup(gbxValues); BoldGroup(gbxDHT); BoldGroup(gbxNetwork); BoldGroup(gbxAPmode); BoldGroup(gbxStationmode); But this does not work: BoldGroup(gbxDHT); BoldGroup(gbxNetwork); BoldGroup(gbxAPmode); BoldGroup(gbxStationmode); BoldGroup(gbxValues); gbxValues is a container groupbox for all of the others. In the nonworking case the ONLY groupbox that get bold caption is the gbxValues box... Seems like the call to bold the caption of the gbxValues container removes the bold already set on the internal groupboxes... -- Bo Berglund Developer in Sweden From werner.pamler at freenet.de Mon Apr 1 17:23:47 2019 From: werner.pamler at freenet.de (Werner Pamler) Date: Mon, 1 Apr 2019 17:23:47 +0200 Subject: [Lazarus] Setting a groupbox caption bold? In-Reply-To: <9e54aep42g71iujib9h3072haqjk5lb2he@4ax.com> References: <9e54aep42g71iujib9h3072haqjk5lb2he@4ax.com> Message-ID: <160df05e-35cb-beeb-cf88-4bd916ac65a4@freenet.de> You did not say that you want to have bold caption for several controls. In order to "bold" all controls on a form, I use another procedure which is called from the OnCreate event of a form and recursively iterates through all controls and their children, seeks for TCustomGroupBox controls and calls "BoldGroup" for them. Just look at the attachment to see how it works; the demo contains a hierarchy of various levels of groupbox containers. -------------- next part -------------- A non-text attachment was scrubbed... Name: Bold_Groupbox.zip Type: application/x-zip-compressed Size: 5742 bytes Desc: not available URL: From bo.berglund at gmail.com Tue Apr 2 14:14:39 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Tue, 02 Apr 2019 08:14:39 -0400 Subject: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? Message-ID: I have a command line utility created in Lazarus 2.0.0/fpc 3.0.4 on Windows 7 x64. I use the Lazarus/fpc downloaded via this page: https://www.lazarus-ide.org/index.php?page=downloads Now I want to compile this project for Linux on the same x64 Intel CPU so I can run it under Ubuntu 16.4 LTS Server x64. Since that is a headless machine (it is a server) I need to build the utility by cross-compile on my Windows x64 Lazarus installation. Is there a *simple* instruction on how to do this? I have looked at the doc page: http://wiki.lazarus.freepascal.org/Cross_compiling but it is too complex for me to understand. I tried to just go to the sections I deemed relevant to my simple (and probably very common) case but they all cross-reference into a maze... I need a "For Dummies" how-to which presupposes I have installed Lazarus/Fpc for Windows x64 and then tells me what to download extra (and from where) and also how to set up the project environment to make the Linux target. Is something like that available? -- Bo Berglund Developer in Sweden From md at delfire.net Tue Apr 2 14:26:20 2019 From: md at delfire.net (Marcos Douglas B. Santos) Date: Tue, 2 Apr 2019 09:26:20 -0300 Subject: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? In-Reply-To: References: Message-ID: On Tue, Apr 2, 2019 at 9:14 AM Bo Berglund via lazarus wrote: > > I have a command line utility created in Lazarus 2.0.0/fpc 3.0.4 on > Windows 7 x64. I use the Lazarus/fpc downloaded via this page: > https://www.lazarus-ide.org/index.php?page=downloads > > Now I want to compile this project for Linux on the same x64 Intel CPU > so I can run it under Ubuntu 16.4 LTS Server x64. > Since that is a headless machine (it is a server) I need to build the > utility by cross-compile on my Windows x64 Lazarus installation. > > Is there a *simple* instruction on how to do this? I have looked at > the doc page: > http://wiki.lazarus.freepascal.org/Cross_compiling > but it is too complex for me to understand. I tried to just go to the > sections I deemed relevant to my simple (and probably very common) > case but they all cross-reference into a maze... > > I need a "For Dummies" how-to which presupposes I have installed > Lazarus/Fpc for Windows x64 and then tells me what to download extra > (and from where) and also how to set up the project environment to > make the Linux target. > Is something like that available? The fastest and easy way to setup the cross-compilation - and install Lazarus itself - is using fpcupdeluxe -> https://github.com/LongDirtyAnimAlf/fpcupdeluxe/releases Just get the binary for your platform, run and following the instructions. That's all. best regards, Marcos Douglas From bo.berglund at gmail.com Tue Apr 2 16:23:08 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Tue, 02 Apr 2019 10:23:08 -0400 Subject: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? References: Message-ID: <8kr6aehc9ltvkf3u9nts1fcb92o33srfg3@4ax.com> On Tue, 2 Apr 2019 09:26:20 -0300, "Marcos Douglas B. Santos via lazarus" wrote: >The fastest and easy way to setup the cross-compilation - and install >Lazarus itself - is using fpcupdeluxe >-> https://github.com/LongDirtyAnimAlf/fpcupdeluxe/releases > >Just get the binary for your platform, run and following the >instructions. That's all. I don't want to scrap my existing installation of Lazarus 2.0.0/fpc 3.0.4 created by the official download on the www.lazarus-ide.org page.. It is configured and I have used it for several projects already.... It seems to me like my question would be solved by downloading the cross-compiler from the additional files page on the lazarus-ide site but I don't know how to go from there... https://sourceforge.net/projects/lazarus/files/Lazarus%20Windows%2064%20bits/Lazarus%202.0.0/ The file I mean is: lazarus-2.0.0-fpc-3.0.4-cross-i386-win32-win64.exe But I don't know if it just contains the fpc cross compiler or if it aso contains some Lazarus version, thus I am hesitant to get it and risk starting over again. But then there is also the question regarding HOW to use the cross compiler.... -- Bo Berglund Developer in Sweden From freedos.la at gmail.com Tue Apr 2 18:35:46 2019 From: freedos.la at gmail.com (Ralf Quint) Date: Tue, 2 Apr 2019 09:35:46 -0700 Subject: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? In-Reply-To: <8kr6aehc9ltvkf3u9nts1fcb92o33srfg3@4ax.com> References: <8kr6aehc9ltvkf3u9nts1fcb92o33srfg3@4ax.com> Message-ID: <4229afc9-b567-f5f5-9c73-401976386261@gmail.com> On 4/2/2019 7:23 AM, Bo Berglund via lazarus wrote: > On Tue, 2 Apr 2019 09:26:20 -0300, "Marcos Douglas B. Santos via > lazarus" wrote: > >> The fastest and easy way to setup the cross-compilation - and install >> Lazarus itself - is using fpcupdeluxe >> -> https://github.com/LongDirtyAnimAlf/fpcupdeluxe/releases >> >> Just get the binary for your platform, run and following the >> instructions. That's all. > I don't want to scrap my existing installation of Lazarus 2.0.0/fpc > 3.0.4 created by the official download on the www.lazarus-ide.org > page.. > > It is configured and I have used it for several projects already.... > > It seems to me like my question would be solved by downloading the > cross-compiler from the additional files page on the lazarus-ide site > but I don't know how to go from there... > > https://sourceforge.net/projects/lazarus/files/Lazarus%20Windows%2064%20bits/Lazarus%202.0.0/ > > The file I mean is: > lazarus-2.0.0-fpc-3.0.4-cross-i386-win32-win64.exe This is the cross-compiler to compile Win32 programs from a Win64 setup. It is not a cross-compiler to any Linux(-x64) target... Ralf --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From bo.berglund at gmail.com Tue Apr 2 21:53:30 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Tue, 02 Apr 2019 15:53:30 -0400 Subject: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? References: <8kr6aehc9ltvkf3u9nts1fcb92o33srfg3@4ax.com> <4229afc9-b567-f5f5-9c73-401976386261@gmail.com> Message-ID: On Tue, 2 Apr 2019 09:35:46 -0700, Ralf Quint via lazarus wrote: >> The file I mean is: >> lazarus-2.0.0-fpc-3.0.4-cross-i386-win32-win64.exe > >This is the cross-compiler to compile Win32 programs from a Win64 setup. >It is not a cross-compiler to any Linux(-x64) target... OK, then I will have to uninstall that installation (I did it to check what would happen)... But then how do I get hold of a Linux cross-compiler? Can I just check out some "binutils" for Linux from SVN? Or do I have to create a virtual Linux machine and install SVN + Lazarus/fpc on that and then pull the project sources over via svn and compile natively? I found a description over her: http://wiki.lazarus.freepascal.org/Cross_compiling#From_Windows_to_Linux But it says: "This is less trivial, there is some info in the buildfaq See also fpcup for descriptions on which binutils work and what libraries/files to copy. As the Build FAQ explains, you will need libs (.so files) from the target system, e.g. from /lib and /user/lib (but could be more locations). On some systems, some .so files are actually scripts; check with grep -i "ld script" * Remove those .so and copy over (or symlink) the .so.x files that you should have to .so in order for the linker to find them." I do not really get what *actually* to do from this.... Seems ike I am heading in the wrong direction, but I absolutely was under the impression that one could develop anywhere (Linux or Windows) and then compile for any target in this one development setup... Probably faster to go the Linux virtual machine path and build natively from sources via svn.. -- Bo Berglund Developer in Sweden From doug at moosemail.net Tue Apr 2 22:00:18 2019 From: doug at moosemail.net (DougC) Date: Tue, 02 Apr 2019 16:00:18 -0400 Subject: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? In-Reply-To: References: Message-ID: <169dfa35abf.e2528b59256330.6805544084924169335@moosemail.net> I am VERY interested in how this question is answered and resolved. It seems to be a weak point in how the Lazarus/FPC effort has developed. This type of question has prevented me from diving into the Lazarus/FPC ecosystem because there seem to be regular requests for help in resolving this type of issue. Doug C. ---- On Tue, 02 Apr 2019 08:14:39 -0400 Bo Berglund via lazarus wrote ---- I have a command line utility created in Lazarus 2.0.0/fpc 3.0.4 on Windows 7 x64. I use the Lazarus/fpc downloaded via this page: https://www.lazarus-ide.org/index.php?page=downloads Now I want to compile this project for Linux on the same x64 Intel CPU so I can run it under Ubuntu 16.4 LTS Server x64. Since that is a headless machine (it is a server) I need to build the utility by cross-compile on my Windows x64 Lazarus installation. Is there a *simple* instruction on how to do this? I have looked at the doc page: http://wiki.lazarus.freepascal.org/Cross_compiling but it is too complex for me to understand. I tried to just go to the sections I deemed relevant to my simple (and probably very common) case but they all cross-reference into a maze... I need a "For Dummies" how-to which presupposes I have installed Lazarus/Fpc for Windows x64 and then tells me what to download extra (and from where) and also how to set up the project environment to make the Linux target. Is something like that available? -- Bo Berglund Developer in Sweden -- _______________________________________________ lazarus mailing list mailto:lazarus at lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus -------------- next part -------------- An HTML attachment was scrubbed... URL: From alfred at consulab.nl Tue Apr 2 22:14:07 2019 From: alfred at consulab.nl (Alfred) Date: Tue, 02 Apr 2019 20:14:07 +0000 Subject: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? In-Reply-To: <169dfa35abf.e2528b59256330.6805544084924169335@moosemail.net> References: <169dfa35abf.e2528b59256330.6805544084924169335@moosemail.net> Message-ID: As maintainer of fpcupdeluxe, I feel the need of stepping into this discussion. (which I do not often do, because of the freedom of choice) Yes, setting up cross-compiling is a non-trivial task. This is why fpcup(deluxe) has been created by its original author (BigChimp). He wanted to give the users of FPC and Lazarus: * an easy way of installing different versions of FPC and Lazarus. * isolate these installs * enable easy cross-compilation So, just * use fpcupdeluxe * have a look at the forum about fpcupdeluxe * see how cross-compiling is setup and done And, do not use fpcupdeluxe if you do not want to. As I said, the freedom is yours. ------ Origineel bericht ------ Van: "DougC via lazarus" Aan: "lazarus" CC: "DougC" Verzonden: 2-4-2019 22:00:18 Onderwerp: Re: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? >I am VERY interested in how this question is answered and resolved. It >seems to be a weak point in how the Lazarus/FPC effort has developed. > >This type of question has prevented me from diving into the Lazarus/FPC >ecosystem because there seem to be regular requests for help in >resolving this type of issue. > >Doug C. > > >---- On Tue, 02 Apr 2019 08:14:39 -0400 Bo Berglund via lazarus > wrote ---- > >>I have a command line utility created in Lazarus 2.0.0/fpc 3.0.4 on >>Windows 7 x64. I use the Lazarus/fpc downloaded via this page: >>https://www.lazarus-ide.org/index.php?page=downloads >> >>Now I want to compile this project for Linux on the same x64 Intel CPU >>so I can run it under Ubuntu 16.4 LTS Server x64. >>Since that is a headless machine (it is a server) I need to build the >>utility by cross-compile on my Windows x64 Lazarus installation. >> >>Is there a *simple* instruction on how to do this? I have looked at >>the doc page: >>http://wiki.lazarus.freepascal.org/Cross_compiling >>but it is too complex for me to understand. I tried to just go to the >>sections I deemed relevant to my simple (and probably very common) >>case but they all cross-reference into a maze... >> >>I need a "For Dummies" how-to which presupposes I have installed >>Lazarus/Fpc for Windows x64 and then tells me what to download extra >>(and from where) and also how to set up the project environment to >>make the Linux target. >>Is something like that available? >> >> >>-- >>Bo Berglund >>Developer in Sweden >> >>-- >>_______________________________________________ >>lazarus mailing list >>lazarus at lists.lazarus-ide.org >>https://lists.lazarus-ide.org/listinfo/lazarus > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alfred at consulab.nl Tue Apr 2 22:14:07 2019 From: alfred at consulab.nl (Alfred) Date: Tue, 02 Apr 2019 20:14:07 +0000 Subject: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? In-Reply-To: <169dfa35abf.e2528b59256330.6805544084924169335@moosemail.net> References: <169dfa35abf.e2528b59256330.6805544084924169335@moosemail.net> Message-ID: As maintainer of fpcupdeluxe, I feel the need of stepping into this discussion. (which I do not often do, because of the freedom of choice) Yes, setting up cross-compiling is a non-trivial task. This is why fpcup(deluxe) has been created by its original author (BigChimp). He wanted to give the users of FPC and Lazarus: * an easy way of installing different versions of FPC and Lazarus. * isolate these installs * enable easy cross-compilation So, just * use fpcupdeluxe * have a look at the forum about fpcupdeluxe * see how cross-compiling is setup and done And, do not use fpcupdeluxe if you do not want to. As I said, the freedom is yours. ------ Origineel bericht ------ Van: "DougC via lazarus" Aan: "lazarus" CC: "DougC" Verzonden: 2-4-2019 22:00:18 Onderwerp: Re: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? >I am VERY interested in how this question is answered and resolved. It >seems to be a weak point in how the Lazarus/FPC effort has developed. > >This type of question has prevented me from diving into the Lazarus/FPC >ecosystem because there seem to be regular requests for help in >resolving this type of issue. > >Doug C. > > >---- On Tue, 02 Apr 2019 08:14:39 -0400 Bo Berglund via lazarus > wrote ---- > >>I have a command line utility created in Lazarus 2.0.0/fpc 3.0.4 on >>Windows 7 x64. I use the Lazarus/fpc downloaded via this page: >>https://www.lazarus-ide.org/index.php?page=downloads >> >>Now I want to compile this project for Linux on the same x64 Intel CPU >>so I can run it under Ubuntu 16.4 LTS Server x64. >>Since that is a headless machine (it is a server) I need to build the >>utility by cross-compile on my Windows x64 Lazarus installation. >> >>Is there a *simple* instruction on how to do this? I have looked at >>the doc page: >>http://wiki.lazarus.freepascal.org/Cross_compiling >>but it is too complex for me to understand. I tried to just go to the >>sections I deemed relevant to my simple (and probably very common) >>case but they all cross-reference into a maze... >> >>I need a "For Dummies" how-to which presupposes I have installed >>Lazarus/Fpc for Windows x64 and then tells me what to download extra >>(and from where) and also how to set up the project environment to >>make the Linux target. >>Is something like that available? >> >> >>-- >>Bo Berglund >>Developer in Sweden >> >>-- >>_______________________________________________ >>lazarus mailing list >>lazarus at lists.lazarus-ide.org >>https://lists.lazarus-ide.org/listinfo/lazarus > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From md at delfire.net Wed Apr 3 02:56:39 2019 From: md at delfire.net (Marcos Douglas B. Santos) Date: Tue, 2 Apr 2019 21:56:39 -0300 Subject: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? In-Reply-To: <8kr6aehc9ltvkf3u9nts1fcb92o33srfg3@4ax.com> References: <8kr6aehc9ltvkf3u9nts1fcb92o33srfg3@4ax.com> Message-ID: On Tue, Apr 2, 2019 at 11:23 AM Bo Berglund via lazarus wrote: > > On Tue, 2 Apr 2019 09:26:20 -0300, "Marcos Douglas B. Santos via > lazarus" wrote: > > >The fastest and easy way to setup the cross-compilation - and install > >Lazarus itself - is using fpcupdeluxe > >-> https://github.com/LongDirtyAnimAlf/fpcupdeluxe/releases > > > >Just get the binary for your platform, run and following the > >instructions. That's all. > > I don't want to scrap my existing installation of Lazarus 2.0.0/fpc > 3.0.4 created by the official download on the www.lazarus-ide.org > page.. > > It is configured and I have used it for several projects already.... I would say that you just basically need to: - install a new one - rewrite your setup files (.xml) at the fpcup default directory - build Lazarus again to install components that you might have in your current IDE That is pretty almost everything. However, feel free to setup it manually. regards, Marcos Douglas From nc-gaertnma at netcologne.de Wed Apr 3 15:40:26 2019 From: nc-gaertnma at netcologne.de (Mattias Gaertner) Date: Wed, 3 Apr 2019 15:40:26 +0200 Subject: [Lazarus] We are planning the next release: Lazarus 2.0.2 Message-ID: <20190403154026.5a12ba5a@limapholos.matflo.wg> The Lazarus team is glad to announce that:      The release of Lazarus 2.0.2 has been scheduled for around      16th to 18th April 2019 This release will be built with FPC 3.0.4. The previous release Lazarus 2.0.0 was built with FPC 3.0.4 as well. Here is the list of fixes for Lazarus 2.0.2 (since 2.0.0): http://wiki.freepascal.org/Lazarus_2.0_fixes_branch We would invite everyone to provide their feedback to help us improve this upcoming release. Please let as know in particular: - Any fixes made to trunk, that you believe should still be merged to the fixes branch (fixes that are not listed on the above wiki page) - Any regressions that happened in fixes branch since the last release - Other urgent matters, you believe we should know before the release. Please attempt to provide your feedback by: 10th April 2019 More info on our release process can be found at (work in progress): http://wiki.lazarus.freepascal.org/Lazarus_release_engineering Information about the previous release: http://wiki.lazarus.freepascal.org/Lazarus_2.0.0_release_notes http://wiki.lazarus.freepascal.org/User_Changes_3.0.4 The intended minimum requirements for the release will be: Windows:   2k, XP, Vista, 7, 8, 8.1 and 10, 32 or 64bit. FreeBSD/Linux:   gtk 2.8 for gtk2, qt4.5 for qt, qt5.6 for qt5, 32 or 64bit. Mac OS X:   10.5 to 10.12; Carbon (32bit), Cocoa (64bit, beta), qt and qt5   (32 or 64bit). Mattias From bo.berglund at gmail.com Wed Apr 3 16:44:08 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Wed, 03 Apr 2019 10:44:08 -0400 Subject: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? References: <169dfa35abf.e2528b59256330.6805544084924169335@moosemail.net> Message-ID: <29h9ael7v6v90l8r7jnr9qae6dnq16nvho@4ax.com> On Tue, 02 Apr 2019 16:00:18 -0400, DougC via lazarus wrote: >I am VERY interested in how this question is answered and resolved. It >seems to be a weak point in how the Lazarus/FPC effort has developed. > >This type of question has prevented me from diving into the Lazarus/FPC >ecosystem because there seem to be regular requests for help in resolving this >type of issue. > I decided that it would be easier to just use a LinuxMint19x64 virtual machine that I had already installed fpc 3.0.4/lazarus 1.8.5 into. I checked out the lazarus 2.0.0 sources and issued the make bigide inside of the checkout and then created the application launch desktop file. Then checked out the project files via svn into the LinuxMint vm and opened the project inside Lazarus 2.0.0 and it built right away. Simplest solution since I already had the virtual linux machine available.... Now I will go for what I really wanted to do, i.e create a command line version of the utility, which I can use on a headless Ubuntu 16.04 server. -- Bo Berglund Developer in Sweden From carlos70esm at gmail.com Wed Apr 3 17:14:47 2019 From: carlos70esm at gmail.com (Carlos Eduardo S. M.) Date: Wed, 3 Apr 2019 12:14:47 -0300 Subject: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? In-Reply-To: References: Message-ID: For me, the simplest solution is installing Ubuntu in a dual boot or, even better, in a virtual machine (e.g. free VMWare Player) with access to the Windows' Lazarus project folder. Independent install and configuration of Lazarus and debugging for each platform. []'s, Carlos Eduardo S. Matuzaki Curitiba / Parana' / Brazil Em 02/04/2019 17:14, lazarus-request at lists.lazarus-ide.org escreveu: > Date: Tue, 02 Apr 2019 08:14:39 -0400 > From: Bo Berglund > To: lazarus at lists.lazarus.freepascal.org > Subject: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? > Message-ID: > Content-Type: text/plain; charset=us-ascii > > I have a command line utility created in Lazarus 2.0.0/fpc 3.0.4 on > Windows 7 x64. I use the Lazarus/fpc downloaded via this page: > https://www.lazarus-ide.org/index.php?page=downloads > > Now I want to compile this project for Linux on the same x64 Intel CPU > so I can run it under Ubuntu 16.4 LTS Server x64. > Since that is a headless machine (it is a server) I need to build the > utility by cross-compile on my Windows x64 Lazarus installation. > > Is there a *simple* instruction on how to do this? I have looked at > the doc page: > http://wiki.lazarus.freepascal.org/Cross_compiling > but it is too complex for me to understand. I tried to just go to the > sections I deemed relevant to my simple (and probably very common) > case but they all cross-reference into a maze... > > I need a "For Dummies" how-to which presupposes I have installed > Lazarus/Fpc for Windows x64 and then tells me what to download extra > (and from where) and also how to set up the project environment to > make the Linux target. > Is something like that available? > > --- Este email foi escaneado pelo Avast antivírus. https://www.avast.com/antivirus From bo.berglund at gmail.com Wed Apr 3 17:46:23 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Wed, 03 Apr 2019 11:46:23 -0400 Subject: [Lazarus] Got Lazarus 2.0.0 from SVN, missing help files Message-ID: I installed Lazarus 2.0.0 on Linux Mint 19 using svn to check out tag 2_0_0 and doing a make bigide inside. It all worked well to get Lazarus up and running, but now I found a problem regarding help... When I want to check the syntax for a command using the F1 key there is a dialog saying it cannot find rtl.chm. What can I do to rectify this? find does not find any such file on my system... -- Bo Berglund Developer in Sweden From nc-gaertnma at netcologne.de Wed Apr 3 18:44:27 2019 From: nc-gaertnma at netcologne.de (Mattias Gaertner) Date: Wed, 3 Apr 2019 18:44:27 +0200 Subject: [Lazarus] Got Lazarus 2.0.0 from SVN, missing help files In-Reply-To: References: Message-ID: <20190403184427.03a7a2a0@limapholos.matflo.wg> On Wed, 03 Apr 2019 11:46:23 -0400 Bo Berglund via lazarus wrote: > I installed Lazarus 2.0.0 on Linux Mint 19 using svn to check out tag > 2_0_0 and doing a make bigide inside. > > It all worked well to get Lazarus up and running, but now I found a > problem regarding help... > When I want to check the syntax for a command using the F1 key there > is a dialog saying it cannot find rtl.chm. > > What can I do to rectify this? > find does not find any such file on my system... You can download them from here: https://svn.freepascal.org/svn/lazarus/binaries/docs/chm/ and put them into lazarus/docs/chm/ Mattias From werner.pamler at freenet.de Wed Apr 3 22:42:20 2019 From: werner.pamler at freenet.de (Werner Pamler) Date: Wed, 3 Apr 2019 22:42:20 +0200 Subject: [Lazarus] New XML format for project info files In-Reply-To: References: <20190315173515.676e5f44@limapholos.matflo.wg> <52a6773d-d12f-09e4-74c6-6a78aa6d8b99@freenet.de> <50116795-f7c4-1e0c-e3ac-0fdcb3d077ba@freenet.de> <2cf649d8-894c-6e80-4c1e-74b6a2b8785f@freenet.de> <0cf01a68-741c-c561-9b6b-0e016aa10692@freenet.de> Message-ID: <292b2863-c492-aec1-3b95-467c6d5aa660@freenet.de> Am 18.03.2019 um 06:54 schrieb Juha Manninen via lazarus: > On Mon, Mar 18, 2019 at 1:12 AM Werner Pamler via lazarus > wrote: >> I saw that you activated legacy compatibility mode by default, thank >> you. But now the checkbox in the project options is out of sync. >> Shouldn't it be checked now by default, too? > Here it is checked now by default both in existing and in new projects. > > Juha Unfortunately this does not solve the issue for me personally. I post a lot of code in the forum, and since I normally work with Laz-trunk and, of course, forget to activate the compatibility option the code will be useless for users of legacy versions. I really would appreciate to have the previous solution (a global default setting for the compatibility option) in addition to the current solution. Of course this new option should now be off by default, but after once having switched it on all my demo projects would be readable also by legacy Lazarus. I reopened bug report https://bugs.freepascal.org/view.php?id=22752 for this request. From the perspective of a legacy Laz user a stand-alone tool to convert the new format back to legacy would be helpful, too. Currently, a user not having Laz trunk is unable to open any projects saved by Laz trunk without editing the xml files manually! Most users still are not aware of this change - see discussion following https://forum.lazarus.freepascal.org/index.php/topic,44161.msg316081.html#msg316081. I think this is an important point to be listed inhttp://wiki.freepascal.org/Lazarus_2.2.0_release_notes. Werner From sysrpl at gmail.com Thu Apr 4 02:15:10 2019 From: sysrpl at gmail.com (Anthony Walter) Date: Wed, 3 Apr 2019 20:15:10 -0400 Subject: [Lazarus] Lots of access violations with TSQLConnection TSQLQuery on Linux Message-ID: I don't normally use the Lazarus MS SQL components, but tried using them today on Ubuntu Linux and keep experiencing lots of random access violations. I wanted to know if this is a normal thing, or if perhaps the state of these components is fragile on Linux. Here is what is happening. I can place the TSQLConnection, TSQLTransaction, TSQLQuery, TDataSource and data aware controls on a form and connect to the database at design time. It works fine. I can run my program and I can view and edit records just fine. But if I change any part of TSQLQuery down to TSQLConnection setting Active to False, then I get access violations. This is particularly problematic because certain changes to component properties require Active to be set to False, such as editing SQL. And very often, though not always, changing the Active property results in access violations. And after an AV happens then things start misbehaving in the IDE. Is this a common problem for some people on Linux using the MS SQL components? Am I doing something wrong? Are there people her who have worked with MS SQL components on Linux much and is familiar with this problem? Thank you. Anthony -------------- next part -------------- An HTML attachment was scrubbed... URL: From bo.berglund at gmail.com Thu Apr 4 02:36:58 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Wed, 03 Apr 2019 20:36:58 -0400 Subject: [Lazarus] Cross compile for Linux x64 on Windows 7 x64? References: Message-ID: <2akaaelhka03p79gqgov0mmo8l6f0ugavi@4ax.com> On Wed, 3 Apr 2019 12:14:47 -0300, "Carlos Eduardo S. M. via lazarus" wrote: >For me, the simplest solution is installing Ubuntu in a dual boot or, >even better, in a virtual machine (e.g. free VMWare Player) with access >to the Windows' Lazarus project folder. Independent install and >configuration of Lazarus and debugging for each platform. > I agree on the first part about the virtual machine. I have already done so. But no shared folder, I checked out the project using SVN to the linux machine and opened the project there. Worked fine. So I work in Linux on the same project via Subversion. -- Bo Berglund Developer in Sweden From bo.berglund at gmail.com Thu Apr 4 02:38:15 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Wed, 03 Apr 2019 20:38:15 -0400 Subject: [Lazarus] Got Lazarus 2.0.0 from SVN, missing help files References: <20190403184427.03a7a2a0@limapholos.matflo.wg> Message-ID: <1ekaaetku1hb1lg2g4vpc6vdudb0l32kvg@4ax.com> On Wed, 3 Apr 2019 18:44:27 +0200, Mattias Gaertner via lazarus wrote: >You can download them from here: >https://svn.freepascal.org/svn/lazarus/binaries/docs/chm/ >and put them into lazarus/docs/chm/ > Thanks, I will do that. Maybe I can even check them out from svn directly into that folder? -- Bo Berglund Developer in Sweden From lazarus at kluug.net Thu Apr 4 06:22:33 2019 From: lazarus at kluug.net (Ondrej Pokorny) Date: Thu, 4 Apr 2019 06:22:33 +0200 Subject: [Lazarus] New XML format for project info files In-Reply-To: <292b2863-c492-aec1-3b95-467c6d5aa660@freenet.de> References: <20190315173515.676e5f44@limapholos.matflo.wg> <52a6773d-d12f-09e4-74c6-6a78aa6d8b99@freenet.de> <50116795-f7c4-1e0c-e3ac-0fdcb3d077ba@freenet.de> <2cf649d8-894c-6e80-4c1e-74b6a2b8785f@freenet.de> <0cf01a68-741c-c561-9b6b-0e016aa10692@freenet.de> <292b2863-c492-aec1-3b95-467c6d5aa660@freenet.de> Message-ID: <7ffac046-b661-a3a1-a94a-656a0284a686@kluug.net> On 03.04.2019 22:42, Werner Pamler via lazarus wrote: > Unfortunately this does not solve the issue for me personally. I post > a lot of code in the forum, and since I normally work with Laz-trunk > and, of course, forget to activate the compatibility option the code > will be useless for users of legacy versions. I really would > appreciate to have the previous solution (a global default setting for > the compatibility option) in addition to the current solution. Of > course this new option should now be off by default, but after once > having switched it on all my demo projects would be readable also by > legacy Lazarus. I reopened bug report > https://bugs.freepascal.org/view.php?id=22752 for this request. > > From the perspective of a legacy Laz user a stand-alone tool to > convert the new format back to legacy would be helpful, too. > Currently, a user not having Laz trunk is unable to open any projects > saved by Laz trunk without editing the xml files manually! Feel free to extend the feature to your wishes. I don't think anybody will be against such a global option or an external stand-alone converting tool. Ondrej From pascaldragon at googlemail.com Thu Apr 4 07:57:29 2019 From: pascaldragon at googlemail.com (Sven Barth) Date: Thu, 4 Apr 2019 07:57:29 +0200 Subject: [Lazarus] Lots of access violations with TSQLConnection TSQLQuery on Linux In-Reply-To: References: Message-ID: Anthony Walter via lazarus schrieb am Do., 4. Apr. 2019, 02:15: > I don't normally use the Lazarus MS SQL components, but tried using them > today on Ubuntu Linux and keep experiencing lots of random access > violations. I wanted to know if this is a normal thing, or if perhaps the > state of these components is fragile on Linux. > > Here is what is happening. > > I can place the TSQLConnection, TSQLTransaction, TSQLQuery, TDataSource > and data aware controls on a form and connect to the database at design > time. It works fine. I can run my program and I can view and edit records > just fine. But if I change any part of TSQLQuery down to TSQLConnection > setting Active to False, then I get access violations. > > This is particularly problematic because certain changes to component > properties require Active to be set to False, such as editing SQL. And very > often, though not always, changing the Active property results in access > violations. And after an AV happens then things start misbehaving in the > IDE. > > Is this a common problem for some people on Linux using the MS SQL > components? Am I doing something wrong? Are there people her who have > worked with MS SQL components on Linux much and is familiar with this > problem? > Just to be sure: do you have the necessary library installed on your system? See here: http://wiki.freepascal.org/mssqlconn#Installation Regards, Sven > -------------- next part -------------- An HTML attachment was scrubbed... URL: From rolf.wetjen at mail.de Thu Apr 4 08:48:22 2019 From: rolf.wetjen at mail.de (Rolf Wetjen(rolf.wetjen@mail.de)) Date: Thu, 04 Apr 2019 06:48:22 +0000 Subject: [Lazarus] We are planning the next release: Lazarus 2.0.2 In-Reply-To: <20190403154026.5a12ba5a@limapholos.matflo.wg> References: <20190403154026.5a12ba5a@limapholos.matflo.wg> Message-ID: Hi Lazarus team, can you check if the fix for this one can be included in 2.0.2: https://bugs.freepascal.org/view.php?id=33394 (ListView.ScrollBy doesn't work (vsReport/Windows) Rolf --- Diese E-Mail wurde von Avast Antivirus-Software auf Viren geprüft. https://www.avast.com/antivirus -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at freepascal.org Thu Apr 4 09:18:24 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Thu, 4 Apr 2019 09:18:24 +0200 (CEST) Subject: [Lazarus] Lots of access violations with TSQLConnection TSQLQuery on Linux In-Reply-To: References: Message-ID: On Wed, 3 Apr 2019, Anthony Walter via lazarus wrote: > I don't normally use the Lazarus MS SQL components, but tried using them > today on Ubuntu Linux and keep experiencing lots of random access > violations. I wanted to know if this is a normal thing, or if perhaps the > state of these components is fragile on Linux. > > Here is what is happening. > > I can place the TSQLConnection, TSQLTransaction, TSQLQuery, TDataSource > and data aware controls on a form and connect to the database at design > time. It works fine. I can run my program and I can view and edit records > just fine. But if I change any part of TSQLQuery down to TSQLConnection > setting Active to False, then I get access violations. > > This is particularly problematic because certain changes to component > properties require Active to be set to False, such as editing SQL. And very > often, though not always, changing the Active property results in access > violations. And after an AV happens then things start misbehaving in the > IDE. > > Is this a common problem for some people on Linux using the MS SQL > components? Am I doing something wrong? Are there people her who have > worked with MS SQL components on Linux much and is familiar with this > problem? This is not normal. I have not used the MS SQL Connector on linux, but I have used it on windows, and I have not experienced such things. Can you post a stack trace so we can analyze the problem ? Michael. From leobronstain at gmail.com Thu Apr 4 15:00:51 2019 From: leobronstain at gmail.com (leyba bronstain) Date: Thu, 4 Apr 2019 16:00:51 +0300 Subject: [Lazarus] Compilation error Lazarus r.60828 Message-ID: <169a5b0c-48e8-64b3-7da9-bc1357805b06@gmail.com> When I try to compile subj I get error message (3104) Compiling generatefppkgconfigurationdlg.pas d:\\lazarus_21_r60828\ide\generatefppkgconfigurationdlg.pas(9 1,63) Error: (5000) Identifier not found "GetFPCVer" d:\\lazarus_21_r60828\ide\generatefppkgconfigurationdlg.pas(9 1,92) Error: (5000) Identifier not found "GetFPCVer" generatefppkgconfigurationdlg.pas(490) Fatal: (10026) There were 2 errors compil ing module, stopping Fatal: (1018) Compilation aborted make[2]: *** [lazarus.exe] Error 1 make[2]: Leaving directory `d://lazarus_21_r60828/ide' make[1]: *** [bigide] Error 2 make[1]: Leaving directory `d://lazarus_21_r60828/ide' make: *** [idebig] Error 2 Pls, fix it. WBR, Zoltanleo From zeljko at holobit.net Thu Apr 4 15:38:49 2019 From: zeljko at holobit.net (zeljko) Date: Thu, 4 Apr 2019 15:38:49 +0200 Subject: [Lazarus] Compilation error Lazarus r.60828 In-Reply-To: <169a5b0c-48e8-64b3-7da9-bc1357805b06@gmail.com> References: <169a5b0c-48e8-64b3-7da9-bc1357805b06@gmail.com> Message-ID: <39f0cd37-6068-bce2-ddd5-f6f50a48faa6@holobit.net> On 04/04/2019 03:00 PM, leyba bronstain via lazarus wrote: > When I try to compile subj I get error message > > (3104) Compiling generatefppkgconfigurationdlg.pas > d:\\lazarus_21_r60828\ide\generatefppkgconfigurationdlg.pas(9 > 1,63) Error: (5000) Identifier not found "GetFPCVer" > d:\\lazarus_21_r60828\ide\generatefppkgconfigurationdlg.pas(9 > 1,92) Error: (5000) Identifier not found "GetFPCVer" > generatefppkgconfigurationdlg.pas(490) Fatal: (10026) There were 2 > errors compil > ing module, stopping > Fatal: (1018) Compilation aborted > make[2]: *** [lazarus.exe] Error 1 > make[2]: Leaving directory `d://lazarus_21_r60828/ide' > make[1]: *** [bigide] Error 2 > make[1]: Leaving directory `d://lazarus_21_r60828/ide' > make: *** [idebig] Error 2 What is your fpc version ? zeljko From jmlandmesser at gmx.de Thu Apr 4 15:52:46 2019 From: jmlandmesser at gmx.de (John Landmesser) Date: Thu, 4 Apr 2019 15:52:46 +0200 Subject: [Lazarus] Linux: how to get colored output in terminal of "make useride" for example? Message-ID: <7fb5e8de-419d-2cbc-28de-df4d729dea57@gmx.de> ... errors should be red ... Therefore do i need a bunch of settings in bashrc?? Copy/paste would be nice :-) From leobronstain at gmail.com Thu Apr 4 17:12:51 2019 From: leobronstain at gmail.com (leobronstain) Date: Thu, 04 Apr 2019 18:12:51 +0300 Subject: [Lazarus] Compilation error Lazarus r.60828 In-Reply-To: <39f0cd37-6068-bce2-ddd5-f6f50a48faa6@holobit.net> References: <169a5b0c-48e8-64b3-7da9-bc1357805b06@gmail.com> <39f0cd37-6068-bce2-ddd5-f6f50a48faa6@holobit.net> Message-ID: > What is your fpc version ? > > zeljko fpc v.41801 WBR, Zoltanleo From juha.manninen62 at gmail.com Thu Apr 4 19:41:54 2019 From: juha.manninen62 at gmail.com (Juha Manninen) Date: Thu, 4 Apr 2019 20:41:54 +0300 Subject: [Lazarus] Compilation error Lazarus r.60828 In-Reply-To: <169a5b0c-48e8-64b3-7da9-bc1357805b06@gmail.com> References: <169a5b0c-48e8-64b3-7da9-bc1357805b06@gmail.com> Message-ID: On Thu, Apr 4, 2019 at 4:01 PM leyba bronstain via lazarus wrote: > Pls, fix it. Fixed. Please test with latest trunk. See also: https://bugs.freepascal.org/view.php?id=35310 Juha From sysrpl at gmail.com Thu Apr 4 20:11:08 2019 From: sysrpl at gmail.com (Anthony Walter) Date: Thu, 4 Apr 2019 14:11:08 -0400 Subject: [Lazarus] Lots of access violations with TSQLConnection TSQLQuery on Linux In-Reply-To: References: Message-ID: Sven, I am fairly confident that I have all the required libraries installed and configured correctly. Everything works fine, including reading data from my remote server and applying updates. The exception is that if at design time I change the Active property of any data related non visual component, then I get an AV. Also, I did follow the instructions or guide on that page prior to your suggestion and ti helped me connect to my remote server. Michael, To be sure I have the correct sources, I tried this twice. Once with my current Lazarus, and again with svn fixes_2_0 Lazarus. Both exhibit the same behavior and stack trace. Here is a screenshot of the error and the stack trace. I simply opened the my project, set the SQL query Active property to False, and I get this error. https://cache.getlazarus.org/images/sql-linux-av.jpg Stack trace: ~$ sudo gdb -batch -ex bt -p 29126 [New LWP 29127] [New LWP 29128] [New LWP 29129] [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". 0x00007fb9b9ed374d in poll () at ../sysdeps/unix/syscall-template.S:84 84 ../sysdeps/unix/syscall-template.S: No such file or directory. #0 0x00007fb9b9ed374d in poll () at ../sysdeps/unix/syscall-template.S:84 #1 0x00000000004ea81c in GTK2POLLFUNCTION (UFDS=0x3858b80, NFSD=5, TIMEOUT=50) at gtk2/gtk2widgetset.inc:44 #2 0x00007fb9bad9238c in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 #3 0x00007fb9bad92712 in g_main_loop_run () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 #4 0x00007fb9bb371b83 in gtk_dialog_run () from /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0 #5 0x000000000050c264 in PROMPTUSER (this=0x7fb9bc6fa310, DIALOGCAPTION=0x137b180 "Error", DIALOGMESSAGE=0x7fb994e803d8 "Access violation", DIALOGTYPE=257, BUTTONS=0x7fb9a8943c60, BUTTONCOUNT=1, DEFAULTINDEX=0, ESCAPERESULT=2) at gtk2/gtk2lclintf.inc:1271 #6 0x00000000005b982d in PROMPTUSER (DIALOGCAPTION=0x137b180 "Error", DIALOGMESSAGE=0x7fb994e803d8 "Access violation", DIALOGTYPE=257, BUTTONS=0x7fb9a8943c60, BUTTONCOUNT=1, DEFAULTINDEX=0, ESCAPERESULT=2) at include/lclintf.inc:376 #7 0x000000000057ae91 in MESSAGEDLG (ACAPTION=0x137b180 "Error", AMSG=0x11fdc10 "Access violation", DLGTYPE=MTERROR, BUTTONS=..., HELPCTX=0) at include/messagedialogs.inc:148 #8 0x00000000008d5937 in SETROWVALUE (this=0x7fb994a87930, CHECKFOCUS=true, FORCEVALUE=true) at objectinspector.pp:1602 #9 0x00000000008d65c3 in VALUECHECKBOXCLICK (this=0x7fb994a87930, SENDER=0x7fb994a88d90) at objectinspector.pp:1764 #10 0x0000000000cc7e33 in SETSTATE (this=0x7fb994a88d90, AVALUE=CBUNCHECKED) at checkboxthemed.pas:475 #11 0x0000000000cc7d14 in SETCHECKED (this=0x7fb994a88d90, AVALUE=false) at checkboxthemed.pas:460 #12 0x00000000008d86a5 in SETITEMINDEXANDFOCUS (this=0x7fb994a87930, NEWITEMINDEX=0, WASVALUECLICK=true) at objectinspector.pp:2295 #13 0x00000000008d8a30 in MOUSEDOWN (this=0x7fb994a87930, BUTTON=MBLEFT, SHIFT=..., X=184, Y=7) at objectinspector.pp:2399 #14 0x00000000005a1998 in DOMOUSEDOWN (this=0x7fb994a87930, MESSAGE=..., BUTTON=MBLEFT, SHIFT=...) at include/control.inc:2283 #15 0x00000000005a1fd9 in WMLBUTTONDOWN (this=0x7fb994a87930, MESSAGE=...) at include/control.inc:2462 #16 0x0000000000431bca in SYSTEM$_$TOBJECT_$__$$_DISPATCH$formal () #17 0x00007fb994a87930 in ?? () #18 0x00007fff33fc7e10 in ?? () #19 0x0000000000000201 in ?? () #20 0x000000000000002c in ?? () #21 0x00000000016d3900 in .Ld233 () #22 0x00000000016d3228 in VMT_$CONTROLS_$$_TWINCONTROL$indirect () #23 0x00007fff33fc8090 in ?? () #24 0x0000000003c41710 in ?? () #25 0x00007fff33fc80b0 in ?? () #26 0x00007fff33fc8110 in ?? () #27 0x000000000066aee0 in ?? () #28 0x00000000005a18a4 in WNDPROC (this=0x7fb994a87930, THEMESSAGE=...) at include/control.inc:2243 #29 0x0000000000594899 in WNDPROC (this=0x7fb994a87930, MESSAGE=...) at include/wincontrol.inc:5425 #30 0x0000000000754322 in DELIVERMESSAGE (TARGET=0x7fb994a87930, AMESSAGE=0) at lclmessageglue.pas:112 #31 0x000000000065d950 in DELIVERMESSAGE (TARGET=0x7fb994a87930, AMESSAGE=0) at gtk2/gtk2proc.inc:3780 #32 0x000000000066b8a9 in DELIVERMOUSEDOWNMESSAGE (WIDGET=0x3c287f0, EVENT=0x41f8c30, AWINCONTROL=0x7fb994a87930) at gtk2/gtk2callback.inc:2071 #33 0x000000000066af18 in GTKMOUSEBTNPRESS (WIDGET=0x3c41710, EVENT=0x41f8c30, DATA=0x7fb994a87930) at gtk2/gtk2callback.inc:1798 -------------- next part -------------- An HTML attachment was scrubbed... URL: From sysrpl at gmail.com Thu Apr 4 20:21:36 2019 From: sysrpl at gmail.com (Anthony Walter) Date: Thu, 4 Apr 2019 14:21:36 -0400 Subject: [Lazarus] Lots of access violations with TSQLConnection TSQLQuery on Linux In-Reply-To: References: Message-ID: I've filed a bug here with additional information and steps to reproduce: https://bugs.freepascal.org/view.php?id=35322 -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at freepascal.org Thu Apr 4 20:42:30 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Thu, 4 Apr 2019 20:42:30 +0200 (CEST) Subject: [Lazarus] Lots of access violations with TSQLConnection TSQLQuery on Linux In-Reply-To: References: Message-ID: On Thu, 4 Apr 2019, Anthony Walter wrote: > Sven, > > I am fairly confident that I have all the required libraries installed and > configured correctly. Everything works fine, including reading data from my > remote server and applying updates. The exception is that if at design time > I change the Active property of any data related non visual component, then > I get an AV. Also, I did follow the instructions or guide on that page > prior to your suggestion and ti helped me connect to my remote server. > > Michael, > > To be sure I have the correct sources, I tried this twice. Once with my > current Lazarus, and again with svn fixes_2_0 Lazarus. Both exhibit the > same behavior and stack trace. Here is a screenshot of the error and the > stack trace. I simply opened the my project, set the SQL query Active > property to False, and I get this error. > > https://cache.getlazarus.org/images/sql-linux-av.jpg Unfortunately, this stack trace is useless: it is the stack trace when the dialog is shown, not when the actual AV happens. You need to debug the IDE and post the stacktrace when the AV happened. Michael. From sysrpl at gmail.com Thu Apr 4 20:58:45 2019 From: sysrpl at gmail.com (Anthony Walter) Date: Thu, 4 Apr 2019 14:58:45 -0400 Subject: [Lazarus] Lots of access violations with TSQLConnection TSQLQuery on Linux In-Reply-To: References: Message-ID: Okay, I will work on it a little later and update the bug tracker and also this thread. -------------- next part -------------- An HTML attachment was scrubbed... URL: From leobronstain at gmail.com Thu Apr 4 21:10:15 2019 From: leobronstain at gmail.com (leyba bronstain) Date: Thu, 4 Apr 2019 22:10:15 +0300 Subject: [Lazarus] Compilation error Lazarus r.60828 In-Reply-To: References: <169a5b0c-48e8-64b3-7da9-bc1357805b06@gmail.com> Message-ID: It's OK. Thank a lot. 04.04.2019 20:41, Juha Manninen via lazarus пишет: > On Thu, Apr 4, 2019 at 4:01 PM leyba bronstain via lazarus > wrote: >> Pls, fix it. > Fixed. Please test with latest trunk. > See also: > https://bugs.freepascal.org/view.php?id=35310 > > Juha From bo.berglund at gmail.com Thu Apr 4 21:31:54 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Thu, 04 Apr 2019 15:31:54 -0400 Subject: [Lazarus] Got Lazarus 2.0.0 from SVN, missing help files References: <20190403184427.03a7a2a0@limapholos.matflo.wg> <1ekaaetku1hb1lg2g4vpc6vdudb0l32kvg@4ax.com> Message-ID: <7hmcaeh5devirdmqrhnkg55ltqu0i29bfc@4ax.com> On Wed, 03 Apr 2019 20:38:15 -0400, Bo Berglund via lazarus wrote: >On Wed, 3 Apr 2019 18:44:27 +0200, Mattias Gaertner via lazarus > wrote: > >>You can download them from here: >>https://svn.freepascal.org/svn/lazarus/binaries/docs/chm/ >>and put them into lazarus/docs/chm/ >> > >Thanks, I will do that. >Maybe I can even check them out from svn directly into that folder? What I did in the end: In a terminal: cd ~/dev/lazarus/2.0.0/docs svn export --force https://svn.freepascal.org/svn/lazarus/binaries/docs/chm chm The checkout took a while but when done I closed and started Lazarus 2.0.0 and then used the F1 key with the cursor on the word StrToIntDef, which did not work before, but now the help page appeared! Thanks for the help, I will add this to my document on how to install fpc/lazarus from svn sources. Question: What will happen if I use co rather than export? I will then have a working copy within another working copy, is that goind to screw up my updates down the line? -- Bo Berglund Developer in Sweden From bartjunk64 at gmail.com Thu Apr 4 22:40:12 2019 From: bartjunk64 at gmail.com (Bart) Date: Thu, 4 Apr 2019 22:40:12 +0200 Subject: [Lazarus] Lots of access violations with TSQLConnection TSQLQuery on Linux In-Reply-To: References: Message-ID: On Thu, Apr 4, 2019 at 8:22 PM Anthony Walter via lazarus wrote: > I've filed a bug here with additional information and steps to reproduce: > > https://bugs.freepascal.org/view.php?id=35322 You posted that in Lazarus-CCR section. Bart -- Bart From don.siders at gmail.com Fri Apr 5 07:00:31 2019 From: don.siders at gmail.com (Don Siders) Date: Fri, 5 Apr 2019 01:00:31 -0400 Subject: [Lazarus] How does LazUtils Help get built? Message-ID: I've been updating help topics lately. It would be nice if I could build the help/html files locally to see how they are affected by changes. I've stumbled across build_lcl_docs already. But I haven't unearthed anything for lazutils yet. Is there a FPDoc project file or a script + program as used in build_lcl_docs? -------------- next part -------------- An HTML attachment was scrubbed... URL: From don.siders at gmail.com Fri Apr 5 07:11:45 2019 From: don.siders at gmail.com (Don Siders) Date: Fri, 5 Apr 2019 01:11:45 -0400 Subject: [Lazarus] How does LazUtils Help get built? In-Reply-To: References: Message-ID: Never mind. After looking more closely at build_lcl_docs, I see it does both . On Fri, Apr 5, 2019 at 1:00 AM Don Siders wrote: > I've been updating help topics lately. It would be nice if I could build > the help/html files locally to see how they are affected by changes. I've > stumbled across build_lcl_docs already. But I haven't unearthed anything > for lazutils yet. > > Is there a FPDoc project file or a script + program as used in > build_lcl_docs? > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmlandmesser at gmx.de Fri Apr 5 11:06:48 2019 From: jmlandmesser at gmx.de (John Landmesser) Date: Fri, 5 Apr 2019 11:06:48 +0200 Subject: [Lazarus] make useride error In-Reply-To: <56bfddf1-d313-1122-6ad9-9596f620d1cf@gmx.de> References: <56bfddf1-d313-1122-6ad9-9596f620d1cf@gmx.de> Message-ID: Solution: Delete ~/.lazarus configuration files and start configuring Lazarus again from scratch. Am 15.03.19 um 22:21 schrieb John Landmesser via lazarus: > if i svn update lazarus and then make useride > > i get in terminal this error: > > make[2]: Entering directory '/home/john1/lazarus/ide' > make[1]: *** No rule to make target 'cleanide ide'.  Stop. > /usr/bin/rm -f > /usr/bin/rm -f > /usr/bin/rm -f > repeats ... > > make[2]: Leaving directory '/home/john1/lazarus/ide' > make[1]: Leaving directory '/home/john1/lazarus' > Error: (lazarus) IDE erstellen: stopped with exit code 2 > Error: (lazarus) Building IDE: Building IDE failed. > make: *** [Makefile:3279: useride] Fehler 2 > > > Line 3279 in Makefile is: > > useride: >     ./lazbuild$(SRCEXEEXT) --lazarusdir=. --build-ide= > > > No probs compiling out of the IDE itself! > > > Systeminfo: > > Lazarus 2.1.0 r60688M FPC 3.0.4 x86_64-linux-gtk2 > From marc at dommelstein.nl Sat Apr 6 18:00:44 2019 From: marc at dommelstein.nl (Marc Weustink) Date: Sat, 6 Apr 2019 18:00:44 +0200 Subject: [Lazarus] Default https for all lazarus-ide sites Message-ID: Hi all, You might have noticed, but all lazarus-ide sites now default to https. When you used to visit the forum by http, you my be asked to reenter your password. Marc From leobronstain at gmail.com Sun Apr 7 21:35:23 2019 From: leobronstain at gmail.com (leyba bronstain) Date: Sun, 7 Apr 2019 22:35:23 +0300 Subject: [Lazarus] WordWrap doesn't work for TStaticText on Linux GTK2? Message-ID: For detail, please, see https://forum.lazarus.freepascal.org/index.php/topic,44965.0.html WBR, Zoltanleo From mike.cornflake at gmail.com Tue Apr 9 11:12:05 2019 From: mike.cornflake at gmail.com (Michael Thompson) Date: Tue, 9 Apr 2019 17:12:05 +0800 Subject: [Lazarus] fpexif leak Message-ID: G'day, I posted a patch for fpexif a little while back. Not sure who maintains fpexif, but could they review and hopefully apply? I forgot to add 'patch' to the name of the ticket I raised. I'm convinced it's a typo in the code... An object is being created but only freed if an exception is raised, suspect the "except" should be "finally". I've been running with the patched code for a while now with no issue. https://bugs.freepascal.org/view.php?id=34537 Many thanks Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From werner.pamler at freenet.de Tue Apr 9 11:26:54 2019 From: werner.pamler at freenet.de (Werner Pamler) Date: Tue, 9 Apr 2019 11:26:54 +0200 Subject: [Lazarus] fpexif leak In-Reply-To: References: Message-ID: Am 09.04.2019 um 11:12 schrieb Michael Thompson via lazarus: > G'day, > > I posted a patch for fpexif a little while back.  Not sure who > maintains fpexif, but could they review and hopefully apply?  I forgot > to add 'patch' to the name of the ticket I raised. > > I'm convinced it's a typo in the code...  An object is being created > but only freed if an exception is raised, suspect the "except" should > be "finally". > > I've been running with the patched code for a while now with no issue. > > https://bugs.freepascal.org/view.php?id=34537 Oh, sorry, I did not see this one. It should be fixed now. From mike.cornflake at gmail.com Wed Apr 10 01:27:25 2019 From: mike.cornflake at gmail.com (Michael Thompson) Date: Wed, 10 Apr 2019 07:27:25 +0800 Subject: [Lazarus] fpexif leak In-Reply-To: References: Message-ID: > Oh, sorry, I did not see this one Not a problem. Many thanks :-) Cheers Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From leobronstain at gmail.com Thu Apr 11 13:30:51 2019 From: leobronstain at gmail.com (leyba bronstain) Date: Thu, 11 Apr 2019 14:30:51 +0300 Subject: [Lazarus] TLabeledEdit: Incorrect component anchoring Message-ID: Hi all. Looks like I found a bug. To the top side anchors Edit subcomponent instead SubLabel subcomponent. I created a separate topic here: https://forum.lazarus.freepascal.org/index.php/topic,45020.0.html I told all the details there (test project and picture). WBR, Zoltanleo. From leobronstain at gmail.com Thu Apr 11 13:34:20 2019 From: leobronstain at gmail.com (leyba bronstain) Date: Thu, 11 Apr 2019 14:34:20 +0300 Subject: [Lazarus] TLabeledEdit: Incorrect component anchoring In-Reply-To: References: Message-ID: Sorry, my email client works disgustingly today :( WBR, Zoltanleo. > >          Hi all. > >          Looks like I found a bug. To the top side anchors Edit >          subcomponent instead SubLabel > > From bo.berglund at gmail.com Thu Apr 11 22:03:55 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Thu, 11 Apr 2019 22:03:55 +0200 Subject: [Lazarus] Command line interpretation on Linux console program... Message-ID: I have a project where I am creatinmg a video splitting utility using FPC 3.0.4 and Lazarus 2.0.0 calling ffmpeg via RunCommandIndir() defined in the Process library unit. The project contains both a GUI and a command line version of the utility, so all manipulation functions are contained in a separate unit used by both versions and both Windows and Linux. I have a strange problem with the command line utility... When I try to debug it there are two different, but possibly related problems: 1) When I enter a file name as ~/Videos/input.mp4 then FileExists() reports that the file does not exist even though I can clearly see it. If I instead use /home/user/Videos/input.mp4 then it will see it properly. Same if I use the syntax ./filename.mp4 when the file is in the current dir. Why does FileExists() not recognize ~ as shorthand for the home dir? It is rather inconvenient to be forced to use the longer paths... 2) Another issue concerns the parsing of command line parameters. Originally I had set it up to use ; as separator for the two time values of a clip, starttime and duration (in seconds) as follows: t1234;500 for a duration 500 s clip starting at 1234 s into the source video. But for some reason the ParamCount variable contains 3 when the command line looks like this: videosplitcmb -x -iorg.mp4 -t0;1768 -t2420;2972 -otest4.mp4 There should really be 5 parameters: -t, -i, -t, -t, -o Why is ; treated as some kind of block for the command line parsing? I have had to temporarily replace ; with _ in order to test my program... -- Bo Berglund Developer in Sweden From robin.listas at telefonica.net Thu Apr 11 22:30:44 2019 From: robin.listas at telefonica.net (Carlos E. R.) Date: Thu, 11 Apr 2019 22:30:44 +0200 Subject: [Lazarus] Command line interpretation on Linux console program... In-Reply-To: References: Message-ID: On 11/04/2019 22.03, Bo Berglund via lazarus wrote: > 2) Another issue concerns the parsing of command line parameters. > Originally I had set it up to use ; as separator for the two time > values of a clip, starttime and duration (in seconds) as follows: > t1234;500 for a duration 500 s clip starting at 1234 s into the source > video. > But for some reason the ParamCount variable contains 3 when the > command line looks like this: > > videosplitcmb -x -iorg.mp4 -t0;1768 -t2420;2972 -otest4.mp4 > > There should really be 5 parameters: -t, -i, -t, -t, -o > > Why is ; treated as some kind of block for the command line parsing? Bash also stops at the ';', it is a command separator. It is like entering two commands like this: videosplitcmb -x -iorg.mp4 -t0 1768 -t2420;2972 -otest4.mp4 You have to escape the ';', like this: '\;' In fact, if "videosplitcmb" is your program, it doesn't even see the second part, it is bash who stops at the ";" before calling "videosplitcmb". -- Cheers / Saludos, Carlos E. R. (from 15.0 x86_64 at Telcontar) -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 195 bytes Desc: OpenPGP digital signature URL: From bo.berglund at gmail.com Thu Apr 11 23:40:23 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Thu, 11 Apr 2019 23:40:23 +0200 Subject: [Lazarus] Command line interpretation on Linux console program... References: Message-ID: On Thu, 11 Apr 2019 22:30:44 +0200, "Carlos E. R. via lazarus" wrote: >In fact, if "videosplitcmb" is your program, it doesn't even see the >second part, it is bash who stops at the ";" before calling "videosplitcmb". Thanks, rather than taking on Linux I changed the separator to comma since the values are numeric whole seconds so a decimal separator would not come into play anyway.. Works fine... -- Bo Berglund Developer in Sweden From robin.listas at telefonica.net Fri Apr 12 03:49:36 2019 From: robin.listas at telefonica.net (Carlos E. R.) Date: Fri, 12 Apr 2019 03:49:36 +0200 Subject: [Lazarus] Command line interpretation on Linux console program... In-Reply-To: References: Message-ID: On 11/04/2019 23.40, Bo Berglund via lazarus wrote: > On Thu, 11 Apr 2019 22:30:44 +0200, "Carlos E. R. via lazarus" > wrote: > >> In fact, if "videosplitcmb" is your program, it doesn't even see the >> second part, it is bash who stops at the ";" before calling "videosplitcmb". > > Thanks, > rather than taking on Linux I changed the separator to comma since the > values are numeric whole seconds so a decimal separator would not come > into play anyway.. > Works fine... That assumes that you will never operate that program on different languages than yours, because, for instance, here the decimal separator is a comma. -- Cheers / Saludos, Carlos E. R. (from 15.0 x86_64 at Telcontar) -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 195 bytes Desc: OpenPGP digital signature URL: From wkitty42 at windstream.net Fri Apr 12 04:26:04 2019 From: wkitty42 at windstream.net (wkitty42 at windstream.net) Date: Thu, 11 Apr 2019 22:26:04 -0400 Subject: [Lazarus] Command line interpretation on Linux console program... In-Reply-To: References: Message-ID: <27b5d302-0930-4921-14f2-bcec5ef19763@windstream.net> On 4/11/19 9:49 PM, Carlos E. R. via lazarus wrote: > That assumes that you will never operate that program on different > languages than yours, because, for instance, here the decimal separator > is a comma. not for *whole* seconds ;) -- NOTE: No off-list assistance is given without prior approval. *Please keep mailing list traffic on the list unless* *a signed and pre-paid contract is in effect with us.* From fpc at pascalprogramming.org Fri Apr 12 09:34:00 2019 From: fpc at pascalprogramming.org (Marco van de Voort) Date: Fri, 12 Apr 2019 09:34:00 +0200 Subject: [Lazarus] Command line interpretation on Linux console program... In-Reply-To: References: Message-ID: Op 2019-04-11 om 22:03 schreef Bo Berglund via lazarus: > > 1) When I enter a file name as ~/Videos/input.mp4 then FileExists() > reports that the file does not exist even though I can clearly see it. > If I instead use /home/user/Videos/input.mp4 then it will see it > properly. Same if I use the syntax ./filename.mp4 when the file is in > the current dir. > Why does FileExists() not recognize ~ as shorthand for the home dir? > It is rather inconvenient to be forced to use the longer paths... Because expanding ~ happens on the shell level, and programs usually don't see it (they get their parameters already substituted). If they use ~ and other shell modifiers themselves, e.g. in configuration, it is the programmer's responsibility to do substitutions he likes to support. > 2) Another issue concerns the parsing of command line parameters. > Originally I had set it up to use ; as separator for the two time > values of a clip, starttime and duration (in seconds) as follows: > t1234;500 for a duration 500 s clip starting at 1234 s into the source > video. > But for some reason the ParamCount variable contains 3 when the > command line looks like this: Here also, the shell does parameter separation on *nix, and the program receives an array. From werner.pamler at freenet.de Fri Apr 12 19:35:03 2019 From: werner.pamler at freenet.de (Werner Pamler) Date: Fri, 12 Apr 2019 19:35:03 +0200 Subject: [Lazarus] Event with changed signature can be loaded without error Message-ID: <0dc1e113-805f-1683-54f7-ce6fa788e7de@freenet.de> I don't know: is this changed or am I fooled by my memory? I was rather sure that when the signature of a published event is changed, forms saved with the old signature cannot be read without error. But now I notice that this is not true any more. The version of TAChart which I just committed to trunk had to change the signature of the TChartDataPointDrawEvent event from    procedure (ASender: TDataPointDrawTool) of object; to  procedure (ASender: TDataPointDrawTool;  ADrawer: IChartDrawer) of object; Testing this with the demo in folder (lazarus)/components/tachart/demo/tools in which the event is handled I was expecting an error - but no, the program compiles and runs fine as if nothing had changed. Am I missing something? From bo.berglund at gmail.com Fri Apr 12 20:12:23 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Fri, 12 Apr 2019 20:12:23 +0200 Subject: [Lazarus] Command line interpretation on Linux console program... References: Message-ID: <66l1belipr0vk0tshrtscn2n0ocme7fttg@4ax.com> On Fri, 12 Apr 2019 03:49:36 +0200, "Carlos E. R. via lazarus" wrote: > >That assumes that you will never operate that program on different >languages than yours, because, for instance, here the decimal separator >is a comma. I am in Sweden where we use comma as decimal separator and this is why I wrote my comment about the integer seconds needing no decimals. -- Bo Berglund Developer in Sweden From nc-gaertnma at netcologne.de Fri Apr 12 20:20:51 2019 From: nc-gaertnma at netcologne.de (Mattias Gaertner) Date: Fri, 12 Apr 2019 20:20:51 +0200 Subject: [Lazarus] Event with changed signature can be loaded without error In-Reply-To: <0dc1e113-805f-1683-54f7-ce6fa788e7de@freenet.de> References: <0dc1e113-805f-1683-54f7-ce6fa788e7de@freenet.de> Message-ID: <20190412202051.2e8d880a@limapholos.matflo.wg> On Fri, 12 Apr 2019 19:35:03 +0200 Werner Pamler via lazarus wrote: > I don't know: is this changed or am I fooled by my memory? I was > rather sure that when the signature of a published event is changed, > forms saved with the old signature cannot be read without error. But > now I notice that this is not true any more. Loading a form only checks the name, not the signature. > The version of TAChart which I just committed to trunk had to change > the signature of the TChartDataPointDrawEvent event from > >    procedure (ASender: TDataPointDrawTool) of object; > > to > >  procedure (ASender: TDataPointDrawTool;  ADrawer: IChartDrawer) of > object; > > Testing this with the demo in folder > (lazarus)/components/tachart/demo/tools in which the event is handled > I was expecting an error - but no, the program compiles and runs fine > as if nothing had changed. > > Am I missing something? You were just lucky. Mattias From lazarus at kluug.net Fri Apr 12 20:23:33 2019 From: lazarus at kluug.net (Ondrej Pokorny) Date: Fri, 12 Apr 2019 20:23:33 +0200 Subject: [Lazarus] Event with changed signature can be loaded without error In-Reply-To: <0dc1e113-805f-1683-54f7-ce6fa788e7de@freenet.de> References: <0dc1e113-805f-1683-54f7-ce6fa788e7de@freenet.de> Message-ID: On 12.04.2019 19:35, Werner Pamler via lazarus wrote: > I don't know: is this changed or am I fooled by my memory? I was > rather sure that when the signature of a published event is changed, > forms saved with the old signature cannot be read without error. But > now I notice that this is not true any more. AFAIR it has always been so. Didn't you mix up with virtual methods? > The version of TAChart which I just committed to trunk had to change > the signature of the TChartDataPointDrawEvent event from > >    procedure (ASender: TDataPointDrawTool) of object; > > to > >  procedure (ASender: TDataPointDrawTool;  ADrawer: IChartDrawer) of > object; You must never change the signature of published events. You pick up a new name, deprecate the old one and after a stable release you delete the deprecated one. In this way you still break compatibility, but in a way that the user is notified about it. I hope you will have more understanding for breaking changes in the future after this experience :) Ondrej From bo.berglund at gmail.com Fri Apr 12 20:28:58 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Fri, 12 Apr 2019 20:28:58 +0200 Subject: [Lazarus] Command line interpretation on Linux console program... References: Message-ID: On Thu, 11 Apr 2019 22:03:55 +0200, Bo Berglund via lazarus wrote: >I have a project where I am creatinmg a video splitting utility using >FPC 3.0.4 and Lazarus 2.0.0 calling ffmpeg via RunCommandIndir() >defined in the Process library unit. A project related question for the command line utility: -------------------------------------------------------- I have enabled the addition of version information in Project properties (just version info, no icon). So I filled it all in and hit OK then used Run/build to create the executable. Now my question is this: How can I inspect the program file and verify that the version info is actually included? My development machine is a Linux Mint 19 virtual computer under VMWare Workstation PRO15. I used the system file browser (named Caja) and navigated to the file, right clicked and selected properties. But nothing showed up regarding my info. So how can I see what was entered as version info? In Delphi it used to be that you had to do a build to stuff it into the executable. So I have used Run/build to create it. -- Bo Berglund Developer in Sweden From werner.pamler at freenet.de Fri Apr 12 22:29:59 2019 From: werner.pamler at freenet.de (Werner Pamler) Date: Fri, 12 Apr 2019 22:29:59 +0200 Subject: [Lazarus] Event with changed signature can be loaded without error In-Reply-To: References: <0dc1e113-805f-1683-54f7-ce6fa788e7de@freenet.de> Message-ID: <6161fb1d-43e1-ac1a-4e06-99efced6dec7@freenet.de> Am 12.04.2019 um 20:23 schrieb Ondrej Pokorny via lazarus: > On 12.04.2019 19:35, Werner Pamler via lazarus wrote: >> I don't know: is this changed or am I fooled by my memory? I was >> rather sure that when the signature of a published event is changed, >> forms saved with the old signature cannot be read without error. But >> now I notice that this is not true any more. > > AFAIR it has always been so. Didn't you mix up with virtual methods? I mixed up loading and and toggling between form and code view, and my memory refers to Delphi. I just tested it again: After loading a D7 project with a VirtualTreeView into Delphi XE2 and pressing F12 to toggle to Form view I get the error "Method ... to which VirtualStringTree1.OnGetText refers has an incompatible parameter list" because the D7 event signature contains a widestring parameter, but the XE2 event contains a normal string parameter. - When i load the toolsdemo mentioned in the first message into Lazarus and press F12 nothing happens although the parameter list is different. Strange. > You must never change the signature of published events. You pick up a > new name, deprecate the old one and after a stable release you delete > the deprecated one. In this way you still break compatibility, but in > a way that the user is notified about it. > > I hope you will have more understanding for breaking changes in the > future after this experience :) Don't worry, it will be changed shorty, but I wanted to have an example which every interested reader could test easily without having to install anything. From bartjunk64 at gmail.com Fri Apr 12 23:38:52 2019 From: bartjunk64 at gmail.com (Bart) Date: Fri, 12 Apr 2019 23:38:52 +0200 Subject: [Lazarus] Event with changed signature can be loaded without error In-Reply-To: <0dc1e113-805f-1683-54f7-ce6fa788e7de@freenet.de> References: <0dc1e113-805f-1683-54f7-ce6fa788e7de@freenet.de> Message-ID: On Fri, Apr 12, 2019 at 7:38 PM Werner Pamler via lazarus wrote: > I don't know: is this changed or am I fooled by my memory? I was rather > sure that when the signature of a published event is changed, forms > saved with the old signature cannot be read without error. But now I > notice that this is not true any more. Memory serves you wrong. See https://bugs.freepascal.org/view.php?id=23032 -- Bart From lazarus at kluug.net Sat Apr 13 10:34:09 2019 From: lazarus at kluug.net (Ondrej Pokorny) Date: Sat, 13 Apr 2019 10:34:09 +0200 Subject: [Lazarus] Event with changed signature can be loaded without error In-Reply-To: <6161fb1d-43e1-ac1a-4e06-99efced6dec7@freenet.de> References: <0dc1e113-805f-1683-54f7-ce6fa788e7de@freenet.de> <6161fb1d-43e1-ac1a-4e06-99efced6dec7@freenet.de> Message-ID: On 12.04.2019 22:29, Werner Pamler via lazarus wrote: > Am 12.04.2019 um 20:23 schrieb Ondrej Pokorny via lazarus: >> I hope you will have more understanding for breaking changes in the >> future after this experience :) > > Don't worry, it will be changed shorty, but I wanted to have an > example which every interested reader could test easily without having > to install anything. No problem with that. I know that sometimes it is necessary to change the parameters of e.g. a virtual method even if it means that libraries supporting several Lazarus versions have to use IFDEFs for the overrides. I do understand it. Ondrej From vojtech.cihak at atlas.cz Sat Apr 13 14:41:01 2019 From: vojtech.cihak at atlas.cz (=?utf-8?q?Vojt=C4=9Bch_=C4=8Cih=C3=A1k?=) Date: Sat, 13 Apr 2019 14:41:01 +0200 Subject: [Lazarus] =?utf-8?q?Cannot_build_trunk?= Message-ID: <20190413144101.D428AC8C@atlas.cz> Hi,   the latest trunk 60960 can't be built: fppkghelper.pas(524,20) Error: Identifier idents no member "ConfigurationFilename"   Thanks, Vojtěch From fjf.vanleeuwen at quicknet.nl Sat Apr 13 16:17:19 2019 From: fjf.vanleeuwen at quicknet.nl (frans) Date: Sat, 13 Apr 2019 16:17:19 +0200 Subject: [Lazarus] SVN and missing components Message-ID: <9919dc9e-1c41-e604-91e1-b314db469f06@quicknet.nl> Hi, Can anyone explain to me why not all possible components are availabe on SVN? Foir instance sqldb and splashabout? -- mvg Frans van Leeuwen M 06-51695390 --- Deze e-mail is gecontroleerd op virussen door AVG. http://www.avg.com From joost at cnoc.nl Sat Apr 13 16:55:54 2019 From: joost at cnoc.nl (Joost van der Sluis) Date: Sat, 13 Apr 2019 16:55:54 +0200 Subject: [Lazarus] Cannot build trunk In-Reply-To: <20190413144101.D428AC8C@atlas.cz> References: <20190413144101.D428AC8C@atlas.cz> Message-ID: <509d9725-196f-d7a5-7cc6-13a643dacf85@cnoc.nl> Op 13-04-19 om 14:41 schreef Vojtěch Čihák via lazarus: > the latest trunk 60960 can't be built: fppkghelper.pas(524,20) Error: Identifier idents no member "ConfigurationFilename" You have to update fpc. (I suppost you are using fpc-trunk?) Regards, Joost. From joost at cnoc.nl Sat Apr 13 17:01:24 2019 From: joost at cnoc.nl (Joost van der Sluis) Date: Sat, 13 Apr 2019 17:01:24 +0200 Subject: [Lazarus] SVN and missing components In-Reply-To: <9919dc9e-1c41-e604-91e1-b314db469f06@quicknet.nl> References: <9919dc9e-1c41-e604-91e1-b314db469f06@quicknet.nl> Message-ID: <8279e683-f015-901b-4d68-848dd1c39dfd@cnoc.nl> Op 13-04-19 om 16:17 schreef frans via lazarus: > Can anyone explain to me why not all possible components are availabe on > SVN? > Foir instance sqldb and splashabout? Well, one of those is available on svn: https://svn.freepascal.org/cgi-bin/viewvc.cgi/trunk/packages/fcl-db/src/sqldb/ Maybe you couldn't find it because it is part of fpc, and not Lazarus? The other component is part of neither fpc or Lazarus, but a third-party component. You have to ask the people who wrote it where you can find the source. Regards, Joost. -- http://lazarussupport.com - Your donation helps to push Free Pascal and Lazarus forwards. From vojtech.cihak at atlas.cz Sat Apr 13 18:08:25 2019 From: vojtech.cihak at atlas.cz (=?utf-8?q?Vojt=C4=9Bch_=C4=8Cih=C3=A1k?=) Date: Sat, 13 Apr 2019 18:08:25 +0200 Subject: [Lazarus] =?utf-8?q?Cannot_build_trunk?= In-Reply-To: <509d9725-196f-d7a5-7cc6-13a643dacf85@cnoc.nl> References: <20190413144101.D428AC8C@atlas.cz> <509d9725-196f-d7a5-7cc6-13a643dacf85@cnoc.nl> Message-ID: <20190413180825.DDCCA5C8@atlas.cz> Thanks,   yes, I use FPC trunk. Upgrade to 41865 resolved my troubles.   Vojtěch. ______________________________________________________________ > Od: "Joost van der Sluis via lazarus" > Komu: lazarus at lists.lazarus-ide.org > Datum: 13.04.2019 16:56 > Předmět: Re: [Lazarus] Cannot build trunk > Op 13-04-19 om 14:41 schreef Vojtěch Čihák via lazarus: > the latest trunk 60960 can't be built: fppkghelper.pas(524,20) Error: Identifier idents no member "ConfigurationFilename" You have to update fpc. (I suppost you are using fpc-trunk?) Regards, Joost. -- _______________________________________________ lazarus mailing list lazarus at lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus -------------- next part -------------- An HTML attachment was scrubbed... URL: From mailinglists at geldenhuys.co.uk Sun Apr 14 17:54:51 2019 From: mailinglists at geldenhuys.co.uk (Graeme Geldenhuys) Date: Sun, 14 Apr 2019 16:54:51 +0100 Subject: [Lazarus] Building lazarus from cli - how to specify target widgetset Message-ID: <011a8c1d-0caa-548c-841a-591e34b5b622@geldenhuys.co.uk> As the subject lines says, how do I build lazarus IDE and LCL from the Linux command line and specify a specific widgetset target. eg: lcl-gtk1 instead of the default lcl-gtk2. Regards, Graeme -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://fpgui.sourceforge.net/ My public PGP key: http://tinyurl.com/graeme-pgp From zeljko at holobit.net Sun Apr 14 18:23:04 2019 From: zeljko at holobit.net (zeljko) Date: Sun, 14 Apr 2019 18:23:04 +0200 Subject: [Lazarus] Building lazarus from cli - how to specify target widgetset In-Reply-To: <011a8c1d-0caa-548c-841a-591e34b5b622@geldenhuys.co.uk> References: <011a8c1d-0caa-548c-841a-591e34b5b622@geldenhuys.co.uk> Message-ID: On 04/14/2019 05:54 PM, Graeme Geldenhuys via lazarus wrote: > As the subject lines says, how do I build lazarus IDE and LCL from the > Linux command line and specify a specific widgetset target. eg: lcl-gtk1 > instead of the default lcl-gtk2. make LCL_PLATFORM=gtk , gtk2 is default so make only is sufficient. From zeljko at holobit.net Sun Apr 14 18:23:04 2019 From: zeljko at holobit.net (zeljko) Date: Sun, 14 Apr 2019 18:23:04 +0200 Subject: [Lazarus] Building lazarus from cli - how to specify target widgetset In-Reply-To: <011a8c1d-0caa-548c-841a-591e34b5b622@geldenhuys.co.uk> References: <011a8c1d-0caa-548c-841a-591e34b5b622@geldenhuys.co.uk> Message-ID: On 04/14/2019 05:54 PM, Graeme Geldenhuys via lazarus wrote: > As the subject lines says, how do I build lazarus IDE and LCL from the > Linux command line and specify a specific widgetset target. eg: lcl-gtk1 > instead of the default lcl-gtk2. make LCL_PLATFORM=gtk , gtk2 is default so make only is sufficient. From aaa5500 at ya.ru Sun Apr 14 18:28:26 2019 From: aaa5500 at ya.ru (AlexeyT) Date: Sun, 14 Apr 2019 19:28:26 +0300 Subject: [Lazarus] IDE trunk cannot build Message-ID: FPC 3.2 fixes. IDE last trunk. function TFppkgHelper.GetConfigurationFileName: string; begin   Result := '';   {$IF FPC_FULLVERSION>30100}   if Assigned(FFPpkg) then     Result:=FFPpkg.ConfigurationFilename;                    /////fppkghelper.pas(524,20) Error: identifier idents no member "ConfigurationFilename"   {$ENDIF} end; -- Regards, Alexey From mailinglists at geldenhuys.co.uk Sun Apr 14 18:40:31 2019 From: mailinglists at geldenhuys.co.uk (Graeme Geldenhuys) Date: Sun, 14 Apr 2019 17:40:31 +0100 Subject: [Lazarus] Building lazarus from cli - how to specify target widgetset In-Reply-To: References: <011a8c1d-0caa-548c-841a-591e34b5b622@geldenhuys.co.uk> Message-ID: <37584e84-02b1-f757-8729-f9410e535b0f@geldenhuys.co.uk> On 14/04/2019 17:23, zeljko wrote: > make LCL_PLATFORM=gtk Perfect, that worked. Thanks! Regards, Graeme From mailinglists at geldenhuys.co.uk Sun Apr 14 18:47:36 2019 From: mailinglists at geldenhuys.co.uk (Graeme Geldenhuys) Date: Sun, 14 Apr 2019 17:47:36 +0100 Subject: [Lazarus] Lazarus IDE compiled with lcl-gtk1 issues Message-ID: Hi, On 14/04/2019 17:40, Graeme Geldenhuys via lazarus wrote: > Perfect, that worked. OK, I spoke too soon. :-) I'm using Lazarus r60773 dated 26 March 2019. The build worked, but the IDE doesn't. I can't resize the main IDE dialog to see the tool palette. Also when I try and open any dialog... eg: Tools -> Options. or Help -> About. It throws and instant AV. $ ./lazarus [WARNING] Out of OEM specific VK codes, changing to unassigned [WARNING] Out of unassigned VK codes, assigning $FF Hint: (lazarus) [TMainIDE.ParseCmdLineOptions] PrimaryConfigPath="/home/graemeg/.lazarus" Hint: (lazarus) [TMainIDE.ParseCmdLineOptions] SecondaryConfigPath="/etc/lazarus" Trace:ERROR: Signal 123 not found! Gtk-CRITICAL **: file gtkwidget.c: line 3722 (gtk_widget_get_parent_window): assertion `widget->parent != NULL' failed. .....snip.... Trace:ERROR: Signal 123 not found! Trace:ERROR: Signal 123 not found! Trace:ERROR: Signal 123 not found! TApplication.HandleException: EAccessViolation Access violation Stack trace: $00000000006E92C1 line 101 of include/imglist.inc $00000000006EEE7A line 1850 of include/imglist.inc $00000000006E2D57 line 120 of include/buttonglyph.inc $00000000007638DD line 301 of gtkwsbuttons.pp $00000000007634AD line 172 of gtkwsbuttons.pp $00000000006E250E line 350 of include/bitbtn.inc $0000000000642D6E line 7571 of include/wincontrol.inc $00000000006DEAE9 line 46 of include/buttons.inc $000000000064231E line 7455 of include/wincontrol.inc $0000000000643A67 line 7908 of include/wincontrol.inc $0000000000642E82 line 7590 of include/wincontrol.inc $000000000064231E line 7455 of include/wincontrol.inc $0000000000643A67 line 7908 of include/wincontrol.inc $0000000000642E82 line 7590 of include/wincontrol.inc $0000000000467E04 line 23 of include/scrollingwincontrol.inc $0000000000470F4D line 2701 of include/customform.inc $00000000004724F6 line 3156 of include/customform.inc Trace:ERROR: Signal 123 not found! Trace:ERROR: Signal 123 not found! WARNING: TMenuItem.Destroy with LCLRefCount>0. Hint: Maybe the component is processing an event? Regards, Graeme -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://fpgui.sourceforge.net/ My public PGP key: http://tinyurl.com/graeme-pgp From bo.berglund at gmail.com Mon Apr 15 00:59:16 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Mon, 15 Apr 2019 00:59:16 +0200 Subject: [Lazarus] How to use RunCommandIndir() in a thread? Message-ID: <96e7bepdl6c5msjt8rj999iplemjpfivjf@4ax.com> I havr written a wrapper for some ffmpeg functions to make them easier to work with. However, some of the functions are rather longish so the GUI application gets unresponsive... I would like to fix this perhaps by running the commands inside a thread, but I don't really know how that can be done... RunCommandIndir() is a command line interface I use to start ffmpeg with selected arguments. I would like to implement some solution that puts the RunCommandIndir() call into a thread so the main application could for instance show a running clock and have a button to interrupt the task if it turns out to be too long. Any suggestions on how to do this?` Or is there already a threaded version of RunCommandIndir() somewhere? I use Fpc 3.0.4 and Lazarus 2.0.0 on Windows 7 and Ubuntu Linux to compile for both environments. -- Bo Berglund Developer in Sweden From michael at freepascal.org Mon Apr 15 09:52:42 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Mon, 15 Apr 2019 09:52:42 +0200 (CEST) Subject: [Lazarus] Bug when using frames Message-ID: Hi, When you work with frames, you cannot change the frame in the designer when the frame is used in other frames/forms. - Create frame. - Add Control on frame (eg button) - Drop frame on a form or frame, keep open - Add event handler in original frame (e.g. Button.OnClick) -> event handler is set to Nil in the form where the frame is dropped. 3 issues: 1. The form/frame on which the frame is dropped should not set the event handler to Nil to begin with. 2. There is no way to restore the 'original state' of the frame. Delphi has a 'Revert to inherited' context menu. 3. To fix this, I do a 'View Source .lfm' and remove the Nil event handlers (OnClick = Nil) but that does not work, it keeps setting the event handlers to Nil. So now I quit lazarus, manually edit the .lfms and simply remove all superfluous properties from it. i.e. I do what a 'Revert to inherited' context menu would do, manually. Then I restart lazarus and force a build (compile is not enough) Far from ideal :( Before I dive in the bugtracker and create 3 bug reports, are these known issues ? Michael. From michael at freepascal.org Mon Apr 15 10:00:37 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Mon, 15 Apr 2019 10:00:37 +0200 (CEST) Subject: [Lazarus] Treeview bug Message-ID: Hi, When you set Multiselect = True, the treeview (Linux, GTK) sends OnChange messages with Nil node. procedure TCustomTreeView.OnChangeTimer(Sender: TObject); begin FChangeTimer.Enabled := False; //debugln('TCustomTreeView.OnChangeTimer'); FCallingChange := True; try Change(FSelectedNode); // <<-- FSelectedNode is Nil. finally FCallingChange := False; end; end; Is this by design ? Michael. From lazarus at kluug.net Mon Apr 15 10:06:17 2019 From: lazarus at kluug.net (Ondrej Pokorny) Date: Mon, 15 Apr 2019 10:06:17 +0200 Subject: [Lazarus] Bug when using frames In-Reply-To: References: Message-ID: <26bf00e0-e012-6d3b-a3dd-7bd81acb89b3@kluug.net> On 15.04.2019 09:52, Michael Van Canneyt via lazarus wrote: > Before I dive in the bugtracker and create 3 bug reports, are these > known issues ? I don't know if there are bug reports about it but I have been facing the same issues ever since as well. I didn't have the motivation to work on them, though. I rather create all my frames in runtime, which I also did in Delphi. Even Delphi lost properties/events (set event handlers to nil) of controls in frames quite frequently. Ondrej From serbod at gmail.com Mon Apr 15 13:07:00 2019 From: serbod at gmail.com (Sergey Bodrov) Date: Mon, 15 Apr 2019 14:07:00 +0300 Subject: [Lazarus] DesignPPI property in TDataModule Message-ID: What sense in PPI for non-visual design-time component? If it used by child DPI-aware components like TImageList, then IMHO better get PPI from TApplication. TDataModule.DesignPPI property cause error popups in Lazarus/Delphi multiplatform project. -- *Bodrov Sergey* software development, IT consulting http://www.serbod.com *Phone (Belarus):* +375(25)794-21-58 *Skype:* sergey.bodrov1 *e-mail:* serbod at gmail.com, oxotnuk at yandex.ru -------------- next part -------------- An HTML attachment was scrubbed... URL: From md at delfire.net Mon Apr 15 13:22:12 2019 From: md at delfire.net (Marcos Douglas B. Santos) Date: Mon, 15 Apr 2019 08:22:12 -0300 Subject: [Lazarus] Bug when using frames In-Reply-To: <26bf00e0-e012-6d3b-a3dd-7bd81acb89b3@kluug.net> References: <26bf00e0-e012-6d3b-a3dd-7bd81acb89b3@kluug.net> Message-ID: On Mon, Apr 15, 2019 at 5:06 AM Ondrej Pokorny via lazarus wrote: > ... > I rather create all my frames in runtime, which I also did in Delphi. > Even Delphi lost properties/events (set event handlers to nil) of > controls in frames quite frequently. +1 Much better create them, docking on a panel, in runtime only. Marcos Douglas From lazarus at kluug.net Mon Apr 15 13:24:19 2019 From: lazarus at kluug.net (Ondrej Pokorny) Date: Mon, 15 Apr 2019 13:24:19 +0200 Subject: [Lazarus] DesignPPI property in TDataModule In-Reply-To: References: Message-ID: <821b3711-71d9-87a0-a428-80f2edd18538@kluug.net> On 15.04.2019 13:07, Sergey Bodrov via lazarus wrote: > What sense in PPI for non-visual design-time component? What do you mean? There is no PPI property in non-visual design-time components. > If it used by child DPI-aware components like TImageList, then IMHO > better get PPI from TApplication. Again, there is no PPI property in TImageList. > TDataModule.DesignPPI property cause error popups in Lazarus/Delphi > multiplatform project. Yes, there is TDataModule.DesignPPI that makes sure the positions (Left/Top properties) of the non-visual components are scaled correctly. Ondrej From lazarus at kluug.net Mon Apr 15 13:42:14 2019 From: lazarus at kluug.net (Ondrej Pokorny) Date: Mon, 15 Apr 2019 13:42:14 +0200 Subject: [Lazarus] DesignPPI property in TDataModule In-Reply-To: <821b3711-71d9-87a0-a428-80f2edd18538@kluug.net> References: <821b3711-71d9-87a0-a428-80f2edd18538@kluug.net> Message-ID: <76d65c45-b66b-72e8-e8d3-fb9f307f2c59@kluug.net> On 15.04.2019 13:24, Ondrej Pokorny via lazarus wrote: > On 15.04.2019 13:07, Sergey Bodrov via lazarus wrote: >> TDataModule.DesignPPI property cause error popups in Lazarus/Delphi >> multiplatform project. > > Yes, there is TDataModule.DesignPPI that makes sure the positions > (Left/Top properties) of the non-visual components are scaled correctly. By the way, the default value of 96 should not be written to LFM/DFM. So you should not get any warnings if you develop at 96 DPI / 100% scaling. Ondrej From serbod at gmail.com Mon Apr 15 14:35:39 2019 From: serbod at gmail.com (Sergey Bodrov) Date: Mon, 15 Apr 2019 15:35:39 +0300 Subject: [Lazarus] DesignPPI property in TDataModule In-Reply-To: <76d65c45-b66b-72e8-e8d3-fb9f307f2c59@kluug.net> References: <821b3711-71d9-87a0-a428-80f2edd18538@kluug.net> <76d65c45-b66b-72e8-e8d3-fb9f307f2c59@kluug.net> Message-ID: пн, 15 апр. 2019 г. в 14:42, Ondrej Pokorny via lazarus < lazarus at lists.lazarus-ide.org>: > Yes, there is TDataModule.DesignPPI that makes sure the positions > > (Left/Top properties) of the non-visual components are scaled correctly. > > > By the way, the default value of 96 should not be written to LFM/DFM. So > you should not get any warnings if you develop at 96 DPI / 100% scaling. > content of some Delphi .DFM after Lazarus 2.0.0 win64 release: === object DMBaseClient: TDMBaseClient OnCreate = DataModuleCreate OnDestroy = DataModuleDestroy OldCreateOrder = False Height = 269 HorizontalOffset = 0 VerticalOffset = 0 Width = 441 *PPI = 96* object tmrCheckActivity: TTimer OnTimer = tmrCheckActivityTimer left = 104 top = 104 end object tmrProcessPackets: TTimer Interval = 1 OnTimer = tmrProcessPacketsTimer left = 104 top = 148 end end --- -- *Bodrov Sergey* software development, IT consulting http://www.serbod.com *Phone (Belarus):* +375(25)794-21-58 *Skype:* sergey.bodrov1 *e-mail:* serbod at gmail.com, oxotnuk at yandex.ru -------------- next part -------------- An HTML attachment was scrubbed... URL: From bo.berglund at gmail.com Mon Apr 15 14:49:49 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Mon, 15 Apr 2019 14:49:49 +0200 Subject: [Lazarus] How to use RunCommandIndir() in a thread? References: <96e7bepdl6c5msjt8rj999iplemjpfivjf@4ax.com> Message-ID: On Mon, 15 Apr 2019 00:59:16 +0200, Bo Berglund via lazarus wrote: >I havr written a wrapper for some ffmpeg functions to make them easier >to work with. >However, some of the functions are rather longish so the GUI >application gets unresponsive... >I would like to fix this perhaps by running the commands inside a >thread, but I don't really know how that can be done... >RunCommandIndir() is a command line interface I use to start ffmpeg >with selected arguments. >I would like to implement some solution that puts the >RunCommandIndir() call into a thread so the main application could for >instance show a running clock and have a button to interrupt the task >if it turns out to be too long. >Any suggestions on how to do this?` >Or is there already a threaded version of RunCommandIndir() somewhere? > >I use Fpc 3.0.4 and Lazarus 2.0.0 on Windows 7 and Ubuntu Linux to >compile for both environments. > I found a webpage describing basically the same as I am looking for: https://www.sigmdel.ca/michel/program/fpl/yweather/process_thread_en.html However this uses a TProcess object and I don't think that the call I am making (RunCommandIndir) will work in the Execute loop... He has the following in Execute(): ... var PlayProc: TProcess; begin PlayProc := TProcess.create(nil); try PlayProc.executable := 'aplay'; PlayProc.parameters.add(FFilename); PlayProc.Options := [poNoConsole]; PlayProc.execute; // <== Will this really return before done? while PlayProc.Running do // If not then we will not get here.... begin if StopPlay or AppClosing then begin if StopPlay or FTerminateProcess then PlayProc.terminate(1); exit; end else sleep(1); end; finally .... Seems like if one places a blocking call to a lengthy process in Execute() then one loses the ability to interrupt the running process, right? So how could it be done instead? -- Bo Berglund Developer in Sweden From bo.berglund at gmail.com Mon Apr 15 15:14:23 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Mon, 15 Apr 2019 15:14:23 +0200 Subject: [Lazarus] How to use RunCommandIndir() in a thread? References: <96e7bepdl6c5msjt8rj999iplemjpfivjf@4ax.com> Message-ID: On Mon, 15 Apr 2019 14:49:49 +0200, Bo Berglund via lazarus wrote: > PlayProc.execute; // <== Will this really return before done? Just checked and it will unless the poWaitOnExit option is speciufied. One can use a call to Running in the loop toi check if it is still active. So I guess if I adapt my code to use a TProcess object instead of the RunCommandInDir() call I could run it in a thread? -- Bo Berglund Developer in Sweden From juha.manninen62 at gmail.com Mon Apr 15 16:01:51 2019 From: juha.manninen62 at gmail.com (Juha Manninen) Date: Mon, 15 Apr 2019 17:01:51 +0300 Subject: [Lazarus] Treeview bug In-Reply-To: References: Message-ID: On Mon, Apr 15, 2019 at 11:00 AM Michael Van Canneyt via lazarus wrote: > When you set Multiselect = True, the treeview (Linux, GTK) sends OnChange > messages with Nil node. > > procedure TCustomTreeView.OnChangeTimer(Sender: TObject); The name OnChangeTimer hints the handler is for a timer. Is it so? Juha From juha.manninen62 at gmail.com Mon Apr 15 18:05:25 2019 From: juha.manninen62 at gmail.com (Juha Manninen) Date: Mon, 15 Apr 2019 19:05:25 +0300 Subject: [Lazarus] Bug when using frames In-Reply-To: References: Message-ID: On Mon, Apr 15, 2019 at 10:52 AM Michael Van Canneyt via lazarus wrote: > When you work with frames, you cannot change the frame in the designer when > the frame is used in other frames/forms. Maybe related to : https://bugs.freepascal.org/view.php?id=20026 or https://bugs.freepascal.org/view.php?id=12483 Juha From mike.cornflake at gmail.com Tue Apr 16 06:49:02 2019 From: mike.cornflake at gmail.com (Michael Thompson) Date: Tue, 16 Apr 2019 12:49:02 +0800 Subject: [Lazarus] How to use RunCommandIndir() in a thread? In-Reply-To: References: <96e7bepdl6c5msjt8rj999iplemjpfivjf@4ax.com> Message-ID: G'day, Sorry for not replying earlier, I'm under the pump at work. I run multiple ffprobe calls, each in their own thread. I can report there is no problem. So ffprobe itself is threadsafe. I also use a (Lazarus) app called dmMediaConverter that calls ffmpeg in threads to convert video, so again ffmpeg is threadsafe. I use TProcess directly. It will be a day or two, but I can flick you through the code that sets up my TProcess, and I put together something on my thread logic. I can tell you that I have only ever written one threaded app in my life - and that was to thread ffprobe. The whole thing was much easier to develop than I thought. For resources I used the wiki, but mainly the Example Programs that ship with Lazarus. Apologies for the lack of actual info here. Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From mike.cornflake at gmail.com Tue Apr 16 06:49:02 2019 From: mike.cornflake at gmail.com (Michael Thompson) Date: Tue, 16 Apr 2019 12:49:02 +0800 Subject: [Lazarus] How to use RunCommandIndir() in a thread? In-Reply-To: References: <96e7bepdl6c5msjt8rj999iplemjpfivjf@4ax.com> Message-ID: G'day, Sorry for not replying earlier, I'm under the pump at work. I run multiple ffprobe calls, each in their own thread. I can report there is no problem. So ffprobe itself is threadsafe. I also use a (Lazarus) app called dmMediaConverter that calls ffmpeg in threads to convert video, so again ffmpeg is threadsafe. I use TProcess directly. It will be a day or two, but I can flick you through the code that sets up my TProcess, and I put together something on my thread logic. I can tell you that I have only ever written one threaded app in my life - and that was to thread ffprobe. The whole thing was much easier to develop than I thought. For resources I used the wiki, but mainly the Example Programs that ship with Lazarus. Apologies for the lack of actual info here. Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at freepascal.org Tue Apr 16 08:49:34 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Tue, 16 Apr 2019 08:49:34 +0200 (CEST) Subject: [Lazarus] Bug when using frames In-Reply-To: References: Message-ID: On Mon, 15 Apr 2019, Juha Manninen via lazarus wrote: > On Mon, Apr 15, 2019 at 10:52 AM Michael Van Canneyt via lazarus > wrote: >> When you work with frames, you cannot change the frame in the designer when >> the frame is used in other frames/forms. > > Maybe related to : > https://bugs.freepascal.org/view.php?id=20026 > or > https://bugs.freepascal.org/view.php?id=12483 Yep. Good that I asked first :) I added a feature request for 'revert to inherited'. Thanks ! Michael. From nc-gaertnma at netcologne.de Tue Apr 16 10:23:08 2019 From: nc-gaertnma at netcologne.de (Mattias Gaertner) Date: Tue, 16 Apr 2019 10:23:08 +0200 Subject: [Lazarus] Lazarus Release 2.0.2 Message-ID: <20190416102308.7320d54c@limapholos.matflo.wg> The Lazarus team is glad to announce the release of Lazarus 2.0.2. This release was built with FPC 3.0.4. The previous release Lazarus 2.0.0 was built with FPC 3.0.4 as well. Here is the list of changes for Lazarus and Free Pascal: http://wiki.lazarus.freepascal.org/Lazarus_2.0.0_release_notes http://wiki.lazarus.freepascal.org/User_Changes_3.0.4 Here is the list of fixes for Lazarus 2.0.x: http://wiki.freepascal.org/Lazarus_2.0_fixes_branch The release is available for download on SourceForge: http://sourceforge.net/projects/lazarus/files/ Choose your CPU, OS, distro and then the "Lazarus 2.0.2" directory. Checksums for the SourceForge files: http://www.lazarus-ide.org/index.php?page=checksums#2_0_2 Minimum requirements: Windows: 2k, XP, Vista, 7, 8, 8.1 and 10, 32 or 64bit. FreeBSD/Linux: gtk 2.8 for gtk2, qt4.5 for qt, qt5.6 for qt5, 32 or 64bit. Mac OS X: 10.5 to 10.12; Carbon (32bit), Cocoa (64bit, beta), qt and qt5 (32 or 64bit). The svn tag is http://svn.freepascal.org/svn/lazarus/tags/lazarus_2_0_2 For people who are blocked by SF, the Lazarus releases from SourceForge are mirrored at: ftp://ftp.freepascal.org/pub/lazarus/releases/ and later at (after some time for synchronization) http://mirrors.iwi.me/lazarus/ Mattias From dec12 at avidsoft.com.hk Tue Apr 16 17:07:00 2019 From: dec12 at avidsoft.com.hk (Dennis) Date: Tue, 16 Apr 2019 23:07:00 +0800 Subject: [Lazarus] Lazarus Release 2.0.2 In-Reply-To: <20190416102308.7320d54c@limapholos.matflo.wg> References: <20190416102308.7320d54c@limapholos.matflo.wg> Message-ID: Mattias Gaertner via lazarus wrote: > The Lazarus team is glad to announce the release of Lazarus 2.0.2. > > This release was built with FPC 3.0.4. > The previous release Lazarus 2.0.0 was built with FPC 3.0.4 as > well. Thank you so much for your contribution. Dennis From bo.berglund at gmail.com Tue Apr 16 19:17:11 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Tue, 16 Apr 2019 19:17:11 +0200 Subject: [Lazarus] How to use RunCommandIndir() in a thread? References: <96e7bepdl6c5msjt8rj999iplemjpfivjf@4ax.com> Message-ID: On Tue, 16 Apr 2019 12:49:02 +0800, Michael Thompson via lazarus wrote: >Sorry for not replying earlier, I'm under the pump at work. Don't be sorry! This is a peer-to-peer list AFAIK and anyone can pop in at their leisure. Noone is *required* to comment. But thanks for your comments! I have added a video recoding function to my existing non-threaded application now. And as I feared it is not very good because it disappears out into nothing-land for 5 minutes when it recodes a 5 minute test video. Looks like ffmpeg is actually "playing" the video at normal speed and saving a modified stream to the file. So it would be 45 minutes to recode a 45 min video with the wrong codec to begin with... So I will try my hand at using the hints from the article I linked to in order to have some user feedback. Maybe just write a period to the console every second and add a linefeed and the time in minutes every minute. This way the user can see something is happening at least. But it requires me to run the actual process in a separate thread of course. -- Bo Berglund Developer in Sweden From lazarus at kluug.net Tue Apr 16 21:41:03 2019 From: lazarus at kluug.net (Ondrej Pokorny) Date: Tue, 16 Apr 2019 21:41:03 +0200 Subject: [Lazarus] DesignPPI property in TDataModule In-Reply-To: References: <821b3711-71d9-87a0-a428-80f2edd18538@kluug.net> <76d65c45-b66b-72e8-e8d3-fb9f307f2c59@kluug.net> Message-ID: <4f95fb91-8038-dc9d-25fd-d3b3b7884338@kluug.net> On 15.04.2019 14:35, Sergey Bodrov via lazarus wrote: > пн, 15 апр. 2019 г. в 14:42, Ondrej Pokorny via lazarus > >: > > > Yes, there is TDataModule.DesignPPI that makes sure the positions > > (Left/Top properties) of the non-visual components are scaled > correctly. > > > By the way, the default value of 96 should not be written to > LFM/DFM. So > you should not get any warnings if you develop at 96 DPI / 100% > scaling. > > > content of some Delphi .DFM after Lazarus 2.0.0 win64 release: > === > object DMBaseClient: TDMBaseClient >   OnCreate = DataModuleCreate >   OnDestroy = DataModuleDestroy > OldCreateOrder = False >   Height = 269 > HorizontalOffset = 0 > VerticalOffset = 0 >   Width = 441 > *PPI = 96* >   object tmrCheckActivity: TTimer >     OnTimer = tmrCheckActivityTimer >     left = 104 >     top = 104 >   end >   object tmrProcessPackets: TTimer >     Interval = 1 >     OnTimer = tmrProcessPacketsTimer >     left = 104 >     top = 148 >   end > end https://bugs.freepascal.org/view.php?id=32163 Ondrej -------------- next part -------------- An HTML attachment was scrubbed... URL: From dec12 at avidsoft.com.hk Tue Apr 16 17:06:30 2019 From: dec12 at avidsoft.com.hk (Dennis) Date: Tue, 16 Apr 2019 23:06:30 +0800 Subject: [Lazarus] Lazarus Release 2.0.2 In-Reply-To: <20190416102308.7320d54c@limapholos.matflo.wg> References: <20190416102308.7320d54c@limapholos.matflo.wg> Message-ID: Mattias Gaertner via lazarus wrote: > The Lazarus team is glad to announce the release of Lazarus 2.0.2. > > This release was built with FPC 3.0.4. > The previous release Lazarus 2.0.0 was built with FPC 3.0.4 as > well. > > Here is the list of changes for Lazarus and Free Pascal: > http://wiki.lazarus.freepascal.org/Lazarus_2.0.0_release_notes > http://wiki.lazarus.freepascal.org/User_Changes_3.0.4 > > Here is the list of fixes for Lazarus 2.0.x: > http://wiki.freepascal.org/Lazarus_2.0_fixes_branch > > The release is available for download on SourceForge: > http://sourceforge.net/projects/lazarus/files/ > > Choose your CPU, OS, distro and then the "Lazarus 2.0.2" directory. > > Checksums for the SourceForge files: > http://www.lazarus-ide.org/index.php?page=checksums#2_0_2 > > Minimum requirements: > > Windows: > 2k, XP, Vista, 7, 8, 8.1 and 10, 32 or 64bit. > > FreeBSD/Linux: > gtk 2.8 for gtk2, qt4.5 for qt, qt5.6 for qt5, 32 or 64bit. > > Mac OS X: > 10.5 to 10.12; Carbon (32bit), Cocoa (64bit, beta), qt and qt5 (32 or > 64bit). > > The svn tag is > http://svn.freepascal.org/svn/lazarus/tags/lazarus_2_0_2 > > For people who are blocked by SF, the Lazarus releases from SourceForge > are mirrored at: ftp://ftp.freepascal.org/pub/lazarus/releases/ > and later at (after some time for synchronization) > http://mirrors.iwi.me/lazarus/ > > Mattias From maaartinus at gmail.com Wed Apr 17 22:50:42 2019 From: maaartinus at gmail.com (Martin Grajcar) Date: Wed, 17 Apr 2019 22:50:42 +0200 Subject: [Lazarus] Problem with Order of Events Message-ID: Some time ago. the fix for 0031900: Order of events: TEdit / TListBox broke a component of mine. I think that the fix does the right thing, however, I don't know how to work around it. My component is composed from an ancestor of TMyComboListbox and some other components. In TMyComboListbox.MouseDown, I call ItemAtPos (Point (X, Y), TRUE). This used to work perfectly, but after 31900, WMKillFocus on another component gets called *before* mouse down. Unfortunately, on kill focus, I close the list box. I guess, I need to do the closing in reaction to some other event, but which one? I need that it gets closed on any click outside of my *composed* component. Regards, Martin. -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at freepascal.org Sat Apr 20 12:17:31 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Sat, 20 Apr 2019 12:17:31 +0200 (CEST) Subject: [Lazarus] SVN/Webserver maintenance Message-ID: Hello, This afternoon (for GMT+1) you will experience downtime in the website of FPC, The subversion service for FPC/Lazarus and the bugtracker. The host machine needs maintenance and this will result in some downtime of some services. FTP, Lazarus website, wiki and mailinglists will be unaffected as they are hosted on different machines. Michael. From michael at freepascal.org Sat Apr 20 23:36:41 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Sat, 20 Apr 2019 23:36:41 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online Message-ID: Hi, The website has been restored to working order. SVN should be working again, Mantis has been updated to the latest version. We're still working on some features, for example emails are not yet being sent. Michael. From bartjunk64 at gmail.com Sun Apr 21 00:16:02 2019 From: bartjunk64 at gmail.com (Bart) Date: Sun, 21 Apr 2019 00:16:02 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: On Sat, Apr 20, 2019 at 11:36 PM Michael Van Canneyt via lazarus wrote: > ... Mantis has been updated to the latest version. That's a bit of a shock. It looks horrible to me ;-( -- Bart From vojtech.cihak at atlas.cz Sun Apr 21 00:21:01 2019 From: vojtech.cihak at atlas.cz (=?utf-8?q?Vojt=C4=9Bch_=C4=8Cih=C3=A1k?=) Date: Sun, 21 Apr 2019 00:21:01 +0200 Subject: [Lazarus] =?utf-8?q?Website/Mantis_back_online?= In-Reply-To: References: Message-ID: <20190421002101.ADCC31AF@atlas.cz> Oh, the new bugtracker skin is ... hmm, not so bad, but I'm rather conservative.   Well, life is change. :-)   Vojtěch   ______________________________________________________________ > Od: "Michael Van Canneyt via lazarus" > Komu: "FPC mailing list" , "FPC development mailing list" , "Lazarus mailing list" , "pas2js discussions" > Datum: 20.04.2019 23:36 > Předmět: [Lazarus] Website/Mantis back online > Hi, The website has been restored to working order. SVN should be working again, Mantis has been updated to the latest version. We're still working on some features, for example emails are not yet being sent. Michael. -- _______________________________________________ lazarus mailing list lazarus at lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at freepascal.org Sun Apr 21 00:36:08 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Sun, 21 Apr 2019 00:36:08 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online In-Reply-To: <20190421002101.ADCC31AF@atlas.cz> References: <20190421002101.ADCC31AF@atlas.cz> Message-ID: On Sun, 21 Apr 2019, Vojtěch Čihák via lazarus wrote: > Oh, the new bugtracker skin is ... hmm, not so bad, but I'm rather > conservative. >   > Well, life is change. :-) It is the default skin of mantis. The server has only just been updated. Proposals for alternatives are always welcome. Michael. From michael at freepascal.org Sun Apr 21 00:36:51 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Sun, 21 Apr 2019 00:36:51 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: On Sun, 21 Apr 2019, Bart via lazarus wrote: > On Sat, Apr 20, 2019 at 11:36 PM Michael Van Canneyt via lazarus > wrote: > >> ... Mantis has been updated to the latest version. > > That's a bit of a shock. > It looks horrible to me ;-( Knock yourself out with CSS. Maybe we should organize a contest :) Michael. From lazarus at mfriebe.de Sun Apr 21 00:42:01 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Sun, 21 Apr 2019 00:42:01 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> On 21/04/2019 00:16, Bart via lazarus wrote: > On Sat, Apr 20, 2019 at 11:36 PM Michael Van Canneyt via lazarus > wrote: > >> ... Mantis has been updated to the latest version. > That's a bit of a shock. > It looks horrible to me ;-( > I can (if needs must) get used to the look. Maybe this would help? https://github.com/mantisbt-plugins/MantisBT-Colorized What I find more disturbing is the new "my view" The "Timeline" seems of little use (it does not even have issue tittles..) Better to have the old sections. Not sure they can be set to the old layout. The only thing I found https://mantisbt.org/forums/viewtopic.php?t=21189 But I wouldn't want any of them gone entirely. From vojtech.cihak at atlas.cz Sun Apr 21 00:35:22 2019 From: vojtech.cihak at atlas.cz (=?utf-8?q?Vojt=C4=9Bch_=C4=8Cih=C3=A1k?=) Date: Sun, 21 Apr 2019 00:35:22 +0200 Subject: [Lazarus] =?utf-8?q?Website/Mantis_back_online?= In-Reply-To: References: Message-ID: <20190421003522.7B5A59FB@atlas.cz> So I am not alone (I chose more diplomatic words).   Vojtěch ______________________________________________________________ > Od: "Bart via lazarus" > Komu: "Lazarus mailing list" > Datum: 21.04.2019 00:16 > Předmět: Re: [Lazarus] Website/Mantis back online > On Sat, Apr 20, 2019 at 11:36 PM Michael Van Canneyt via lazarus wrote: > ... Mantis has been updated to the latest version. That's a bit of a shock. It looks horrible to me ;-( -- Bart -- _______________________________________________ lazarus mailing list lazarus at lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at moosemail.net Sun Apr 21 00:52:59 2019 From: doug at moosemail.net (DougC) Date: Sat, 20 Apr 2019 18:52:59 -0400 Subject: [Lazarus] Website/Mantis back online In-Reply-To: <20190421003522.7B5A59FB@atlas.cz> References: <20190421003522.7B5A59FB@atlas.cz> Message-ID: <16a3cf3e9a7.128982e4c228518.8356032948135031905@moosemail.net> No, you are not alone. Mantis and SVN: Yuch! ---- On Sat, 20 Apr 2019 18:35:22 -0400 Vojtěch Čihák via lazarus wrote ---- So I am not alone (I chose more diplomatic words).   Vojtěch ______________________________________________________________ > Od: "Bart via lazarus" > Komu: "Lazarus mailing list" > Datum: 21.04.2019 00:16 > Předmět: Re: [Lazarus] Website/Mantis back online > On Sat, Apr 20, 2019 at 11:36 PM Michael Van Canneyt via lazarus wrote: > ... Mantis has been updated to the latest version. That's a bit of a shock. It looks horrible to me ;-( -- Bart -- _______________________________________________ lazarus mailing list mailto:lazarus at lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus -- _______________________________________________ lazarus mailing list mailto:lazarus at lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus -------------- next part -------------- An HTML attachment was scrubbed... URL: From bartjunk64 at gmail.com Sun Apr 21 01:16:34 2019 From: bartjunk64 at gmail.com (Bart) Date: Sun, 21 Apr 2019 01:16:34 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> Message-ID: On Sun, Apr 21, 2019 at 12:42 AM Martin Frb via lazarus wrote: > I can (if needs must) get used to the look. Maybe this would help? > https://github.com/mantisbt-plugins/MantisBT-Colorized Yes, I miss the colors. > What I find more disturbing is the new "my view" > The "Timeline" seems of little use (it does not even have issue tittles..) +1 > Better to have the old sections. I really dislike that all "blocks/tables" (assigned to me, unassigned etc) are now all below each other, much more scrolling needed. I hid the timeline (folded it up). Now that I re-visit the bugtracker I can only see "assigned to me" and " unsasigned" , all others are just gone WTF? Trying to access "my account" always gives me this message: "You are visiting a secure page, and your secure session has expired. Please authenticate yourself to continue." -- Bart From michael at freepascal.org Sun Apr 21 01:29:33 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Sun, 21 Apr 2019 01:29:33 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online In-Reply-To: <16a3cf3e9a7.128982e4c228518.8356032948135031905@moosemail.net> References: <20190421003522.7B5A59FB@atlas.cz> <16a3cf3e9a7.128982e4c228518.8356032948135031905@moosemail.net> Message-ID: On Sat, 20 Apr 2019, DougC via lazarus wrote: > No, you are not alone. Mantis and SVN: Yuch! Yes, yes, yes, we're looking into switching git. Such things take time. Michael. From michael at freepascal.org Sun Apr 21 01:31:26 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Sun, 21 Apr 2019 01:31:26 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online In-Reply-To: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> Message-ID: On Sun, 21 Apr 2019, Martin Frb via lazarus wrote: > On 21/04/2019 00:16, Bart via lazarus wrote: >> On Sat, Apr 20, 2019 at 11:36 PM Michael Van Canneyt via lazarus >> wrote: >> >>> ... Mantis has been updated to the latest version. >> That's a bit of a shock. >> It looks horrible to me ;-( >> > I can (if needs must) get used to the look. Maybe this would help? > https://github.com/mantisbt-plugins/MantisBT-Colorized > > What I find more disturbing is the new "my view" > The "Timeline" seems of little use (it does not even have issue tittles..) Indeed. > Better to have the old sections. Not sure they can be set to the old > layout. The only thing I found > https://mantisbt.org/forums/viewtopic.php?t=21189 > But I wouldn't want any of them gone entirely. I switched to the old layout as much as possible. There is a bug in mantis that makes it hard, but I worked around it with the configuration :) Michael. From skalogryz.lists at gmail.com Sun Apr 21 01:31:39 2019 From: skalogryz.lists at gmail.com (Dmitry Boyarintsev) Date: Sat, 20 Apr 2019 19:31:39 -0400 Subject: [Lazarus] Website/Mantis back online In-Reply-To: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> Message-ID: On Sat, Apr 20, 2019 at 6:42 PM Martin Frb via lazarus < lazarus at lists.lazarus-ide.org> wrote: > I can (if needs must) get used to the look. Maybe this would help? > https://github.com/mantisbt-plugins/MantisBT-Colorized +1 It does worth installation. perception of items is much more clear then the entire raw is colored to the status (as it used to be). Rather than a small little square. -------------- next part -------------- An HTML attachment was scrubbed... URL: From lazarus at mfriebe.de Sun Apr 21 01:33:09 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Sun, 21 Apr 2019 01:33:09 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> Message-ID: <39d2f061-5e34-9dd4-23e9-e1570c5403a1@mfriebe.de> On 21/04/2019 01:31, Michael Van Canneyt via lazarus wrote: > > Indeed. > >> Better to have the old sections. Not sure they can be set to the old >> layout. The only thing I found >> https://mantisbt.org/forums/viewtopic.php?t=21189 >> But I wouldn't want any of them gone entirely. > > I switched to the old layout as much as possible. I only see "assigned to me" recent unnasigned what about reported by me and others? From werner.pamler at freenet.de Sun Apr 21 01:34:54 2019 From: werner.pamler at freenet.de (Werner Pamler) Date: Sun, 21 Apr 2019 01:34:54 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> Message-ID: When I open a report and scroll down to the "Activities" the width of the text column is much too narrow, hardly usable, while the width of the author/date/info column is much too wide. It looks to me as if these two column widths are interchanged. And why the the note text in the "Activities" in bold? From michael at freepascal.org Sun Apr 21 01:38:05 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Sun, 21 Apr 2019 01:38:05 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> Message-ID: On Sun, 21 Apr 2019, Werner Pamler via lazarus wrote: > When I open a report and scroll down to the "Activities" the width of > the text column is much too narrow, hardly usable, while the width of > the author/date/info column is much too wide. It looks to me as if these > two column widths are interchanged. Looks OK here. But Jonas reported something similar. > > And why the the note text in the "Activities" in bold? No idea. I don't see this. Michael. From lazarus at mfriebe.de Sun Apr 21 01:40:13 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Sun, 21 Apr 2019 01:40:13 +0200 Subject: [Lazarus] Website/Mantis back online // activity columns In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> Message-ID: <698693d2-7770-8d10-ab90-f4daa9c724db@mfriebe.de> On 21/04/2019 01:34, Werner Pamler via lazarus wrote: > When I open a report and scroll down to the "Activities" the width of > the text column is much too narrow, hardly usable, while the width of > the author/date/info column is much too wide. It looks to me as if > these two column widths are interchanged. > > And why the the note text in the "Activities" in bold? > Which issue did you open. I tried https://bugs.freepascal.org/view.php?id=35339 in firefox, chrome, edge. All ok (in respect to column width) From michael at freepascal.org Sun Apr 21 01:42:09 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Sun, 21 Apr 2019 01:42:09 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online In-Reply-To: <39d2f061-5e34-9dd4-23e9-e1570c5403a1@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <39d2f061-5e34-9dd4-23e9-e1570c5403a1@mfriebe.de> Message-ID: On Sun, 21 Apr 2019, Martin Frb via lazarus wrote: > On 21/04/2019 01:31, Michael Van Canneyt via lazarus wrote: >> >> Indeed. >> >>> Better to have the old sections. Not sure they can be set to the old >>> layout. The only thing I found >>> https://mantisbt.org/forums/viewtopic.php?t=21189 >>> But I wouldn't want any of them gone entirely. >> >> I switched to the old layout as much as possible. > > I only see > "assigned to me" > recent > unnasigned > > what about > reported by me > and others? I added reported by me again. Seeing that there is a bug in mantis (it only shows itself when you DON't want the timeline, which you don't want...) makes it hard. Michael. From aaa5500 at ya.ru Sun Apr 21 08:29:28 2019 From: aaa5500 at ya.ru (AlexeyT) Date: Sun, 21 Apr 2019 09:29:28 +0300 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: <40f3054a-13c9-fb15-4299-5385e6e62469@ya.ru> My last Mantis issue (about macOS dark theme) has lost the PNG attachment. AT From lazarus at mfriebe.de Sun Apr 21 09:40:29 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Sun, 21 Apr 2019 09:40:29 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: <40f3054a-13c9-fb15-4299-5385e6e62469@ya.ru> References: <40f3054a-13c9-fb15-4299-5385e6e62469@ya.ru> Message-ID: On 21/04/2019 08:29, AlexeyT via lazarus wrote: > My last Mantis issue (about macOS dark theme) has lost the PNG > attachment. > > AT > This one? https://bugs.freepascal.org/view.php?id=35426 How many images? I still see one image (snippet from the toolbar) From juha.manninen62 at gmail.com Sun Apr 21 10:44:01 2019 From: juha.manninen62 at gmail.com (Juha Manninen) Date: Sun, 21 Apr 2019 11:44:01 +0300 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: <40f3054a-13c9-fb15-4299-5385e6e62469@ya.ru> Message-ID: Thanks for the update! It is already MantisBT 2.20.0. I am OK with changed appearance. Life is about changes... I will study the details later. Juha From werner.pamler at freenet.de Sun Apr 21 11:47:44 2019 From: werner.pamler at freenet.de (Werner Pamler) Date: Sun, 21 Apr 2019 11:47:44 +0200 Subject: [Lazarus] Website/Mantis back online // activity columns In-Reply-To: <698693d2-7770-8d10-ab90-f4daa9c724db@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <698693d2-7770-8d10-ab90-f4daa9c724db@mfriebe.de> Message-ID: <39ce066b-6c7c-4e70-0907-49246cb1c8e4@freenet.de> Am 21.04.2019 um 01:40 schrieb Martin Frb via lazarus: > On 21/04/2019 01:34, Werner Pamler via lazarus wrote: >> When I open a report and scroll down to the "Activities" the width of >> the text column is much too narrow, hardly usable, while the width of >> the author/date/info column is much too wide. It looks to me as if >> these two column widths are interchanged. >> >> And why the the note text in the "Activities" in bold? >> > Which issue did you open. > > I tried https://bugs.freepascal.org/view.php?id=35339 > in firefox, chrome, edge. > All ok (in respect to column width) Chrome and Edge ok, Firefox has the issue. I deactivated all my extensions one by one and found that the issue is due to VTZilla. Strangely enough the error remains gone when I activate VTZilla again. From lazarus at mfriebe.de Sun Apr 21 12:52:38 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Sun, 21 Apr 2019 12:52:38 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: On 20/04/2019 23:36, Michael Van Canneyt via lazarus wrote: > , Mantis has been updated to the latest version. There may be an issue with search being case sensitive https://forum.lazarus.freepascal.org/index.php/topic,45123.msg318408.html#msg318408 From skalogryz.lists at gmail.com Sun Apr 21 16:52:38 2019 From: skalogryz.lists at gmail.com (Dmitry Boyarintsev) Date: Sun, 21 Apr 2019 10:52:38 -0400 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: Oddly enough Mantis 2.21 was released on April 20th https://mantisbt.org/bugs/changelog_page.php?project=mantisbt&version=2.21.0 On Sun, Apr 21, 2019 at 6:52 AM Martin Frb via lazarus < lazarus at lists.lazarus-ide.org> wrote: > On 20/04/2019 23:36, Michael Van Canneyt via lazarus wrote: > > , Mantis has been updated to the latest version. > > There may be an issue with search being case sensitive > > https://forum.lazarus.freepascal.org/index.php/topic,45123.msg318408.html#msg318408 > -- > _______________________________________________ > lazarus mailing list > lazarus at lists.lazarus-ide.org > https://lists.lazarus-ide.org/listinfo/lazarus > -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at freepascal.org Sun Apr 21 17:36:49 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Sun, 21 Apr 2019 17:36:49 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: Seriously ? You must be kidding me... And it fixes just the bugs I was experiencing... OK. will download and upgrade. Michael. On Sun, 21 Apr 2019, Dmitry Boyarintsev via lazarus wrote: > Oddly enough Mantis 2.21 was released on April 20th > https://mantisbt.org/bugs/changelog_page.php?project=mantisbt&version=2.21.0 > > > On Sun, Apr 21, 2019 at 6:52 AM Martin Frb via lazarus < > lazarus at lists.lazarus-ide.org> wrote: > >> On 20/04/2019 23:36, Michael Van Canneyt via lazarus wrote: >>> , Mantis has been updated to the latest version. >> >> There may be an issue with search being case sensitive >> >> https://forum.lazarus.freepascal.org/index.php/topic,45123.msg318408.html#msg318408 >> -- >> _______________________________________________ >> lazarus mailing list >> lazarus at lists.lazarus-ide.org >> https://lists.lazarus-ide.org/listinfo/lazarus >> > From michael at freepascal.org Sun Apr 21 18:08:03 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Sun, 21 Apr 2019 18:08:03 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: Updated. My View page is now indeed correctly responding to settings. Michael. On Sun, 21 Apr 2019, Michael Van Canneyt via lazarus wrote: > > > Seriously ? You must be kidding me... > > And it fixes just the bugs I was experiencing... > > OK. will download and upgrade. > > Michael. > > On Sun, 21 Apr 2019, Dmitry Boyarintsev via lazarus wrote: > >> Oddly enough Mantis 2.21 was released on April 20th >> > https://mantisbt.org/bugs/changelog_page.php?project=mantisbt&version=2.21.0 >> >> >> On Sun, Apr 21, 2019 at 6:52 AM Martin Frb via lazarus < >> lazarus at lists.lazarus-ide.org> wrote: >> >>> On 20/04/2019 23:36, Michael Van Canneyt via lazarus wrote: >>>> , Mantis has been updated to the latest version. >>> >>> There may be an issue with search being case sensitive >>> >>> > https://forum.lazarus.freepascal.org/index.php/topic,45123.msg318408.html#msg318408 >>> -- >>> _______________________________________________ >>> lazarus mailing list >>> lazarus at lists.lazarus-ide.org >>> https://lists.lazarus-ide.org/listinfo/lazarus >>> >> > -- > _______________________________________________ > lazarus mailing list > lazarus at lists.lazarus-ide.org > https://lists.lazarus-ide.org/listinfo/lazarus > From lazarus at mfriebe.de Sun Apr 21 23:24:40 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Sun, 21 Apr 2019 23:24:40 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: On 21/04/2019 18:08, Michael Van Canneyt via lazarus wrote: > > Updated. > > My View page is now indeed correctly responding to settings. Much better, but still missing "monitored by me" From bartjunk64 at gmail.com Sun Apr 21 23:26:15 2019 From: bartjunk64 at gmail.com (Bart) Date: Sun, 21 Apr 2019 23:26:15 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: On Sun, Apr 21, 2019 at 6:08 PM Michael Van Canneyt via lazarus wrote: > My View page is now indeed correctly responding to settings. I miss "Monitored by me" I do have the rest back again though: - Assigned to me - Unassigned - Reported by me - Resolved - Recently modified -- Bart From lazarus at mfriebe.de Sun Apr 21 23:29:14 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Sun, 21 Apr 2019 23:29:14 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> Message-ID: <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> > On Sun, Apr 21, 2019 at 12:42 AM Martin Frb via lazarus > wrote: > >> I can (if needs must) get used to the look. Maybe this would help? >> https://github.com/mantisbt-plugins/MantisBT-Colorized > Yes, I miss the colors. > Until we have something better, a very crude greasemonkey script (tested with firefox) // ==UserScript== // @name     mantis // @version  1 // @grant    none // @include https://bugs.freepascal.org/* // @include http://bugs.freepascal.org/* // ==/UserScript== function GM_addStyle (cssStr) {     var D               = document;     var newNode         = D.createElement ('style');     newNode.textContent = cssStr;     var targ    = D.getElementsByTagName ('head')[0] || D.body || D.documentElement;     targ.appendChild (newNode); } GM_addStyle (` .my-buglist-id, .column-status, .bug-status {   position: relative !important;   z-index: 0 !important; } `); GM_addStyle (` .fa-status-box {   width: 100% !important;   height: 100% !important;   position: absolute !important;   top:  0px !important;   left: 0px !important;   z-index: -1 !important;   font-size: 15em !important;   overflow: hidden !important; } `); From bartjunk64 at gmail.com Sun Apr 21 23:29:42 2019 From: bartjunk64 at gmail.com (Bart) Date: Sun, 21 Apr 2019 23:29:42 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: On Sun, Apr 21, 2019 at 11:26 PM Bart wrote: > I miss "Monitored by me" Martin beat me to that ;-( -- Bart From juha.manninen62 at gmail.com Mon Apr 22 09:45:32 2019 From: juha.manninen62 at gmail.com (Juha Manninen) Date: Mon, 22 Apr 2019 10:45:32 +0300 Subject: [Lazarus] Mantis application error Message-ID: Oh boy. When resolving this issue: https://bugs.freepascal.org/view.php?id=35415 I also tried to include a note but got the error message below. The issue got resolved without the note. Trying to add the same note afterwards leads to the same error again. Maybe it will work again after 3600 seconds... Juha --- APPLICATION ERROR #27 You have reached the allowed activity limit of 10 events within the last 3600 seconds; your action has been blocked to avoid spam, please try again later. Please use the "Back" button in your web browser to return to the previous page. There you can correct whatever problems were identified in this error or select another action. You can also click an option from the menu bar to go directly to a new section. From juha.manninen62 at gmail.com Mon Apr 22 10:10:47 2019 From: juha.manninen62 at gmail.com (Juha Manninen) Date: Mon, 22 Apr 2019 11:10:47 +0300 Subject: [Lazarus] FpDebug apps do not compile Message-ID: Are the projects under "components/fpdebug/app/" directory supposed to compile? They don't. From juha.manninen62 at gmail.com Mon Apr 22 10:14:31 2019 From: juha.manninen62 at gmail.com (Juha Manninen) Date: Mon, 22 Apr 2019 11:14:31 +0300 Subject: [Lazarus] FpDebug apps do not compile In-Reply-To: References: Message-ID: Also "components/fpdebug/test/dwarfviewer/" gives an error: Error: Illegal parameter: -WC Juha P.S. Sent the first mail too soon accidentally. From michael at freepascal.org Mon Apr 22 10:18:49 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Mon, 22 Apr 2019 10:18:49 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: On Sun, 21 Apr 2019, Bart via lazarus wrote: > On Sun, Apr 21, 2019 at 11:26 PM Bart wrote: > >> I miss "Monitored by me" > > Martin beat me to that ;-( Added. Michael. From lazarus at mfriebe.de Mon Apr 22 10:51:01 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Mon, 22 Apr 2019 10:51:01 +0200 Subject: [Lazarus] FpDebug apps do not compile In-Reply-To: References: Message-ID: <190c15e0-10f2-61e6-9124-79801984333e@mfriebe.de> On 22/04/2019 10:14, Juha Manninen via lazarus wrote: > Also "components/fpdebug/test/dwarfviewer/" gives an error: > Error: Illegal parameter: -WC > That param is Windows only (makes sure a console is opened for the app) It can/should be removed. Dwarfviewer should compile and work. The fpdserver might compile, but have not been maintained for a while.... todo From juha.manninen62 at gmail.com Mon Apr 22 11:30:42 2019 From: juha.manninen62 at gmail.com (Juha Manninen) Date: Mon, 22 Apr 2019 12:30:42 +0300 Subject: [Lazarus] Mantis application error In-Reply-To: References: Message-ID: Strange. Now I looked at the issue again and the note is there. It got stored when I resolved the issue despite the error message. Juha From juha.manninen62 at gmail.com Mon Apr 22 11:35:05 2019 From: juha.manninen62 at gmail.com (Juha Manninen) Date: Mon, 22 Apr 2019 12:35:05 +0300 Subject: [Lazarus] Mantis application error In-Reply-To: References: Message-ID: On Mon, Apr 22, 2019 at 12:30 PM Juha Manninen wrote: > Strange. Now I looked at the issue again and the note is there. > It got stored when I resolved the issue despite the error message. Ah damn, forget that. I was looking at a wrong issue. The note was not there but now I was able to add it because the timeout had passed. So, now it is there but the original problem remains. Juha From michael at freepascal.org Mon Apr 22 11:35:26 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Mon, 22 Apr 2019 11:35:26 +0200 (CEST) Subject: [Lazarus] Mantis application error In-Reply-To: References: Message-ID: On Mon, 22 Apr 2019, Juha Manninen via lazarus wrote: > Strange. Now I looked at the issue again and the note is there. > It got stored when I resolved the issue despite the error message. Let me know if it happens again, I'll look at it then. Michael. From aaa5500 at ya.ru Mon Apr 22 11:43:32 2019 From: aaa5500 at ya.ru (AlexeyT) Date: Mon, 22 Apr 2019 12:43:32 +0300 Subject: [Lazarus] Mantis application error In-Reply-To: References: Message-ID: Will be good if Developers will be added to white list in Mantis. Seems they are not spammers. AT From florian at freepascal.org Mon Apr 22 11:48:08 2019 From: florian at freepascal.org (=?UTF-8?B?RmxvcmlhbiBLbMOkbXBmbA==?=) Date: Mon, 22 Apr 2019 11:48:08 +0200 Subject: [Lazarus] Mantis application error In-Reply-To: References: Message-ID: <16a447213c0.27ad.940694a44bcba3a3e493262cc9dc50d2@freepascal.org> Am 22. April 2019 11:35:29 schrieb Michael Van Canneyt via lazarus : > On Mon, 22 Apr 2019, Juha Manninen via lazarus wrote: > >> Strange. Now I looked at the issue again and the note is there. >> It got stored when I resolved the issue despite the error message. > > Let me know if it happens again, I'll look at it then. > > Michael. > -- > _______________________________________________ > lazarus mailing list > lazarus at lists.lazarus-ide.org > https://lists.lazarus-ide.org/listinfo/lazarus There is a setting for spam protection which can be increased. From michael at freepascal.org Mon Apr 22 12:02:46 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Mon, 22 Apr 2019 12:02:46 +0200 (CEST) Subject: [Lazarus] Mantis application error In-Reply-To: <16a447213c0.27ad.940694a44bcba3a3e493262cc9dc50d2@freepascal.org> References: <16a447213c0.27ad.940694a44bcba3a3e493262cc9dc50d2@freepascal.org> Message-ID: On Mon, 22 Apr 2019, Florian Klämpfl via lazarus wrote: > Am 22. April 2019 11:35:29 schrieb Michael Van Canneyt via lazarus : > >> On Mon, 22 Apr 2019, Juha Manninen via lazarus wrote: >> >>> Strange. Now I looked at the issue again and the note is there. >>> It got stored when I resolved the issue despite the error message. >> >> Let me know if it happens again, I'll look at it then. >> >> Michael. >> -- >> _______________________________________________ >> lazarus mailing list >> lazarus at lists.lazarus-ide.org >> https://lists.lazarus-ide.org/listinfo/lazarus > > There is a setting for spam protection which can be increased. I found it and increased it. Michael. From michael at freepascal.org Mon Apr 22 12:41:59 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Mon, 22 Apr 2019 12:41:59 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> Message-ID: I added another solution suggested by florian, https://www.ryadel.com/en/mantis-bt-2-enable-row-level-coloring-like-v1-jquery-javascript/ Michael. On Sun, 21 Apr 2019, Martin Frb via lazarus wrote: >> On Sun, Apr 21, 2019 at 12:42 AM Martin Frb via lazarus >> > wrote: >> > >> >> I can (if needs must) get used to the look. Maybe this would help? >> >> https://github.com/mantisbt-plugins/MantisBT-Colorized >> > Yes, I miss the colors. >> > >> >> Until we have something better, a very crude greasemonkey script (tested >> with firefox) >> >> // ==UserScript== >> // @name     mantis >> // @version  1 >> // @grant    none >> // @include https://bugs.freepascal.org/* >> // @include http://bugs.freepascal.org/* >> // ==/UserScript== >> >> >> function GM_addStyle (cssStr) { >>     var D               = document; >>     var newNode         = D.createElement ('style'); >>     newNode.textContent = cssStr; >> >>     var targ    = D.getElementsByTagName ('head')[0] || D.body || >> D.documentElement; >>     targ.appendChild (newNode); >> } >> >> GM_addStyle (` >> .my-buglist-id, .column-status, .bug-status { >>   position: relative !important; >>   z-index: 0 !important; >> } >> `); >> GM_addStyle (` >> .fa-status-box { >>   width: 100% !important; >>   height: 100% !important; >>   position: absolute !important; >>   top:  0px !important; >>   left: 0px !important; >>   z-index: -1 !important; >>   font-size: 15em !important; >>   overflow: hidden !important; >> } >> `); >> >> -- >> _______________________________________________ >> lazarus mailing list >> lazarus at lists.lazarus-ide.org >> https://lists.lazarus-ide.org/listinfo/lazarus >> From lazarus at mfriebe.de Mon Apr 22 12:45:25 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Mon, 22 Apr 2019 12:45:25 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> Message-ID: On 22/04/2019 12:41, Michael Van Canneyt via lazarus wrote: > > I added another solution suggested by florian, > > https://www.ryadel.com/en/mantis-bt-2-enable-row-level-coloring-like-v1-jquery-javascript/ > The colors are different though... And the background on bug-notes is far to dark now. From michael at freepascal.org Mon Apr 22 13:14:06 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Mon, 22 Apr 2019 13:14:06 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> Message-ID: On Mon, 22 Apr 2019, Martin Frb via lazarus wrote: > On 22/04/2019 12:41, Michael Van Canneyt via lazarus wrote: >> >> I added another solution suggested by florian, >> >> > https://www.ryadel.com/en/mantis-bt-2-enable-row-level-coloring-like-v1-jquery-javascript/ >> > > The colors are different though... > > And the background on bug-notes is far to dark now. It's just colors. Knock yourself out on designing a theme. I don't intend to spend another minute on it. I've been on this since days, anyone pronouncing the word mantis in my presence will get his keyboard inserted in a place where the sun usually doesn't shine. Michael. From lazarus at mfriebe.de Mon Apr 22 13:22:12 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Mon, 22 Apr 2019 13:22:12 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> Message-ID: <751df408-6e04-dac0-7c9a-4025a02d9adf@mfriebe.de> On 22/04/2019 13:14, Michael Van Canneyt via lazarus wrote: > > > On Mon, 22 Apr 2019, Martin Frb via lazarus wrote: > >> On 22/04/2019 12:41, Michael Van Canneyt via lazarus wrote: >>> >>> I added another solution suggested by florian, >>> >>> >> https://www.ryadel.com/en/mantis-bt-2-enable-row-level-coloring-like-v1-jquery-javascript/ >> >>> >> >> The colors are different though... >> >> And the background on bug-notes is far to dark now. > > It's just colors. Knock yourself out on designing a theme. > > I don't intend to spend another minute on it. I've been on this since > days, > anyone pronouncing the word mantis in my presence will get his keyboard > inserted in a place where the sun usually doesn't shine. No problem, I solved it locally for me. And I appreciate the time spent by you. From lazarus at mfriebe.de Mon Apr 22 14:17:39 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Mon, 22 Apr 2019 14:17:39 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> Message-ID: On 22/04/2019 12:45, Martin Frb via lazarus wrote: > And the background on bug-notes is far to dark now. For anyone who is interested, here is my latest greasemonkey (tested on firefox) And screenshots: https://i.imgur.com/PjGYpEb.png https://i.imgur.com/Ffkuxq1.png https://i.imgur.com/xakd2ag.png https://i.imgur.com/uopHcxW.png // ==UserScript== // @name     mantis // @version  1 // @grant    none // @include https://bugs.freepascal.org/* // @include http://bugs.freepascal.org/* // @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js // ==/UserScript==   $(".fa-status-box").each(function() {     var $this = $(this);     var col = $this.css('color');     $this.closest("td").css("background-color", col);   }); function GM_addStyle (cssStr) {     var D               = document;     var newNode         = D.createElement ('style');     newNode.textContent = cssStr;     var targ    = D.getElementsByTagName ('head')[0] || D.body || D.documentElement;     targ.appendChild (newNode); } GM_addStyle (` .my-buglist-id, .column-status, .bug-status {   position: relative !important;   z-index: 0 !important; } .table-striped>tbody>tr:nth-of-type(odd) {  background-color:#f9f9f9 !important; } .table-striped>tbody>tr:nth-of-type(even) {  background-color:#fff !important; } .my-buglist-id .fa-status-box, .column-status .fa-status-box, .bug-status .fa-status-box {   display: none !important; } th.category, td.category {     background-color: #e8e8e8 !important; } td.bugnote-note {     background-color: #f9f9f9 !important; } `); From bartjunk64 at gmail.com Mon Apr 22 22:36:36 2019 From: bartjunk64 at gmail.com (Bart) Date: Mon, 22 Apr 2019 22:36:36 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> Message-ID: On Mon, Apr 22, 2019 at 12:45 PM Martin Frb via lazarus wrote: > The colors are different though... I can't see the difference between closed, resolved and assigned. The only distinct colors I can see are for new and acknowledged. This getting to be a nightmare. -- Bart From michael at freepascal.org Mon Apr 22 23:52:58 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Mon, 22 Apr 2019 23:52:58 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> Message-ID: On Mon, 22 Apr 2019, Bart via lazarus wrote: > On Mon, Apr 22, 2019 at 12:45 PM Martin Frb via lazarus > wrote: > >> The colors are different though... > > I can't see the difference between closed, resolved and assigned. > The only distinct colors I can see are for new and acknowledged. > This getting to be a nightmare. Not really, a nightmare is for example when you find yourself naked on top of El Castillo in Chichen Itza amidst a cheering crowd, while some priest with bloodshot eyes uses a stone knife to peel off your skin and cut out your heart, showing it triumphantly to foresaid crowd... Then you wake up in your own cold sweat and with a sigh of relief realize we're no longer living in the age of the Mayas. Now that definitely counts as a nightmare. By contrast: Difficult to discern colors (sic) is a minor inconvenience. I did some adjustments, please let me know whether this is better for you. Make sure you do a forced reload of the page. Michael. From freedos.la at gmail.com Tue Apr 23 00:02:02 2019 From: freedos.la at gmail.com (Ralf Quint) Date: Mon, 22 Apr 2019 15:02:02 -0700 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> Message-ID: On 4/22/2019 2:52 PM, Michael Van Canneyt via lazarus wrote: > > > On Mon, 22 Apr 2019, Bart via lazarus wrote: > >> On Mon, Apr 22, 2019 at 12:45 PM Martin Frb via lazarus >> wrote: >> >>> The colors are different though... >> >> I can't see the difference between closed, resolved and assigned. >> The only distinct colors I can see are for new and acknowledged. >> This getting to be a nightmare. > Well, today's fads of those "dark themes" or "flat look" are more a PITA than truly a nightmare > Not really, a nightmare is for example when you find yourself naked > on top of El Castillo in Chichen Itza amidst a cheering crowd, while some > priest with bloodshot eyes  uses a stone knife to peel off your skin and > cut out your heart, showing it triumphantly to foresaid crowd... > > Then you wake up in your own cold sweat and with a sigh of relief > realize we're no longer living in the age of the Mayas. > > Now that definitely counts as a nightmare. Only if you're a child back in those days, as an adult, you were pretty safe. But then today a lot of folks have problems growing up... > > By contrast: Difficult to discern colors (sic) is a minor inconvenience. That is a very personal experience. I had a customer who set up here computer is the most nausea inducing (for me) color scheme of pink, purple, neon green and yellow. I could not work on if for 2 minutes, but she was getting her job done each day of the week just fine. But I have lots of clients complaining about all those "flat" menues in M$ Office and such, which makes it hard specially for older people to discern the different functionalities, because it all looks the same. A lot of "modern UX" folks should be taken out to the alley and stuck in a dumpster... Ralf --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From lazarus at mfriebe.de Tue Apr 23 00:02:20 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Tue, 23 Apr 2019 00:02:20 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> Message-ID: <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> On 22/04/2019 23:52, Michael Van Canneyt via lazarus wrote: > > On Mon, 22 Apr 2019, Bart via lazarus wrote: >> This getting to be a nightmare. > > Not really, a nightmare is for example when you find yourself naked > on top of El Castillo in Chichen Itza amidst a cheering crowd, while some > priest with bloodshot eyes  uses a stone knife to peel off your skin and > cut out your heart, showing it triumphantly to foresaid crowd... If you fanatically believe in your sacrifice appeasing an otherwise angry deity.... Dream of a lifetime (not mine, though) > > I did some adjustments, please let me know whether this is better for > you. > Make sure you do a forced reload of the page. Better colors, but trouble to see the normal prior indicator on some of them. If interested, the below should fix that: .my-buglist-id .fa-lg {   text-shadow: 0px 0px 1px #444; } .my-buglist-id .fa-paperclip {   text-shadow: 0px 0px 0px #000; } From lazarus at mfriebe.de Tue Apr 23 00:09:48 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Tue, 23 Apr 2019 00:09:48 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> Message-ID: <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> On 23/04/2019 00:02, Martin Frb via lazarus wrote: > > Better colors, but trouble to see the normal prior indicator on some > of them. > > If interested, the below should fix that: > > .my-buglist-id .fa-lg { >   text-shadow: 0px 0px 1px #444; > } > .my-buglist-id .fa-paperclip { >   text-shadow: 0px 0px 0px #000; > } > And maybe also grey the fixed field in the view issue page / though interrupts the color for state: th.category, td.category {     background-color: #e8e8e8 !important; } From lazarus at mfriebe.de Tue Apr 23 00:23:44 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Tue, 23 Apr 2019 00:23:44 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> Message-ID: <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> On 23/04/2019 00:09, Martin Frb via lazarus wrote: > On 23/04/2019 00:02, Martin Frb via lazarus wrote: >> >> Better colors, but trouble to see the normal prior indicator on some >> of them. >> >> If interested, the below should fix that: >> >> .my-buglist-id .fa-lg { >>   text-shadow: 0px 0px 1px #444; >> } >> .my-buglist-id .fa-paperclip { >>   text-shadow: 0px 0px 0px #000; >> } >> > and  for prior symbols on the search results .column-priority .fa-lg {   text-shadow: 0px 0px 1px #444; } > And maybe also > grey the fixed field in the view issue page / though interrupts the > color for state: > > th.category, td.category { >     background-color: #e8e8e8 !important; > } > > From ryan at thealchemistguild.com Tue Apr 23 00:56:10 2019 From: ryan at thealchemistguild.com (Ryan Joseph) Date: Mon, 22 Apr 2019 18:56:10 -0400 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> Message-ID: <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> I’m testing on Safari (Mac) and all the links are red. Should I file a bug report? ;) Regards, Ryan Joseph From lazarus at mfriebe.de Tue Apr 23 01:19:49 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Tue, 23 Apr 2019 01:19:49 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> Message-ID: <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> On 23/04/2019 00:56, Ryan Joseph via lazarus wrote: > I’m testing on Safari (Mac) and all the links are red. Should I file a bug report? ;) > red background, red foreground? Javascript enabled? From lazarus at mfriebe.de Tue Apr 23 01:35:48 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Tue, 23 Apr 2019 01:35:48 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> Message-ID: <04a33cfa-f23a-5867-1982-e0fa7171b261@mfriebe.de> One more. If people have no JavaScript enabled Drop the css .my-buglist-id .fa-status-box, .column-status .fa-status-box, .bug-status .fa-status-box {     display: none !important; } and add the js (inside the unnamed function in colorize.js)   $(".my-buglist-id .fa-status-box").each(function() {     var $this = $(this);     $this.attr('style', 'display: none !important');   });   $(".column-status .fa-status-box").each(function() {     var $this = $(this);     $this.attr('style', 'display: none !important');   });   $(".bug-status .fa-status-box").each(function() {     var $this = $(this);     $this.attr('style', 'display: none !important');   }); On 23/04/2019 00:23, Martin Frb via lazarus wrote: > On 23/04/2019 00:09, Martin Frb via lazarus wrote: >> On 23/04/2019 00:02, Martin Frb via lazarus wrote: >>> >>> >>> .my-buglist-id .fa-lg { >>>   text-shadow: 0px 0px 1px #444; >>> } >>> .my-buglist-id .fa-paperclip { >>>   text-shadow: 0px 0px 0px #000; >>> } >>> >> > and  for prior symbols on the search results > > .column-priority .fa-lg { >   text-shadow: 0px 0px 1px #444; > } > > >> And maybe also >> grey the fixed field in the view issue page / though interrupts the >> color for state: >> >> th.category, td.category { >>     background-color: #e8e8e8 !important; >> } >> >> > From ryan at thealchemistguild.com Tue Apr 23 01:52:18 2019 From: ryan at thealchemistguild.com (Ryan Joseph) Date: Mon, 22 Apr 2019 19:52:18 -0400 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> Message-ID: <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> Red foreground. The background colors are properly colored based on status but the yellow dash icons are pretty hard to see now though. JavaScript is on. All browsers are affected, Safari, Firefox and Chrome. > On Apr 22, 2019, at 7:19 PM, Martin Frb via lazarus wrote: > > red background, red foreground? > > Javascript enabled? Regards, Ryan Joseph From lazarus at mfriebe.de Tue Apr 23 02:23:36 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Tue, 23 Apr 2019 02:23:36 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> Message-ID: <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> On 23/04/2019 01:52, Ryan Joseph via lazarus wrote: > Red foreground. The background colors are properly colored based on status but the yellow dash icons are pretty hard to see now though. red text, changing to blue when you hover. Same for me.  That seems to be the intend. They were red before https://i.imgur.com/PjGYpEb.png  (The background color changed from the image) I sent some bits of css, that I hope will get applied, to fix the "yellow dash" (and all other priority indicators). From ryan at thealchemistguild.com Tue Apr 23 02:29:33 2019 From: ryan at thealchemistguild.com (Ryan Joseph) Date: Mon, 22 Apr 2019 20:29:33 -0400 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> Message-ID: <90542482-F634-46DF-9252-D97F15C0D813@thealchemistguild.com> > On Apr 22, 2019, at 8:23 PM, Martin Frb via lazarus wrote: > > red text, changing to blue when you hover. Same for me. That seems to be the intend. > They were red before https://i.imgur.com/PjGYpEb.png (The background color changed from the image) The red text appeared after some changes so I don’t think it was intended. Looks pretty off also imo. Regards, Ryan Joseph From michael at freepascal.org Tue Apr 23 09:40:33 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Tue, 23 Apr 2019 09:40:33 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <04a33cfa-f23a-5867-1982-e0fa7171b261@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <04a33cfa-f23a-5867-1982-e0fa7171b261@mfriebe.de> Message-ID: ehm... Why would I want it in Javascript when it is better to have it in the CSS ? Michael. On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: > One more. If people have no JavaScript enabled > > Drop the css > .my-buglist-id .fa-status-box, .column-status .fa-status-box, > .bug-status .fa-status-box { >     display: none !important; > } > > and add the js (inside the unnamed function in colorize.js) > >   $(".my-buglist-id .fa-status-box").each(function() { >     var $this = $(this); >     $this.attr('style', 'display: none !important'); >   }); >   $(".column-status .fa-status-box").each(function() { >     var $this = $(this); >     $this.attr('style', 'display: none !important'); >   }); >   $(".bug-status .fa-status-box").each(function() { >     var $this = $(this); >     $this.attr('style', 'display: none !important'); >   }); > > > > > > On 23/04/2019 00:23, Martin Frb via lazarus wrote: >> On 23/04/2019 00:09, Martin Frb via lazarus wrote: >>> On 23/04/2019 00:02, Martin Frb via lazarus wrote: >>>> >>>> >>>> .my-buglist-id .fa-lg { >>>>   text-shadow: 0px 0px 1px #444; >>>> } >>>> .my-buglist-id .fa-paperclip { >>>>   text-shadow: 0px 0px 0px #000; >>>> } >>>> >>> >> and  for prior symbols on the search results >> >> .column-priority .fa-lg { >>   text-shadow: 0px 0px 1px #444; >> } >> >> >>> And maybe also >>> grey the fixed field in the view issue page / though interrupts the >>> color for state: >>> >>> th.category, td.category { >>>     background-color: #e8e8e8 !important; >>> } >>> >>> >> > > -- > _______________________________________________ > lazarus mailing list > lazarus at lists.lazarus-ide.org > https://lists.lazarus-ide.org/listinfo/lazarus > From michael at freepascal.org Tue Apr 23 09:43:09 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Tue, 23 Apr 2019 09:43:09 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> Message-ID: On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: > On 23/04/2019 01:52, Ryan Joseph via lazarus wrote: >> Red foreground. The background colors are properly colored based on status > but the yellow dash icons are pretty hard to see now though. > red text, changing to blue when you hover. Same for me.  That seems to > be the intend. > They were red before https://i.imgur.com/PjGYpEb.png  (The background > color changed from the image) > > > I sent some bits of css, that I hope will get applied, to fix the > "yellow dash" (and all other priority indicators). I applied it. Michael. From werner.pamler at freenet.de Tue Apr 23 11:41:17 2019 From: werner.pamler at freenet.de (Werner Pamler) Date: Tue, 23 Apr 2019 11:41:17 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: I am slowly getting used to it. Writing notes to some bug reports I noticed an annoying issue, though: While typing the text does not wrap any more when it becomes wider than the memo (after pressing "Add Note" the text is wrapped however). I considers this important to facilitate proof-reading the text before submission. BTW, are regular users (i.e. without developer status) able to edit their own text after uploading? As I remember from my non-developer days this was not possible. Therefore, it is even more important that the text is wrapped before sending. Otherwise we will be plagued with more and more unreadable submissions. Werner From lazarus at mfriebe.de Tue Apr 23 11:47:57 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Tue, 23 Apr 2019 11:47:57 +0200 Subject: [Lazarus] css Re: Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> Message-ID: On 23/04/2019 09:43, Michael Van Canneyt via lazarus wrote: > >> I sent some bits of css, that I hope will get applied, to fix the >> "yellow dash" (and all other priority indicators). > > I applied it. Sorry, but it appears some "trash" went into it .my-buglist-id .fa-lg {   text-shadow: 0px 0px 1px #444; } .my-buglist-id .fa-paperclip {   text-shadow: 0px 0px 0px #000; } .column-priority .fa-lg {   text-shadow: 0px 0px 1px #444; } -------------- next part -------------- An HTML attachment was scrubbed... URL: From lazarus at mfriebe.de Tue Apr 23 11:56:24 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Tue, 23 Apr 2019 11:56:24 +0200 Subject: [Lazarus] css Re: Website/Mantis back online In-Reply-To: References: Message-ID: <5f928c05-d675-9c5c-3d66-644f1261a3e9@mfriebe.de> On 23/04/2019 11:41, Werner Pamler via lazarus wrote: > I am slowly getting used to it. > > Writing notes to some bug reports I noticed an annoying issue, though: > While typing the text does not wrap any more when it becomes wider > than the memo (after pressing "Add Note" the text is wrapped however). > I considers this important to facilitate proof-reading the text before > submission. BTW, are regular users (i.e. without developer status) > able to edit their own text after uploading? As I remember from my > non-developer days this was not possible. Therefore, it is even more > important that the text is wrapped before sending. Otherwise we will > be plagued with more and more unreadable submissions. > this may help, if added textarea {   white-space: pre-wrap; } From zbynek.fiala at gmail.com Tue Apr 23 12:10:48 2019 From: zbynek.fiala at gmail.com (=?utf-8?Q?Zbyn=C4=9Bk_Fiala?=) Date: Tue, 23 Apr 2019 12:10:48 +0200 Subject: [Lazarus] css Re: Website/Mantis back online In-Reply-To: <5f928c05-d675-9c5c-3d66-644f1261a3e9@mfriebe.de> References: <5f928c05-d675-9c5c-3d66-644f1261a3e9@mfriebe.de> Message-ID: Sorry for slightly off-topic: I use this addon: https://darkreader.org/ if I am not satisfied with default web page colors. It works pretty well but I prefer dark colors. 23. 4. 2019 v 11:56, Martin Frb via lazarus : >> On 23/04/2019 11:41, Werner Pamler via lazarus wrote: >> I am slowly getting used to it. >> >> Writing notes to some bug reports I noticed an annoying issue, though: While typing the text does not wrap any more when it becomes wider than the memo (after pressing "Add Note" the text is wrapped however). I considers this important to facilitate proof-reading the text before submission. BTW, are regular users (i.e. without developer status) able to edit their own text after uploading? As I remember from my non-developer days this was not possible. Therefore, it is even more important that the text is wrapped before sending. Otherwise we will be plagued with more and more unreadable submissions. >> > > this may help, if added > > > textarea { > white-space: pre-wrap; > } > > -- > _______________________________________________ > lazarus mailing list > lazarus at lists.lazarus-ide.org > https://lists.lazarus-ide.org/listinfo/lazarus -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at freepascal.org Tue Apr 23 12:40:11 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Tue, 23 Apr 2019 12:40:11 +0200 (CEST) Subject: [Lazarus] css Re: Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> Message-ID: On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: > On 23/04/2019 09:43, Michael Van Canneyt via lazarus wrote: >> >>> I sent some bits of css, that I hope will get applied, to fix the "yellow >>> dash" (and all other priority indicators). >> >> I applied it. > > Sorry, but it appears some "trash" went into it > > .my-buglist-id .fa-lg { >   text-shadow: 0px 0px 1px #444; > } > .my-buglist-id .fa-paperclip { >   text-shadow: 0px 0px 0px #000; > } > > .column-priority .fa-lg { >   text-shadow: 0px 0px 1px #444; > } Trash is here "Â" ? Michael. From michael at freepascal.org Tue Apr 23 12:42:46 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Tue, 23 Apr 2019 12:42:46 +0200 (CEST) Subject: [Lazarus] css Re: Website/Mantis back online In-Reply-To: <5f928c05-d675-9c5c-3d66-644f1261a3e9@mfriebe.de> References: <5f928c05-d675-9c5c-3d66-644f1261a3e9@mfriebe.de> Message-ID: On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: > On 23/04/2019 11:41, Werner Pamler via lazarus wrote: >> I am slowly getting used to it. >> >> Writing notes to some bug reports I noticed an annoying issue, though: >> While typing the text does not wrap any more when it becomes wider >> than the memo (after pressing "Add Note" the text is wrapped however). >> I considers this important to facilitate proof-reading the text before >> submission. BTW, are regular users (i.e. without developer status) >> able to edit their own text after uploading? As I remember from my >> non-developer days this was not possible. Therefore, it is even more >> important that the text is wrapped before sending. Otherwise we will >> be plagued with more and more unreadable submissions. >> > > this may help, if added > > > textarea { >   white-space: pre-wrap; > } Added, please test. Michael. From lazarus at mfriebe.de Tue Apr 23 12:46:31 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Tue, 23 Apr 2019 12:46:31 +0200 Subject: [Lazarus] css Re: Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> Message-ID: On 23/04/2019 12:40, Michael Van Canneyt via lazarus wrote: > > > On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: > >> On 23/04/2019 09:43, Michael Van Canneyt via lazarus wrote: >>> >>>> I sent some bits of css, that I hope will get applied, to fix the >>>> "yellow dash" (and all other priority indicators). >>> >>> I applied it. >> >> Sorry, but it appears some "trash" went into it >> >> .my-buglist-id .fa-lg { >>   text-shadow: 0px 0px 1px #444; >> } >> .my-buglist-id .fa-paperclip { >>   text-shadow: 0px 0px 0px #000; >> } >> >> .column-priority .fa-lg { >>   text-shadow: 0px 0px 1px #444; >> } > > Trash is here "Â" ? This is in the css file, and prevents the entry from being processed. Not all editors show the char. So it may be some invalid utf8 or such. From michael at freepascal.org Tue Apr 23 12:48:17 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Tue, 23 Apr 2019 12:48:17 +0200 (CEST) Subject: [Lazarus] css Re: Website/Mantis back online (colors) In-Reply-To: References: <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> Message-ID: On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: > On 23/04/2019 12:40, Michael Van Canneyt via lazarus wrote: >> >> >> On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: >> >>> On 23/04/2019 09:43, Michael Van Canneyt via lazarus wrote: >>>> >>>>> I sent some bits of css, that I hope will get applied, to fix the >>>>> "yellow dash" (and all other priority indicators). >>>> >>>> I applied it. >>> >>> Sorry, but it appears some "trash" went into it >>> >>> .my-buglist-id .fa-lg { >>>   text-shadow: 0px 0px 1px #444; >>> } >>> .my-buglist-id .fa-paperclip { >>>   text-shadow: 0px 0px 0px #000; >>> } >>> >>> .column-priority .fa-lg { >>>   text-shadow: 0px 0px 1px #444; >>> } >> >> Trash is here "Â" ? > > This is in the css file, and prevents the entry from being processed. > > Not all editors show the char. So it may be some invalid utf8 or such. Changed, please test. Michael. From lazarus at mfriebe.de Tue Apr 23 12:48:36 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Tue, 23 Apr 2019 12:48:36 +0200 Subject: [Lazarus] css Re: Website/Mantis back online In-Reply-To: References: <5f928c05-d675-9c5c-3d66-644f1261a3e9@mfriebe.de> Message-ID: <8fd73666-9ae7-8a0e-d486-d4eb0d78283a@mfriebe.de> On 23/04/2019 12:42, Michael Van Canneyt via lazarus wrote: > > > On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: > >> On 23/04/2019 11:41, Werner Pamler via lazarus wrote: >>> I am slowly getting used to it. >>> >>> Writing notes to some bug reports I noticed an annoying issue, >>> though: While typing the text does not wrap any more when it becomes >>> wider than the memo (after pressing "Add Note" the text is wrapped >>> however). I considers this important to facilitate proof-reading the >>> text before submission. BTW, are regular users (i.e. without >>> developer status) able to edit their own text after uploading? As I >>> remember from my non-developer days this was not possible. >>> Therefore, it is even more important that the text is wrapped before >>> sending. Otherwise we will be plagued with more and more unreadable >>> submissions. >>> >> >> this may help, if added >> >> >> textarea { >>   white-space: pre-wrap; >> } > > Added, please test. Same extra trash char. From lazarus at mfriebe.de Tue Apr 23 12:57:55 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Tue, 23 Apr 2019 12:57:55 +0200 Subject: [Lazarus] css Re: Website/Mantis back online (colors) In-Reply-To: References: <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> Message-ID: yes the yellow minus is ok now. On 23/04/2019 12:48, Michael Van Canneyt via lazarus wrote: > > >>> Trash is here "Â" ? >> >> This is in the css file, and prevents the entry from being processed. >> >> Not all editors show the char. So it may be some invalid utf8 or such. > > Changed, please test. > > Michael. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at freepascal.org Tue Apr 23 12:59:01 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Tue, 23 Apr 2019 12:59:01 +0200 (CEST) Subject: [Lazarus] css Re: Website/Mantis back online In-Reply-To: <8fd73666-9ae7-8a0e-d486-d4eb0d78283a@mfriebe.de> References: <5f928c05-d675-9c5c-3d66-644f1261a3e9@mfriebe.de> <8fd73666-9ae7-8a0e-d486-d4eb0d78283a@mfriebe.de> Message-ID: On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: > On 23/04/2019 12:42, Michael Van Canneyt via lazarus wrote: >> >> >> On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: >> >>> On 23/04/2019 11:41, Werner Pamler via lazarus wrote: >>>> I am slowly getting used to it. >>>> >>>> Writing notes to some bug reports I noticed an annoying issue, >>>> though: While typing the text does not wrap any more when it becomes >>>> wider than the memo (after pressing "Add Note" the text is wrapped >>>> however). I considers this important to facilitate proof-reading the >>>> text before submission. BTW, are regular users (i.e. without >>>> developer status) able to edit their own text after uploading? As I >>>> remember from my non-developer days this was not possible. >>>> Therefore, it is even more important that the text is wrapped before >>>> sending. Otherwise we will be plagued with more and more unreadable >>>> submissions. >>>> >>> >>> this may help, if added >>> >>> >>> textarea { >>>   white-space: pre-wrap; >>> } >> >> Added, please test. > > Same extra trash char. Changed. I do copy&paste from your mail, so somehow it ends up in your mails...   or so ? Michael. From ryan at thealchemistguild.com Tue Apr 23 18:14:15 2019 From: ryan at thealchemistguild.com (Ryan Joseph) Date: Tue, 23 Apr 2019 12:14:15 -0400 Subject: [Lazarus] css Re: Website/Mantis back online (colors) In-Reply-To: References: <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> Message-ID: <45EBD8EB-C00F-4B77-B962-64F9CE442A9B@thealchemistguild.com> > On Apr 23, 2019, at 6:57 AM, Martin Frb via lazarus wrote: > > yes the yellow minus is ok now. Nice, looks better. Is the red link color going to be changed? It doesn’t look right at all. Regards, Ryan Joseph From werner.pamler at freenet.de Tue Apr 23 21:24:54 2019 From: werner.pamler at freenet.de (Werner Pamler) Date: Tue, 23 Apr 2019 21:24:54 +0200 Subject: [Lazarus] css Re: Website/Mantis back online In-Reply-To: References: <5f928c05-d675-9c5c-3d66-644f1261a3e9@mfriebe.de> Message-ID: <225a6a5f-7ded-c501-6776-a5eef1e6176a@freenet.de> Am 23.04.2019 um 12:42 schrieb Michael Van Canneyt via lazarus: > > > On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: > >> On 23/04/2019 11:41, Werner Pamler via lazarus wrote: >>> I am slowly getting used to it. >>> >>> Writing notes to some bug reports I noticed an annoying issue, >>> though: While typing the text does not wrap any more when it becomes >>> wider than the memo (after pressing "Add Note" the text is wrapped >>> however). I considers this important to facilitate proof-reading the >>> text before submission. BTW, are regular users (i.e. without >>> developer status) able to edit their own text after uploading? As I >>> remember from my non-developer days this was not possible. >>> Therefore, it is even more important that the text is wrapped before >>> sending. Otherwise we will be plagued with more and more unreadable >>> submissions. >>> >> >> this may help, if added >> >> >> textarea { >>   white-space: pre-wrap; >> } > > Added, please test. > > Michael. Yes, it works. Thank you, Martin and Michael From bartjunk64 at gmail.com Tue Apr 23 22:28:42 2019 From: bartjunk64 at gmail.com (Bart) Date: Tue, 23 Apr 2019 22:28:42 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> Message-ID: On Tue, Apr 23, 2019 at 9:43 AM Michael Van Canneyt via lazarus wrote: > > I applied it. Much better now. Only the green for Resolved is so pale it hardly contrasts with Closed. Bart -- Bart From bartjunk64 at gmail.com Tue Apr 23 22:31:40 2019 From: bartjunk64 at gmail.com (Bart) Date: Tue, 23 Apr 2019 22:31:40 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: On Tue, Apr 23, 2019 at 11:44 AM Werner Pamler via lazarus wrote: > BTW, are regular users (i.e. without developer status) able > to edit their own text after uploading? As I remember from my > non-developer days this was not possible. Yes, they are. I'm just reporter in fpc, but I can edit (and delete) my notes. Bart -- Bart From michael at freepascal.org Tue Apr 23 22:53:39 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Tue, 23 Apr 2019 22:53:39 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> Message-ID: On Tue, 23 Apr 2019, Bart via lazarus wrote: > On Tue, Apr 23, 2019 at 9:43 AM Michael Van Canneyt via lazarus > wrote: > >> >> I applied it. > > Much better now. > Only the green for Resolved is so pale it hardly contrasts with Closed. I made it darker. Michael. From lazarus at mfriebe.de Tue Apr 23 23:00:34 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Tue, 23 Apr 2019 23:00:34 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> Message-ID: <5b071275-0221-79cf-1af3-907a28c2e636@mfriebe.de> On 23/04/2019 22:53, Michael Van Canneyt via lazarus wrote: > > I made it darker. If Bart agrees, and if it is not asking to much (I know its been a lot of mantis this week) Can we go halfway between the new and the old green? From michael at freepascal.org Tue Apr 23 23:28:49 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Tue, 23 Apr 2019 23:28:49 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <5b071275-0221-79cf-1af3-907a28c2e636@mfriebe.de> References: <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> <5b071275-0221-79cf-1af3-907a28c2e636@mfriebe.de> Message-ID: On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: > On 23/04/2019 22:53, Michael Van Canneyt via lazarus wrote: >> >> I made it darker. > > If Bart agrees, and if it is not asking to much (I know its been a lot > of mantis this week) > > Can we go halfway between the new and the old green? If you give me the RGB in hex, yes, sure. My RGB hex is not so fluent that I can say "A halfway between '#51efab' and '#cceedd', no sugar or milk, please" Michael. From lazarus at mfriebe.de Tue Apr 23 23:34:20 2019 From: lazarus at mfriebe.de (Martin Frb) Date: Tue, 23 Apr 2019 23:34:20 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> <5b071275-0221-79cf-1af3-907a28c2e636@mfriebe.de> Message-ID: On 23/04/2019 23:28, Michael Van Canneyt via lazarus wrote: > > > On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: > >> On 23/04/2019 22:53, Michael Van Canneyt via lazarus wrote: >>> >>> I made it darker. >> >> If Bart agrees, and if it is not asking to much (I know its been a >> lot of mantis this week) >> >> Can we go halfway between the new and the old green? > > If you give me the RGB in hex, yes, sure. > > My RGB hex is not so fluent that I can say "A halfway between > '#51efab' and '#cceedd', no sugar or milk, please" 8EEFC4 From vojtech.cihak at atlas.cz Tue Apr 23 23:59:19 2019 From: vojtech.cihak at atlas.cz (=?utf-8?q?Vojt=C4=9Bch_=C4=8Cih=C3=A1k?=) Date: Tue, 23 Apr 2019 23:59:19 +0200 Subject: [Lazarus] =?utf-8?q?Website/Mantis_back_online_=28colors=29?= In-Reply-To: References: , <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de>, , , , , <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de>, <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de>, <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de>, <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com>, <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de>, <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com>, <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de>, , , , <5b071275-0221-79cf-1af3-907a28c2e636@mfriebe.de>, Message-ID: <20190423235919.44838E5F@atlas.cz> Hi,   original appearance on Wayback machine: https://web.archive.org/web/20171104124226/https://bugs.freepascal.org/view_all_bug_page.php   V. ______________________________________________________________ > Od: "Martin Frb via lazarus" > Komu: lazarus at lists.lazarus-ide.org > Datum: 23.04.2019 23:34 > Předmět: Re: [Lazarus] Website/Mantis back online (colors) > On 23/04/2019 23:28, Michael Van Canneyt via lazarus wrote: > > > On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: > >> On 23/04/2019 22:53, Michael Van Canneyt via lazarus wrote: >>> >>> I made it darker. >> >> If Bart agrees, and if it is not asking to much (I know its been a >> lot of mantis this week) >> >> Can we go halfway between the new and the old green? > > If you give me the RGB in hex, yes, sure. > > My RGB hex is not so fluent that I can say "A halfway between > '#51efab' and '#cceedd', no sugar or milk, please" 8EEFC4 -- _______________________________________________ lazarus mailing list lazarus at lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at freepascal.org Wed Apr 24 00:01:23 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Wed, 24 Apr 2019 00:01:23 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> <5b071275-0221-79cf-1af3-907a28c2e636@mfriebe.de> Message-ID: On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: > On 23/04/2019 23:28, Michael Van Canneyt via lazarus wrote: >> >> >> On Tue, 23 Apr 2019, Martin Frb via lazarus wrote: >> >>> On 23/04/2019 22:53, Michael Van Canneyt via lazarus wrote: >>>> >>>> I made it darker. >>> >>> If Bart agrees, and if it is not asking to much (I know its been a >>> lot of mantis this week) >>> >>> Can we go halfway between the new and the old green? >> >> If you give me the RGB in hex, yes, sure. >> >> My RGB hex is not so fluent that I can say "A halfway between >> '#51efab' and '#cceedd', no sugar or milk, please" > > > 8EEFC4 Thanks. Applied, but I honestly don't see a lot of difference... Michael. From michael at freepascal.org Wed Apr 24 00:05:07 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Wed, 24 Apr 2019 00:05:07 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <20190423235919.44838E5F@atlas.cz> References: <20190423235919.44838E5F@atlas.cz> Message-ID: On Tue, 23 Apr 2019, Vojtěch Čihák via lazarus wrote: > Hi, >   > original appearance on Wayback > machine: https://web.archive.org/web/20171104124226/https://bugs.freepascal.org/view_all_bug_page.php That is #cceedd. The algorithm to apply the color to the row adds a 70% or 80% alpha to that, so you'd need to invert that to get the original color needed to get this color again... Michael. >>> >>> Can we go halfway between the new and the old green? >> >> If you give me the RGB in hex, yes, sure. >> >> My RGB hex is not so fluent that I can say "A halfway between > '#51efab' > and '#cceedd', no sugar or milk, please" > > > 8EEFC4 > -- > _______________________________________________ > lazarus mailing list > lazarus at lists.lazarus-ide.org > https://lists.lazarus-ide.org/listinfo/lazarus > > > From ryan at thealchemistguild.com Wed Apr 24 01:31:20 2019 From: ryan at thealchemistguild.com (Ryan Joseph) Date: Tue, 23 Apr 2019 19:31:20 -0400 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <20190423235919.44838E5F@atlas.cz> Message-ID: > On Apr 23, 2019, at 6:05 PM, Michael Van Canneyt via lazarus wrote: > > to get this color again... Looks better but it’s still pretty hard on the eyes. It may be possible that entire idea of using a background color is working against us? The official demo looks much better in my opinion (https://mantisbt.org/bugs/my_view_page.php) and still maintains the color coding. Why not use that? Regards, Ryan Joseph From lazarus at kluug.net Wed Apr 24 07:05:10 2019 From: lazarus at kluug.net (Ondrej Pokorny) Date: Wed, 24 Apr 2019 07:05:10 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: <34f9ed12-3beb-1214-dd99-ee31d700f66a@kluug.net> Hello Michael, is the "Summary" in "Viewing Issues" table centered for a purpose? Could you make it aligned to the left? https://bugs.freepascal.org/view_all_bug_page.php Thanks Ondrej From michael at freepascal.org Wed Apr 24 08:17:22 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Wed, 24 Apr 2019 08:17:22 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online In-Reply-To: <34f9ed12-3beb-1214-dd99-ee31d700f66a@kluug.net> References: <34f9ed12-3beb-1214-dd99-ee31d700f66a@kluug.net> Message-ID: On Wed, 24 Apr 2019, Ondrej Pokorny via lazarus wrote: > Hello Michael, > > is the "Summary" in "Viewing Issues" table centered for a purpose? Could > you make it aligned to the left? > > https://bugs.freepascal.org/view_all_bug_page.php Done. Michael. From michael at freepascal.org Wed Apr 24 08:22:49 2019 From: michael at freepascal.org (Michael Van Canneyt) Date: Wed, 24 Apr 2019 08:22:49 +0200 (CEST) Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <20190423235919.44838E5F@atlas.cz> Message-ID: On Tue, 23 Apr 2019, Ryan Joseph via lazarus wrote: > > >> On Apr 23, 2019, at 6:05 PM, Michael Van Canneyt via lazarus wrote: >> >> to get this color again... > > Looks better but it’s still pretty hard on the eyes. It may be possible that entire idea of using a background color is working against us? Florian requested row coding, as it was in v 1.x. Michael. From aaa5500 at ya.ru Wed Apr 24 10:08:50 2019 From: aaa5500 at ya.ru (Alexey Tor.) Date: Wed, 24 Apr 2019 11:08:50 +0300 Subject: [Lazarus] LCLTranslator last patch, refactor Message-ID: <6cb1c849-bf7b-455c-10ac-3f0dfef46461@ya.ru> Maxim, last patch (supporting --lang=) has 4 reads of the same ParamStrUTF8(i). Pls use a var. -- Regards, Alexey From werner.pamler at freenet.de Wed Apr 24 10:11:59 2019 From: werner.pamler at freenet.de (Werner Pamler) Date: Wed, 24 Apr 2019 10:11:59 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: Message-ID: <088e8dba-3f11-d20b-e803-18efdcfc8255@freenet.de> Am 23.04.2019 um 22:31 schrieb Bart via lazarus: > On Tue, Apr 23, 2019 at 11:44 AM Werner Pamler via lazarus > wrote: > >> BTW, are regular users (i.e. without developer status) able >> to edit their own text after uploading? As I remember from my >> non-developer days this was not possible. > Yes, they are. > I'm just reporter in fpc, but I can edit (and delete) my notes. Seemingly not everybody: https://forum.lazarus.freepascal.org/index.php/topic,45168.msg318748 From bo.berglund at gmail.com Wed Apr 24 11:54:57 2019 From: bo.berglund at gmail.com (Bo Berglund) Date: Wed, 24 Apr 2019 11:54:57 +0200 Subject: [Lazarus] css Re: Website/Mantis back online References: <5f928c05-d675-9c5c-3d66-644f1261a3e9@mfriebe.de> <8fd73666-9ae7-8a0e-d486-d4eb0d78283a@mfriebe.de> Message-ID: On Tue, 23 Apr 2019 12:59:01 +0200 (CEST), Michael Van Canneyt via lazarus wrote: >I do copy&paste from your mail, so somehow it ends up in your mails...   or so ? > When copying text from webpages, dev IDE's and emails to paste somewhere I always first paste in Notepad++ then re-copy the pasted text and copy into the target. (Your favorite text editor here) Very often the copied original contains a bunch of unwanted fluff... -- Bo Berglund Developer in Sweden From lazarus at kluug.net Wed Apr 24 12:01:18 2019 From: lazarus at kluug.net (Ondrej Pokorny) Date: Wed, 24 Apr 2019 12:01:18 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: References: <34f9ed12-3beb-1214-dd99-ee31d700f66a@kluug.net> Message-ID: <4a8c8378-ae66-8638-8a23-daa5419388e9@kluug.net> On 24.04.2019 08:17, Michael Van Canneyt wrote: > On Wed, 24 Apr 2019, Ondrej Pokorny via lazarus wrote: >> Hello Michael, >> >> is the "Summary" in "Viewing Issues" table centered for a purpose? >> Could you make it aligned to the left? >> >> https://bugs.freepascal.org/view_all_bug_page.php > > Done. Thank you! Ondrej From mailinglists at geldenhuys.co.uk Wed Apr 24 12:05:34 2019 From: mailinglists at geldenhuys.co.uk (Graeme Geldenhuys) Date: Wed, 24 Apr 2019 11:05:34 +0100 Subject: [Lazarus] css Re: Website/Mantis back online In-Reply-To: References: <5f928c05-d675-9c5c-3d66-644f1261a3e9@mfriebe.de> <8fd73666-9ae7-8a0e-d486-d4eb0d78283a@mfriebe.de> Message-ID: On 24/04/2019 10:54, Bo Berglund via lazarus wrote: > When copying text from webpages, dev IDE's and emails to paste > somewhere I always first paste in Notepad++ Some background info: That's because the original content is considered "rich text". But any program worth using should have an option to paste in different formats (if the original clipboard content is considered "rich text"). So there really should be an option to "paste unformatted". Email clients however tend to automatically determine the format of the pasted text based on the current email formatting (is it an HTML email or Plain text email that you are writing). Regards, Graeme -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://fpgui.sourceforge.net/ My public PGP key: http://tinyurl.com/graeme-pgp From lazarus at kluug.net Wed Apr 24 12:17:23 2019 From: lazarus at kluug.net (Ondrej Pokorny) Date: Wed, 24 Apr 2019 12:17:23 +0200 Subject: [Lazarus] css Re: Website/Mantis back online In-Reply-To: References: <5f928c05-d675-9c5c-3d66-644f1261a3e9@mfriebe.de> <8fd73666-9ae7-8a0e-d486-d4eb0d78283a@mfriebe.de> Message-ID: <9fdb664a-1620-8f95-81fc-059236175da4@kluug.net> On 24.04.2019 12:05, Graeme Geldenhuys via lazarus wrote: > On 24/04/2019 10:54, Bo Berglund via lazarus wrote: >> When copying text from webpages, dev IDE's and emails to paste >> somewhere I always first paste in Notepad++ > Some background info: > > That's because the original content is considered "rich text". But any > program worth using should have an option to paste in different formats > (if the original clipboard content is considered "rich text"). So there > really should be an option to "paste unformatted". Email clients however > tend to automatically determine the format of the pasted text based on > the current email formatting (is it an HTML email or Plain text email > that you are writing). Quite a lot of editors, web browsers and email clients support "Ctrl+Shift+V" for "paste unformatted". Ondrej From bartjunk64 at gmail.com Wed Apr 24 12:20:54 2019 From: bartjunk64 at gmail.com (Bart) Date: Wed, 24 Apr 2019 12:20:54 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <9e96dae7-5dc2-e026-b4bd-3b0618848530@mfriebe.de> <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> Message-ID: On Tue, Apr 23, 2019 at 10:53 PM Michael Van Canneyt via lazarus wrote: > I made it darker. Thank you very much! -- Bart From bartjunk64 at gmail.com Wed Apr 24 12:23:09 2019 From: bartjunk64 at gmail.com (Bart) Date: Wed, 24 Apr 2019 12:23:09 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <5b071275-0221-79cf-1af3-907a28c2e636@mfriebe.de> References: <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> <5b071275-0221-79cf-1af3-907a28c2e636@mfriebe.de> Message-ID: On Tue, Apr 23, 2019 at 11:00 PM Martin Frb via lazarus wrote: > If Bart agrees, .. ;-) I would vote for large contrast, especially for those who may have some degree of visual impediment. -- Bart From bartjunk64 at gmail.com Wed Apr 24 12:31:46 2019 From: bartjunk64 at gmail.com (Bart) Date: Wed, 24 Apr 2019 12:31:46 +0200 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: <20190423235919.44838E5F@atlas.cz> References: <111b5878-a854-2ab0-3d67-be7c044bf457@mfriebe.de> <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> <5b071275-0221-79cf-1af3-907a28c2e636@mfriebe.de> <20190423235919.44838E5F@atlas.cz> Message-ID: On Tue, Apr 23, 2019 at 11:59 PM Vojtěch Čihák via lazarus wrote: > original appearance on Wayback machine: https://web.archive.org/web/20171104124226/https://bugs.freepascal.org/view_all_bug_page.php Colorscheme in those "ancient" days: New: #ffa0a0 Acknowledged: # ffd850 Confirmed: # ffffb0 Assigned: #c8c8ff Feedback: #ff50a8 Resolved: #cceedd Closed: #e8e8e8 (According to the eyedropper of my FF) -- Bart From bartjunk64 at gmail.com Wed Apr 24 12:35:13 2019 From: bartjunk64 at gmail.com (Bart) Date: Wed, 24 Apr 2019 12:35:13 +0200 Subject: [Lazarus] Website/Mantis back online In-Reply-To: <088e8dba-3f11-d20b-e803-18efdcfc8255@freenet.de> References: <088e8dba-3f11-d20b-e803-18efdcfc8255@freenet.de> Message-ID: On Wed, Apr 24, 2019 at 10:14 AM Werner Pamler via lazarus wrote: > > Yes, they are. > > I'm just reporter in fpc, but I can edit (and delete) my notes. > Seemingly not everybody: > https://forum.lazarus.freepascal.org/index.php/topic,45168.msg318748 As of today, as reporter, I cannot edit my own notes anymore, let alone delete or make private. This should be fixed. As developer, the buttons to edit etc. are hidden by default and only show upon hoovering. -- Bart From mailinglists at geldenhuys.co.uk Wed Apr 24 14:07:54 2019 From: mailinglists at geldenhuys.co.uk (Graeme Geldenhuys) Date: Wed, 24 Apr 2019 13:07:54 +0100 Subject: [Lazarus] Website/Mantis back online (colors) In-Reply-To: References: <4dfd3874-e458-d155-200d-1c6bec97c154@mfriebe.de> <61b6c5a8-93a6-acb4-42d5-ae361c32fdcb@mfriebe.de> <569db153-3deb-64df-21de-9aa99b35cd41@mfriebe.de> <354D9E2C-65E4-4C79-8B0D-65EE43B6C80F@thealchemistguild.com> <1b419336-fd09-b798-427d-be797b1b9e00@mfriebe.de> <571194F5-B84D-47CD-840E-DAED21D14E3D@thealchemistguild.com> <0407fdc2-7cec-f2b5-b584-5f89004c7496@mfriebe.de> <5b071275-0221-79cf-1af3-907a28c2e636@mfriebe.de> Message-ID: On 24/04/2019 11:23, Bart via lazarus wrote: > I would vote for large contrast, especially for those who may have > some degree of visual impediment. In that case I would recommend a separate stylesheet. Take Firefox web browser for example.... In the menu "View -> Page Style ->