Re: [Development] [Qt-creator] Nominating André Hartmann as new Maintainer of VCS support in Qt Creator

2024-07-15 Thread Eike Ziller via Development
Thanks and congratulations André! I've adapted https://wiki.qt.io/Maintainers and the JIRA component's default assignee. Br, Eike > Am 26.06.2024 um 20:48 schrieb André Hartmann via Development > : > > Hi all, > > Thank you very much for your trust. You really make me feel like I'm > part of

Re: [Development] [Qt-creator] Nominating André Hartmann as new Maintainer of VCS support in Qt Creator (was: Re: Stepping down as maintainer)

2024-06-19 Thread Eike Ziller via Development
Resent, to fix the cc to the Development mailing list. > Am 19.06.2024 um 10:17 schrieb Eike Ziller via Qt-creator > : > > Hi, > > I nominate André Hartmann as the new maintainer of Version Control in Qt > Creator. His contribution history in Qt Creator goes back to 2011 as well, > and he reg

Re: [Development] What are differences/relations among CMake targets with "docs" word?

2023-08-01 Thread Eike Ziller via Development
Hi, prepare_docs runs qdoc with -prepare, generate_docs runs qdoc with -generate (depends on prepare_docs), html_docs is basically a synonym for generate_docs, qch_docs creates the QtHelp databases (.qch files) for Assistant/Qt Creator, and docs ist a target that depends on html_docs and qch_docs,

Re: [Development] Creator: how to search for qdoc

2023-02-28 Thread Eike Ziller via Development
> Am 28/02/2023 um 09:20 schrieb Eike Ziller via Development > : > > Hi, > >> Am 27/02/2023 um 17:34 schrieb Lisandro Damián Nicanor Pérez Meyer >> : >> >> Hi! >> >> In Qt Creator qdoc is being searched by assuming that it is in the sam

Re: [Development] Creator: how to search for qdoc

2023-02-28 Thread Eike Ziller via Development
Hi, > Am 27/02/2023 um 17:34 schrieb Lisandro Damián Nicanor Pérez Meyer > : > > Hi! > > In Qt Creator qdoc is being searched by assuming that it is in the same > directory as qmake: > > https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/cmake/QtCreatorDocumentation.cmake?h=9.0#n54 > >

Re: [Development] Do we need VS2019 for Qt 6.6?

2023-02-06 Thread Eike Ziller via Development
> Am 04/02/2023 um 00:08 schrieb Thiago Macieira : > > On Friday, 3 February 2023 06:00:25 PST Kai Köhne via Development wrote: >> We’ve been looking into this. I’m convinced now that the data Vladimir was >> looking at on the server side is the one shown in the “Compiler >> Information” in the

Re: [Development] New Qt example development guideline and revamping examples

2023-01-20 Thread Eike Ziller via Development
> Am 19/01/2023 um 13:33 schrieb Giuseppe D'Angelo via Development > : > > Il 19/01/23 10:27, Tor Arne Vestbø ha scritto: >>> All the contrary, do NOT do that, as it results in 200+ lines unnamed >>> lambdas. Strongly prefer named slots. Keep the lambdas short and to the >>> point. Do not use

Re: [Development] Qt 6.5 Is Irrelevant for More than 95% of Mac Desktops

2022-12-16 Thread Eike Ziller via Development
Hm: "Apple are incorrectly reporting Big Sur 11 as Catalin 10.15. You can read more about it here. We can't correctly show usage for Big Sur 11 or Catalina 10.15 until Apple fixes this." Looks like WebKit doesn't report anything larger than 10.15. https://bugs.webkit.org/show_bug.cgi?id=216593

Re: [Development] Using QtCreator for Qt development

2022-12-13 Thread Eike Ziller via Development
> Am 13/12/2022 um 09:01 schrieb Vladimir Belyavsky : > > Thanks everyone for the replies! > > I've just tried what Eike suggested - on my Win machine just opened > CMakeLists.txt from Qt5 repo in Qt Creator and set up the Build Directory to > my own shadow build dir. > Hopefully I didn't hav

Re: [Development] Using QtCreator for Qt development

2022-12-12 Thread Eike Ziller via Development
> Am 10/12/2022 um 13:57 schrieb Владимир Белявский : > > Hello there, > I suspect that my Qt development process is far away from optimal... > > I have a top-level developer shadow build and my process looks like: > 1. Open source files that need to be changed in QtCreator > 2. Make changes >

Re: [Development] Proposal: let's change the release schedules a bit

2022-12-07 Thread Eike Ziller via Development
I think one of the considerations of releasing March and Septemper was to have a chance to be considered for Ubuntu's April and October releases. I'm not sure if I remember correctly, though, and also not if that had the desired effect (if it was a reason in the first place). ++ Eike > Am 05/12

Re: [Development] Nominating Marcus Tillmanns as Approver

2022-11-22 Thread Eike Ziller via Development
+1 from me as well :) > Am 22/11/2022 um 22:27 schrieb A. Pönitz : > > > > I'd like to nominate Marcus Tillmanns as an approver for the Qt project. > > Marcus has been working on Qt Creator since April, mostly on Docker > support and remote file access/command execution, but also on LLDB > sup

Re: [Development] Using '#pragma once' instead of include guards?

2022-10-14 Thread Eike Ziller via Development
> On 13 Oct 2022, at 16:56, Kyle Edwards via Development > wrote: > > On 10/13/22 10:42, Jean-Michaël Celerier wrote: >> >The only way you’d have a strong case with this is if it has some other >> >significant benefit, like compilation speedup. >> >> The main benefit to me is that it entirel

Re: [Development] Using '#pragma once' instead of include guards?

2022-10-10 Thread Eike Ziller via Development
> On 10 Oct 2022, at 11:55, Volker Hilsheimer via Development > wrote: > > Hi, > > > We are using `#pragma once` in a number of examples and tests in the Qt > source tree, but I don’t think we have officially endorsed it in favour of > explicit include guards. > > #pragma once is “non-stan