Re: [QGIS-Developer] QgsSettings

2022-12-09 Thread Alessandro Pasotti via QGIS-Developer
Hi Denis, it's been a while but IIRC the goal was to have a drop-in replacement of QSettings, that's probably why I recreated the same ctors. On Fri, Dec 9, 2022 at 2:48 PM Denis Rouzaud wrote: > > Hi all, > > While working on the refactoring of settings (see >

[QGIS-Developer] OpenID Connect authentication

2022-12-09 Thread Paul Wittle via QGIS-Developer
Hi, I have a web service that I've configured to use OpenID Connect for authentication. I'm aware that QGIS supports Oauth2 authentication and I believe that could work for the authentication but can you confirm whether it is possible to overwrite the redirect URL? The reason I ask is that

Re: [QGIS-Developer] QgsSettings

2022-12-09 Thread C Hamilton via QGIS-Developer
Just to let you know I use QgsSettings in most of my plugins. If you change it, that would cause all kinds of problems with compatibility to the 10 plugins that I support. Be very careful in changing class names. It can be done, but it could have major impacts. Best wishes, Calvin On Fri, Dec

[QGIS-Developer] QgsSettings

2022-12-09 Thread Denis Rouzaud via QGIS-Developer
Hi all, While working on the refactoring of settings (see https://github.com/qgis/QGIS-Enhancement-Proposals/issues/245), I am thinking about deprecating the QgsSettings class and directly integrate its functionality within QgsSettingsRegistry. I would need a bit of help to understand the