Re: [Development] Qt 5.15.10 LTS Commercial released

2022-06-07 Thread Milian Wolff via Development
On Dienstag, 7. Juni 2022 18:03:31 CEST Tarja Sundqvist wrote:
> Hi all,
> 
> we have released Qt 5.15.10 LTS Commercial today. Please see the blog post:
> https://www.qt.io/blog/commercial-lts-qt-5.15.10-released

Hey there,

where are the "release notes" to be found which contain the "list of fixes and 
the overview of all important changes"?

Please, can you add that directly to the release announcement in the future?

Thanks

-- 
Milian Wolff | milian.wo...@kdab.com | Senior Software Engineer
KDAB (Deutschland) GmbH, a KDAB Group company
Tel: +49-30-521325470
KDAB - The Qt, C++ and OpenGL Experts

smime.p7s
Description: S/MIME cryptographic signature
___
Development mailing list
Development@qt-project.org
https://lists.qt-project.org/listinfo/development


Re: [Development] Stepping down as QtWebChannel maintainer

2020-06-19 Thread Milian Wolff via Development
On Freitag, 19. Juni 2020 13:08:51 CEST Arno Rehn wrote:
> Am 17.06.2020 um 15:20 schrieb Arno Rehn:
> >> That said: If anyone else (Arno? Kai? Frank?) wants to step up and
> >> fill my
> >> role, I would be happy to get you up and running. And as I said, I'll
> >> stick
> >> around for reviewing. That should hopefully make the next maintainers
> >> role a
> >> bit less lonely ;-)
> > 
> > I'd actually like to do this. Personally, I think the tech is quite
> > cool. Additionally, at my company, we're using QtWebChannel for remote
> > interop. It's kinda critical for us, so we have a vested interest in
> > this getting the attention it needs :-)
> > I need to ask if I can perform the maintainer role on company time,
> > though. With family and a day job there's not much free time left.
> > 
> > I'll discuss this in the company and then I'll get back to you!
> 
> I've got the okay from my employer to do this on (part of my) company
> time, so I'm in :-)

Perfect, I hereby nominate Arno as my replacement.

Cheers

-- 
Milian Wolff | milian.wo...@kdab.com | Senior Software Engineer
KDAB (Deutschland) GmbH, a KDAB Group company
Tel: +49-30-521325470
KDAB - The Qt, C++ and OpenGL Experts

smime.p7s
Description: S/MIME cryptographic signature
___
Development mailing list
Development@qt-project.org
https://lists.qt-project.org/listinfo/development


[Development] Stepping down as QtWebChannel maintainer

2020-06-17 Thread Milian Wolff via Development
Hello everyone!

I would like to step down as the QtWebChannel maintainer. I simply don't have 
the time for that module, especially now that there's some more work required 
for Qt 6. I'll stay around to answer questions and I'll happily do code 
reviews. But I don't feel comfortable to keep my position without the time to 
work on the outstanding bugs (there aren't too many afaik).

A big driving factor for me is also Integrity as a forced supported platform. 
It is preventing me from merging a patch of mine [1] and I have simply zero 
interest to investigate what the hell that stupid compiler doesn't like about 
my code. The "good" platforms accept it after all.

That said: If anyone else (Arno? Kai? Frank?) wants to step up and fill my 
role, I would be happy to get you up and running. And as I said, I'll stick 
around for reviewing. That should hopefully make the next maintainers role a 
bit less lonely ;-)

Cheers

[1]: https://codereview.qt-project.org/c/qt/qtwebchannel/+/284741
-- 
Milian Wolff | milian.wo...@kdab.com | Senior Software Engineer
KDAB (Deutschland) GmbH, a KDAB Group company
Tel: +49-30-521325470
KDAB - The Qt, C++ and OpenGL Experts

smime.p7s
Description: S/MIME cryptographic signature
___
Development mailing list
Development@qt-project.org
https://lists.qt-project.org/listinfo/development


Re: [Development] QTCS2019 Notes from QtQml session

2019-11-27 Thread Milian Wolff via Development
On Mittwoch, 27. November 2019 10:35:23 CET Giuseppe D'Angelo via Development 
wrote:
> Il 27/11/19 09:52, Ulf Hermann ha scritto:
> > That depends on how we do the model/delegate matching mentioned above.
> > As stated above, I don't have a solution, yet. If you have an idea, let
> > us know. I can imagine generating some C++ from such code that does the
> > model/delegate matching at run-time via the metaobject system. That way
> > we would support var models.
> 
> Well, neither do I :) It would also be nice to find a similar solution
> for widgets and delegates. And to be honest such solution could also
> come later than 6.0?
> 
> The other side of the question, for long term running projects, is
> simply: will the injected "model" required property on delegate
> properties be fully supported throughout QML2/3 or is it immediately
> deprecated and just a porting measure?

Personally, I hope the answer is that this will remain supported. The only 
disadvantage is the runtime type introspection, which should/could be solved 
via Ulf's idea of something like an inline interface/trait component. Such 
that eventually we can do something like:

```
interface ModelData { // syntax is open, just to give an idea
required property string text
required property int answer
}
delegate: Text {
required property ModelData model // model is a misnomer, but I digress
text: model.text + model.answer
}
```

Cheers
-- 
Milian Wolff | milian.wo...@kdab.com | Senior Software Engineer
KDAB (Deutschland) GmbH, a KDAB Group company
Tel: +49-30-521325470
KDAB - The Qt, C++ and OpenGL Experts

smime.p7s
Description: S/MIME cryptographic signature
___
Development mailing list
Development@qt-project.org
https://lists.qt-project.org/listinfo/development