[Interest] QQuick3DGeometry example not working

2020-09-26 Thread joao morgado via Interest
I'm trying to draw a line using QQuick3DGeometry but nothing is draw. I couldnt find a working example of QQuick3DGeometry, if anyone knows please share. Also I dont need normals for a line, but not using them gives me a warning: QSSG.warning: Failed to bind attribute attr_norm The full code e

Re: [Interest] Queued signals lost in 5.15.0 (works in 5.12.5) (Windows)

2020-09-26 Thread Alexander Dyagilev
No. Have neither time nor willing to create one... I don't believe it's not a wide spread case. But even if not - have no willing for this for now, sorry... On 9/26/2020 6:47 PM, Giuseppe D'Angelo wrote: On 26/09/2020 16:48, Alexander Dyagilev wrote: I'm not sure what you mean exactly, but I'

Re: [Interest] Queued signals lost in 5.15.0 (works in 5.12.5) (Windows)

2020-09-26 Thread Alexander Dyagilev
Well, let me not to use it please, i want my app to continue to work lol. On 9/26/2020 6:43 PM, Thiago Macieira wrote: On Saturday, 26 September 2020 07:53:23 PDT Alexander Dyagilev wrote: template inline void qRegisterMyMetaType(const char *name) { if (QMetaType::type(name) == QMetaType

Re: [Interest] QNetworkConfigurationManager::isOnline always returns false on Android 11

2020-09-26 Thread ekke
Am 26.09.20 um 18:46 schrieb Marian Beermann: An interface like this is inherently racy. QNCM (obsolete) may tell you you are online, you connect to the server, send your stuff, and while that happens the device goes offline and you get an error. You probably handle this case already. yes - I'm

Re: [Interest] QNetworkConfigurationManager::isOnline always returns false on Android 11

2020-09-26 Thread ekke
Am 26.09.20 um 18:15 schrieb Thiago Macieira: On Saturday, 26 September 2020 08:53:52 PDT ekke wrote: Am 26.09.20 um 17:39 schrieb Thiago Macieira: On Friday, 25 September 2020 23:58:26 PDT Alexander Dyagilev wrote: Hello, Tested with Qt 5.12.9. Any workarounds? Suggestion: stop trying to ch

Re: [Interest] QNetworkConfigurationManager::isOnline always returns false on Android 11

2020-09-26 Thread Thiago Macieira
On Saturday, 26 September 2020 08:53:52 PDT ekke wrote: > Am 26.09.20 um 17:39 schrieb Thiago Macieira: > > On Friday, 25 September 2020 23:58:26 PDT Alexander Dyagilev wrote: > >> Hello, > >> > >> Tested with Qt 5.12.9. Any workarounds? > > > > Suggestion: stop trying to check and assume that yo

Re: [Interest] QNetworkConfigurationManager::isOnline always returns false on Android 11

2020-09-26 Thread ekke
Am 26.09.20 um 17:39 schrieb Thiago Macieira: On Friday, 25 September 2020 23:58:26 PDT Alexander Dyagilev wrote: Hello, Tested with Qt 5.12.9. Any workarounds? Suggestion: stop trying to check and assume that you are online. imagine a mobile app for outpatient services, where a nurse visits

Re: [Interest] Queued signals lost in 5.15.0 (works in 5.12.5) (Windows)

2020-09-26 Thread Giuseppe D'Angelo via Interest
On 26/09/2020 16:53, Alexander Dyagilev wrote: I use this helper macro for this (register a metatype in runtime): template inline void qRegisterMyMetaType(const char *name) {     if (QMetaType::type(name) == QMetaType::UnknownType)     qRegisterMetaType(name); } #define Q_REGISTER_MY_MET

Re: [Interest] Queued signals lost in 5.15.0 (works in 5.12.5) (Windows)

2020-09-26 Thread Giuseppe D'Angelo via Interest
On 26/09/2020 16:48, Alexander Dyagilev wrote: I'm not sure what you mean exactly, but I've seen many such situations (when connection did not work because metatype was not registered) and never saw any warnings anywhere. I mean that when you do a queued connection or a queued activation and

Re: [Interest] Queued signals lost in 5.15.0 (works in 5.12.5) (Windows)

2020-09-26 Thread Thiago Macieira
On Saturday, 26 September 2020 07:53:23 PDT Alexander Dyagilev wrote: > template > inline void qRegisterMyMetaType(const char *name) > { > if (QMetaType::type(name) == QMetaType::UnknownType) > qRegisterMetaType(name); > } Better implementation: template inline void qRegisterMyMet

Re: [Interest] QNetworkConfigurationManager::isOnline always returns false on Android 11

2020-09-26 Thread Thiago Macieira
On Friday, 25 September 2020 23:58:26 PDT Alexander Dyagilev wrote: > Hello, > > Tested with Qt 5.12.9. Any workarounds? Suggestion: stop trying to check and assume that you are online. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel DPG Cloud Engineering ___

Re: [Interest] Queued signals lost in 5.15.0 (works in 5.12.5) (Windows)

2020-09-26 Thread Alexander Dyagilev
I use this helper macro for this (register a metatype in runtime): template inline void qRegisterMyMetaType(const char *name) {     if (QMetaType::type(name) == QMetaType::UnknownType)     qRegisterMetaType(name); } #define Q_REGISTER_MY_METATYPE(type) qRegisterMyMetaType(#type); Usage ex

Re: [Interest] Queued signals lost in 5.15.0 (works in 5.12.5) (Windows)

2020-09-26 Thread Alexander Dyagilev
I'm not sure what you mean exactly, but I've seen many such situations (when connection did not work because metatype was not registered) and never saw any warnings anywhere. On 9/26/2020 12:02 PM, Giuseppe D'Angelo via Interest wrote: Il 26/09/20 07:55, Alexander Dyagilev ha scritto: Yeah, i

Re: [Interest] Queued signals lost in 5.15.0 (works in 5.12.5) (Windows)

2020-09-26 Thread Volker Hilsheimer
> On 25 Sep 2020, at 21:26, Giuseppe D'Angelo via Interest > wrote: > > Il 24/09/20 17:55, Rainer Wiesenfarth ha scritto: >> - if I take the application built and running without this issue with Qt >> 5.12.5 and replace the DLLs with those from Qt 5.15.0, the issue appears. >> That means there

Re: [Interest] Queued signals lost in 5.15.0 (works in 5.12.5) (Windows)

2020-09-26 Thread Giuseppe D'Angelo via Interest
Il 26/09/20 07:55, Alexander Dyagilev ha scritto: Yeah, it's possible that some metatype (used in signal) is registered in Qt 5.12 and is NOT registered in Qt 5.15, thus connection does not work between objects in different threads. It's required to register it manually then. Do you know of a

Re: [Interest] Android virtual device: forced cold boot from Qt Creator

2020-09-26 Thread Alexander Dyagilev
I.e. what I would like to know is if there is a way to make Qt Creator "compatible" with Android Studio so both can use the same saved state of the virtual machine without having to boot in cold mode... On 9/25/2020 9:17 PM, Alexander Dyagilev wrote: The same thing happens when I start from

[Interest] QNetworkConfigurationManager::isOnline always returns false on Android 11

2020-09-26 Thread Alexander Dyagilev
Hello, Tested with Qt 5.12.9. Any workarounds? I've created the bug report here: https://bugreports.qt.io/browse/QTBUG-86981 ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest