[Development] Loading translations for QML modules

2017-07-05 Thread Alexander Volkov
Hi, Currently translations for QML modules should be loaded manually. It would be much more convenient if Qt Quick could load them automatically. Are there any plans about it? BR, Alexander. ___ Development mailing list Development@qt-project.org

Re: [Development] Enabling private features for separate modules

2017-06-19 Thread Alexander Volkov
19.06.2017 20:06, Oswald Buddenhagen пишет: On Mon, Jun 19, 2017 at 01:52:59PM +0300, Alexander Volkov wrote: 19.06.2017 12:53, Oswald Buddenhagen пишет: On Mon, Jun 19, 2017 at 12:52:12PM +0300, Alexander Volkov wrote: Hi, I build qtwebengine as a separate module. What is the right way

Re: [Development] Enabling private features for separate modules

2017-06-19 Thread Alexander Volkov
19.06.2017 13:59, Dominik Holland пишет: $ qmake -- -system-ffmpeg ***Unknown option -system-ffmpeg I think it needs to be: qmake -- --enable-system-ffmpeg if you want to add your own options you can also add a "commandline" section to configure.json It also doesn't work. Somehow this way of

Re: [Development] Enabling private features for separate modules

2017-06-19 Thread Alexander Volkov
19.06.2017 12:53, Oswald Buddenhagen пишет: On Mon, Jun 19, 2017 at 12:52:12PM +0300, Alexander Volkov wrote: Hi, I build qtwebengine as a separate module. What is the right way to enable system-ffmpeg feature? you use qmake [usual qmake args] -- [configure args] $ qmake -- -system

[Development] Enabling private features for separate modules

2017-06-19 Thread Alexander Volkov
Hi, I build qtwebengine as a separate module. What is the right way to enable system-ffmpeg feature? It's not auto-detected: "system-ffmpeg": { "label": "ffmpeg", "autoDetect": false, "condition": "libs.ffmpeg && features.system-opus &&

[Development] Comparison of version numbers in qmake project files

2017-03-07 Thread Alexander Volkov
Hi, Need more reviewers for https://codereview.qt-project.org/#/c/181665/ which adds test functions for comparing version numbers: versionNumberAtLeast(VERSION, 5.10.0) { ... } versionNumberLessThan(VERSION, 5.10.0) { ... } There are two questions: 1. Whether to use Number in the

[Development] include/QtGui/QList header

2017-02-09 Thread Alexander Volkov
Hi all, The header include/QtGui/QList is created since Qt 5.8. It includes qevent.h and I guess this is because of https://codereview.qt-project.org/#/c/170513/ Who knows how to fix it? ___ Development mailing list Development@qt-project.org

Re: [Development] Feature Freeze Exception: QStringView

2017-02-01 Thread Alexander Volkov
31.01.2017 21:52, Thiago Macieira пишет: Good point, that's a point in favour of having Q{String,ByteArray}View. We need to think how that will work with having classes for exclusive ownership (not implicitly shared). That's the counterpart of the Views: they don't own, but they only have