Re: [Development] HEADS-UP: Qt 6.6 Feature Freeze is getting closer

2023-05-08 Thread Jani Heikkinen via Development
Hi, Only less than 2 weeks to 'Platform and Module' freeze and ~ a month to official feature freeze. So it is time - to inform me about new modules coming in Qt 6.6 * Qt Graphs is only known one atm - to inform me if some 'TP' module will be officially supported in Qt 6.6 - to start

Re: [Development] Raising the minimum to C++20

2023-05-08 Thread Lisandro Damián Nicanor Pérez Meyer
For the sake of correctness... On Sat, 6 May 2023 at 12:12, Lisandro Damián Nicanor Pérez Meyer wrote: [snip] > - meta-qt6 is still buggy. Note I am not talking about boot2qt but > just using the Qt 6 layer in a normal Yocto way. Example: > QTBUG-113372: QT_HOST_PATH not set in SDK. This last

Re: [Development] API style guide: scoped enum or not?

2023-05-08 Thread Thiago Macieira
On Monday, 8 May 2023 00:21:32 PDT Sune Vuorela wrote: > How would you do the extensions (e.g. user roles or user events) > if you convert to enums ? Still with the enum, but you need to somewhere write extra code to cast that new number to the proper type. That's all. -- Thiago Macieira -

Re: [Development] Monthly CI maintenance break - May (Mon, May 8th 2023)

2023-05-08 Thread Ville-Pekka Karhu via Development
This is now DONE From: Ville-Pekka Karhu Sent: Monday, May 8, 2023 08:02 To: Qt development mailing list Subject: Re: Monthly CI maintenance break - May (Mon, May 8th 2023) This starts NOW From: Ville-Pekka Karhu Sent: Tuesday,

Re: [Development] API style guide: scoped enum or not?

2023-05-08 Thread Sune Vuorela
On 2023-05-04, Marc Mutz via Development wrote: > So, enum-backed APIs taking int will have to be ported to take the enum > instead. On the plus side, you get type-richer and safer APIs. How would you do the extensions (e.g. user roles or user events) if you convert to enums ? /Sune --