Michael Schmuki

Results 35 comments of Michael Schmuki

One can probably also disable [HDR in Windows](https://support.microsoft.com/en-us/windows/hdr-settings-in-windows-2d767185-38ec-7fdc-6f97-bbc6c5ef24e6) while leaving Chromiums color profile on "default"? Could you also do a test, what the following snippet prints to the console, if...

If your concern is about using all the physical pixels available on a high dpi device, then this is already in place (see the [`QgisXYZDataSource`](https://github.com/qgis/qgis-js/blob/main/packages/qgis-js-ol/src/QgisXYZDataSource.ts)). The `pixelRatio` is detected/managed by...

The problem is that [`itemVisibilityChecked()`](https://github.com/qgis/qgis-js/blob/56984b7b5f88636ee58da7d46d86449df41995b0/src/model/MapLayer.hpp#L26) and [`setItemVisibilityChecked()`](https://github.com/qgis/qgis-js/blob/56984b7b5f88636ee58da7d46d86449df41995b0/src/model/MapLayer.hpp#L30C19-L30C43) in `MapLayer.hpp` will only effect the layer but not it's parent elements, see https://api.qgis.org/api/classQgsLayerTreeNode.html I did a quick test switching to `isVisible()` and...

Looks good from my side :+1: Did the following tests: - Linux - Syncing of a project with more than 2000 attachments - QField can now get the large file...

We should definitely switch to 512x512px tiles (based on the feedback of Andreas Hocevar)

@suricactus BadSignature error occurs when you have secrets in the db encrypted with a different key (e.g. a db dump from another system). Try to clean the secrets table and...

There is now a read-only ProjectSecretInline: ![Screenshot from 2024-05-25 11-14-44](https://github.com/opengisch/qfieldcloud/assets/591241/7bcc89d2-e945-4a13-8b88-0fbcaa9dcef9) The only missing part is a button in the project admin to create a new secret for that project. @suricactus...

> One thing which you might have considered is to move the validation from `admin.ProjectSecretForm.clean()` to the `models.Secret.clean()`. Since we are messing with the name in `admin.ProjectSecretForm.clean()` too, I will...

This is implemented with [Add Secrets to the admin page #939](https://github.com/opengisch/qfieldcloud/pull/939) and available in QFieldCloud >= v0.27.0

Sounds like a tough one and will probably take some time... We could mitigate this on our side, by moving the WheelHandler from [MapCanvas.qml](https://github.com/opengisch/QField/blob/master/src/qml/MapCanvas.qml#L454) to [QgsQuickMapCanvasMap](https://github.com/opengisch/QField/blob/master/src/core/qgsquick/qgsquickmapcanvasmap.cpp) (until resolved in Wayland...