Re: [QGIS-Developer] Difficulties with custom bad layer handler in plugin code

2019-07-22 Thread Raymond Nijssen
So what you would do here is implement a custom pre-processor which detects some hardcoded path to the plugin resource, and swaps it out with the actual path to the python plugin. E.g. def my_processor(path): if path.endswith('my_plugins_super_north_arrow.svg'): return

Re: [QGIS-Developer] QGIS shortcuts on windows. With and without grass

2019-07-22 Thread Sylvain POULAIN
Hi, Just my opinion and report from some users : these two shortcuts are confused. Most users, until they know what is Grass, doesn't understand why there is two icons ... In Linux, there is only one shortcut and we could enable or disable grass plugin so why two shortcut in Windows. I know

[QGIS-Developer] Bump to proj 6/gdal 3

2019-07-22 Thread Nyall Dawson
Hi list, I'd like to request that we update the Windows builds and macos packages to use Proj 6.1 and GDAL 3. I've previously requested a hold on these upgrades to give additional time for testing and feedback. I now consider it an appropriate time to upgrade, as: 1. We have a nearly a full

Re: [QGIS-Developer] QgsProcessingAlgorithm: no output layer when cancelled

2019-07-22 Thread Nyall Dawson
On Mon, 22 Jul 2019 at 17:41, Nils Nolde wrote: > > Hola, > > running into 2 notorious problems with the ORS Tools plugin: > > 1. QgsProcessingAlgorithm, where it doesn't return the features which > were processed until the user presses Cancel. More elaborate on SE: > >

Re: [QGIS-Developer] Layer inserted into a layertree group using a processing post processor does not repaint on toggle

2019-07-22 Thread Nyall Dawson
On Tue, 23 Jul 2019 at 02:01, Tejas L wrote: > > Hello devs, > > I am using the QGIS postprocessing interface to add layers to a layer group. > The layer group is created in processAlgorithm, while the indivdual layers > are added from postprocessing classses. > > The layer group gets created

Re: [QGIS-Developer] Difficulties with custom bad layer handler in plugin code

2019-07-22 Thread Nyall Dawson
On Tue, 23 Jul 2019 at 00:58, Áron Gergely wrote: > > > > On 22/07/2019 01:11, Nyall Dawson wrote: > > On Sun, 21 Jul 2019 at 21:16, Áron Gergely wrote: > > > >> This actually works, for the 1st time when I open a project file with bad > >> layers. Then the 2nd time, QGIS always crashes. > >>

Re: [QGIS-Developer] Save layer metadata to global datasource

2019-07-22 Thread Gerald Kogler
Hi Tim, Thanks for your info, please let us know when you start the crowdfunding campaign to gather funds for advanced metadata support. We have two clients interested in this feature and we will try to win them as funders. Regards Gerald On 2/7/19 10:16, Tim Sutton wrote: > Hi Gerald > >

[QGIS-Developer] Layer inserted into a layertree group using a processing post processor does not repaint on toggle

2019-07-22 Thread Tejas L
Hello devs, I am using the QGIS postprocessing interface to add layers to a layer group. The layer group is created in processAlgorithm, while the indivdual layers are added from postprocessing classses. The layer group gets created as expected along with the child layers. However toggling

Re: [QGIS-Developer] Fwd: QGIS Trademark in

2019-07-22 Thread Paolo Cavallini
Hi Tim, I agree, the current site gives clearly the impression that the are officila representative for QGIS in Chile. I think they should have a first sentence about the services they provide for QGIS, making it clear they are a commercial company not connected to QGIS.ORG. Cheers. On 22/07/19

Re: [QGIS-Developer] Difficulties with custom bad layer handler in plugin code

2019-07-22 Thread Áron Gergely
On 22/07/2019 01:11, Nyall Dawson wrote: On Sun, 21 Jul 2019 at 21:16, Áron Gergely wrote: This actually works, for the 1st time when I open a project file with bad layers. Then the 2nd time, QGIS always crashes. It seems once I replaced the bad layer handler during project start, QGIS is

[QGIS-Developer] Plugin [1000] Qdraw approval notification.

2019-07-22 Thread noreply
Plugin Qdraw approval by pcav. The plugin version "[1000] Qdraw 2.0.2" is now approved Link: http://plugins.qgis.org/plugins/qdraw/ ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

Re: [QGIS-Developer] Crashes on exit

2019-07-22 Thread Paolo Cavallini
Hi Juergen, On 22/07/19 10:51, Jürgen E. Fischer wrote: > Then they've never seen the crash dialog - which would be good. Otherwise it > has the instructions: > > https://github.com/qgis/QGIS/blob/master/src/crashhandler/qgscrashdialog.cpp#L35 probably clear enough, thanks cheers -- Paolo

[QGIS-Developer] Fwd: QGIS Trademark in

2019-07-22 Thread Tim Sutton
Here is their response. They have added a few links to QGIS.ORG probably not satisfactory yet…can you collaboratively give me some talking points for the reply and I will put it together in a response to them. Regards Tim > Begin forwarded message: > > From: Alexandra Momberg > Subject: Re:

Re: [QGIS-Developer] Crashes on exit

2019-07-22 Thread Jürgen E . Fischer
Hi, On Mon, 22. Jul 2019 at 09:34:36 +0200, Paolo Cavallini wrote: > On 20/07/19 10:13, Jürgen E. Fischer wrote: > > I've implemented 5ed9efb3b60 to make use of this in master - the release > > branches will follow. > do we have simple instructions on how to get and send a valid log? > I

[QGIS-Developer] Plugin [621] QgsWcpsClient1 approval notification.

2019-07-22 Thread noreply
Plugin QgsWcpsClient1 approval by pcav. The plugin version "[621] QgsWcpsClient1 2.0" is now approved Link: http://plugins.qgis.org/plugins/QgsWcpsClient1/ ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

Re: [QGIS-Developer] SCRAM postgres support

2019-07-22 Thread Paolo Cavallini
I confirm that SCRAM works smoothly, at least on Debian Sid. Cheers. On 18/07/19 08:41, Andreas Neumann wrote: > Hi Paolo, > > We might have just read the same article? > Like  > https://info.crunchydata.com/blog/how-to-upgrade-postgresql-passwords-to-scram >  or > similar? > > I think it

[QGIS-Developer] QgsProcessingAlgorithm: no output layer when cancelled

2019-07-22 Thread Nils Nolde
Hola, running into 2 notorious problems with the ORS Tools plugin: 1. QgsProcessingAlgorithm, where it doesn't return the features which were processed until the user presses Cancel. More elaborate on SE:

Re: [QGIS-Developer] Crashes on exit

2019-07-22 Thread Paolo Cavallini
Hi all, On 20/07/19 10:13, Jürgen E. Fischer wrote: > I've implemented 5ed9efb3b60 to make use of this in master - the release > branches will follow. do we have simple instructions on how to get and send a valid log? I don't think this is widely known, even to interested users. Cheers. --