slipher

Results 1111 comments of slipher

> Also it means that once the protocol handler is installed, any website, chat application or so can share such url, and trigger the updater to ping home. The `:mainWindow`...

If we want to make opening the updater main window using the protocol a feature, then the string `:mainWindow` should be changed to something that is accepted by URL parsers.

I think you can make a drop-in aligned replacement for vec3_t like this: ``` struct alignas(16) alignedVec3_t : public std::array {}; ``` This can be used in arrays so then...

As a direct replacement for vec3_t. `alignedVec3_t localBounds[ 2 ];` This would automatically work with indexing operations and functions like `VectorCopy`. But you would need a `.data()` or whatever to...

> I like the idea of having have an `alignedVec3_t` but I don't see the benefit of making `bounds_t` an array of it. I'm suggesting that no `bounds_t` is needed....

I don't like that if you downloaded a file named `updater.conf` in your downloads directory and then downloaded the updater, it would hijack the updater and make it use the...

Supposing we had a portable installer, do we really need a "relative" installer too? Like is it actually necessary/desirable to install the desktop files in the Lutris case? Maybe the...

So if it's OK to integrate everything with the system as usual, why do we need relative installation at all? I read that Lutris scripts may be implemented by forwarding...

A timely thread, since I've been fighting with a massive size blowup caused by upgrading to Qt6. It goes from about 33 to 55 MB for the Linux binary. I've...

Actually glslang is 1.92M and SPIRV-CROSS 2.27M. Another thing I want to check is disabling ahead-of-time QML compilation. There's 2.81M of compiled QML in the Qt6 build if I'm not...