Paul Knopf

Results 159 comments of Paul Knopf

I'm using fresh Ubuntu 18.10. The same thing on Ubuntu 18.04. I actually using [Darch](https://github.com/godarch/darch) for my OS manager, which allows me to keep my OS scripted at all times....

Side note: I typically don't like installing ```*-dev``` images into my Darch system. Using Darch, packages installed at runtime are wiped on reboot (using ```tmpfs```). This means that for each...

Is joining GitLab and moving documentation there a requirement?

Let me ask this, are there any requirements from us, as opposed to just "joining"?

I'm not following. Can you post some snippets of what you are doing?

Property names are converted to camalCase in QML. Try ```default.serverIp```.

Is ```Properties.Settings``` new-able? With no ctor params? What type/visibility is the "Settings" property. You might have to create your own C# class that wraps it. It might be using internal...

What command are you using to publish? ``` dotnet publish ``` That produces an output of this: http://termbin.com/2ekwe Then the following is used to run the app. ``` cd bin/Debug/netcoreapp2.1/publish/...

Reopening, since this needs to be fixed. Multiple people keep running into this problem.

I don't _think_ it's possible. https://github.com/pauldotknopf/Qml.Net/blob/0ebef45/src/native/QmlNet/QmlNet/types/NetSignalInfo.cpp#L43 https://github.com/pauldotknopf/Qml.Net/blob/f62f3c0/src/native/QmlNet/QmlNet/qml/NetValueMetaObject.cpp#L30 Qt's ```QMetaObjectBuilder::addSignal``` doesn't have much documentation, but from what I've seen, it accepts a format like ```MethodName(Qstring, QVariant)```. I'll try to see if...