[QGIS-Developer] QGIS 3 Crash Updating Digitalizing Tool

2018-05-18 Thread Antonio Di Lecce
h2. User Feedback

It's happen when I try to update Digitizing Tools

h2. Report Details

*Crash ID*: d59fe186a1b385700807ef95060504c6369ecfd1


*Stack Trace*

QObject::connect :
PyInit_QtCore :
PyFrame_New :
PyObject_Call :
PyInit_sip :
PyInit__gui :
PyCFunction_FastCallDict :
PyObject_GenericGetAttr :
PyEval_EvalFrameDefault :
PyErr_Occurred :
PyFunction_FastCallDict :
PyObject_CallFunctionObjArgs :
PyUnicode_AsUTF8AndSize :
PyFrame_New :
PyObject_GenericGetAttr :
PyEval_EvalFrameDefault :
PyErr_Occurred :
PyFunction_FastCallDict :
PyObject_CallFunctionObjArgs :
PyUnicode_AsUTF8AndSize :
PyFrame_New :
PyObject_GenericGetAttr :
PyEval_EvalFrameDefault :
PyObject_GenericGetAttr :
PyEval_EvalFrameDefault :
PyObject_GenericGetAttr :
PyEval_EvalFrameDefault :
PyErr_Occurred :
PyEval_EvalCode :
PyArena_Free :
PyRun_StringFlags :
instance :
instance :
QgsPluginRegistry::loadPythonPlugin :
CPLString::~CPLString :
CPLString::~CPLString :
QMetaObject::activate :
QStandardItemModel::`default constructor closure' :
QMetaObject::activate :
QAbstractItemModel::dataChanged :
QStandardItemModel::itemChanged :
QStandardItem::setData :
QStandardItemModel::setData :
QSortFilterProxyModel::setData :
QStyledItemDelegate::editorEvent :
QAbstractItemView::selectionModel :
QAbstractItemView::edit :
QAbstractItemView::mouseReleaseEvent :
QListView::mouseReleaseEvent :
QWidget::event :
QFrame::event :
QAbstractItemView::viewportEvent :
QCoreApplicationPrivate::sendThroughObjectEventFilters :
QApplicationPrivate::notify_helper :
QApplication::notify :
QgsApplication::notify :
QCoreApplication::notifyInternal2 :
QApplicationPrivate::sendMouseEvent :
QSizePolicy::QSizePolicy :
QSizePolicy::QSizePolicy :
QApplicationPrivate::notify_helper :
QApplication::notify :
QgsApplication::notify :
QCoreApplication::notifyInternal2 :
QGuiApplicationPrivate::processMouseEvent :
QWindowSystemInterface::sendWindowSystemEvents :
QEventDispatcherWin32::processEvents :
CallWindowProcW :
DispatchMessageW :
QEventDispatcherWin32::processEvents :
qt_plugin_query_metadata :
QEventLoop::exec :
QDialog::exec :
PyInit__gui :
PyCFunction_FastCallDict :
PyObject_GenericGetAttr :
PyEval_EvalFrameDefault :
PyErr_Occurred :
PyObject_GenericGetAttr :
PyEval_EvalFrameDefault :
PyErr_Occurred :
PyEval_EvalCode :
PyArena_Free :
PyRun_StringFlags :
instance :
instance :
QgisApp::rotatePointSymbols :
QgsPythonRunner::run :
QgisApp::showPluginManager :
QMetaObject::activate :
QAction::activate :
QMenu::actionGeometry :
QMenu::actionGeometry :
QMenu::mouseReleaseEvent :
QWidget::event :
QMenu::event :
QApplicationPrivate::notify_helper :
QApplication::notify :
QgsApplication::notify :
QCoreApplication::notifyInternal2 :
QApplicationPrivate::sendMouseEvent :
QSizePolicy::QSizePolicy :
QSizePolicy::QSizePolicy :
QApplicationPrivate::notify_helper :
QApplication::notify :
QgsApplication::notify :
QCoreApplication::notifyInternal2 :
QGuiApplicationPrivate::processMouseEvent :
QWindowSystemInterface::sendWindowSystemEvents :
QEventDispatcherWin32::processEvents :
CallWindowProcW :
DispatchMessageW :
QEventDispatcherWin32::processEvents :
qt_plugin_query_metadata :
QEventLoop::exec :
QCoreApplication::exec :
main :
BaseThreadInitThunk :
RtlUserThreadStart :



*QGIS Info*
QGIS Version: 3.0.2-Girona
QGIS code revision: commit:307d082e3d
Compiled against Qt: 5.9.2
Running against Qt: 5.9.2
Compiled against GDAL: 2.2.4
Running against GDAL: 2.2.4



*System Info*
CPU Type: x86_64
Kernel Type: winnt
Kernel Version: 10.0.16299

Regards

Antonio
-- 

*Antonio Di Lecce*
*Geophysical Division Operation Manager*

GEOTEC S.p.a.
Via G.Barbato,20
86100 CAMPOBASSO (ITALY)
P.IVA/C.F. IT00712630706
Tel.: +39 0874 481868
Fax: +39 0874 69088
Mob.: +39 +39 338 4494186

antonio.dile...@geotecspa.com



*Message for the recipient only, if received in error, please notify the
sender and read* *disclaimer
*
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] PyQGIS 3.0: does not work under Windows (Anaconda package)

2018-05-18 Thread Алексей Головизин

Hi folks!

I've just tried to install QGIS 3.0 package in my Anaconda (Win7x64, 
Python 3.6 x64). I wanted to use QGIS widgets in my PyQt application. 
Alas, QGIS works incorrectly: at first, when I just tried to import qgis 
modules in Python, it said that it cannot find them. And when I manually 
set the PYTHONPATH, QGISPATH and PATH variables, it simply does not show 
my map (only the blank white screen).


Under Ubuntu 18.04 the script works correctly (there I just made 
`apt-get install python3-qgis`).


Can you tell me, how can I make it work under Windows too?

Here's my test script:

#!/usr/bin/env python3

import os

from PyQt5.QtWidgets import QWidget, QFrame, QHBoxLayout, QGridLayout

from qgis._core import QgsApplication, QgsRasterLayer
from qgis._gui import QgsMapCanvas


class TestWidget(QWidget):
    def __init__(self, parent=None):
    super(TestWidget, self).__init__(parent)
    self.main_layout = QHBoxLayout(self)
    self.canvas = QgsMapCanvas()
    self.main_layout.addWidget(self.canvas)

    base_layer_path = 
os.path.join(os.path.abspath(os.path.dirname(__file__)), "world.mbtiles")

    self.base_layer = QgsRasterLayer(base_layer_path, 'world')
    self.canvas.setLayers([self.base_layer])
    self.canvas.zoomToFullExtent()


if __name__ == '__main__':
    qgs = QgsApplication([], False)
    qgs.setPrefixPath(os.environ.get('QGISPATH', '/usr'), True)
    qgs.initQgis()

    w = TestWidget()
    w.show()

    qgs.exec_()
    qgs.exitQgis()


And here's my test map data (world.mbtiles): 
https://www.sendspace.com/filegroup/8OqffqxS3aWuRdwr4iolRQ



And here are my environment variables (set under Windows):


PYTHONPATH=C:/Anaconda3/Library/python
QGISPATH=C:/Anaconda3
PATH=C:/Anaconda3/share/qgis/python/qgis;C:/Anaconda3/Library/bin

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Plugin [1444] GeoDyn Gemeente approval notification.

2018-05-18 Thread noreply

Plugin GeoDyn Gemeente approval by pcav.
The plugin version "[1444] GeoDyn Gemeente 0.11 Experimental" is now approved
Link: http://plugins.qgis.org/plugins/GeodynGem/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Plugin [1460] VarMixViewer approval notification.

2018-05-18 Thread noreply

Plugin VarMixViewer approval by pcav.
The plugin version "[1460] VarMixViewer 0.1 Experimental" is now approved
Link: http://plugins.qgis.org/plugins/varmixviewer/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Plugin [1214] Open eQuarter approval notification.

2018-05-18 Thread noreply

Plugin Open eQuarter approval by pcav.
The plugin version "[1214] Open eQuarter 0.998f" is now approved
Link: http://plugins.qgis.org/plugins/mole/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Plugin [1372] PowerPan approval notification.

2018-05-18 Thread noreply

Plugin PowerPan approval by pcav.
The plugin version "[1372] PowerPan 1.2" is now approved
Link: http://plugins.qgis.org/plugins/powerpan/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] Weird behavior with raster styles

2018-05-18 Thread matteo
Hi,

thanks for pointing me to the issues you opened.

I have updated https://issues.qgis.org/issues/18153 with a minimal
example (raster + qml) that could help to understand the problem.

Cheers

Matteo
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] Weird behavior with raster styles

2018-05-18 Thread domlysz
Hi,

I was also confronted to this weird auto-classification behavior
(https://issues.qgis.org/issues/17102) and it seems it can be tricky to
reproduce.

As I pointed in the issue discussion, it seems to me that classification
should happen only and only if the user explicitly click on the classify
button.

Maybee we need to fill a new ticket.



--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] compile error

2018-05-18 Thread Rashad Kanavath
On Thu, May 10, 2018 at 1:57 PM, Arun Bharathi 
wrote:

> Hi,
>
> I got this error
>
>  "
>
> CMake Error: The following variables are used in this project, but they
> are set to NOTFOUND.
>
> Please set them or make sure they are set and tested correctly in the
> CMake files:
>
>
> SPATIALINDEX_LIBRARY linked by target "qgis_core" in directory
> /QGIS/src/core
>
you don't have spatialindex dev packages installed or cmake cannot find
Open cmake-gui, and to set it manually. I hope with OSGeo4W it is easy to
find all libs

> Configuring incomplete, errors occurred!
> "
> while compiling cmakelist.txt (QGIS version: 3.1.0 Master) in Qt windows.
>
> Any body help me plz!
>
> Thanks and Regards.
> P.Arun Bharathi
>
>
> ___
> QGIS-Developer mailing list
> QGIS-Developer@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer
>



-- 
Regards,
   Rashad
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] PostGIS out-of-db raster rendering as a black box in QGIS

2018-05-18 Thread Paolo Cavallini
Il 17/05/2018 19:25, Even Rouault ha scritto:
> Jakob,
> 
>  
> 
> This is a limitation of the GDAL PostgisRaster client driver that I'm
> currently working on. The enhancement to support out-of-db rasters in
> the driver should land in GDAL master in a few hours.

Good news, thanks Even. There are a few tickets related to this in QGIS
bugtracker, probably it is worth checking them once fixes are landed.
e.g. https://issues.qgis.org/issues/18054
https://issues.qgis.org/issues/8073
All the best.
-- 
Paolo Cavallini - www.faunalia.eu
QGIS & PostGIS courses: http://www.faunalia.eu/training.html
https://www.google.com/trends/explore?date=all=IT=qgis,arcgis
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] "Actions" menu in feature forms

2018-05-18 Thread Alessandro Pasotti
On Thu, May 17, 2018 at 7:05 PM, Andreas Neumann 
wrote:

> Hi Alessandro,
>
> Originally, there was the idea to introduce a menu that lists more than
> just actions. See https://issues.qgis.org/issues/10288
>
> e.g. also to list derived information based on a feature (same information
> that is also available in the panel of the info tool.
>
> I am sure that other people would find other ideas to extend this menu.
>
> But I agree with you, that an empty menu is not so nice. Would you suggest
> hiding the menu if nothing is in there?
>

Yes, I suppose it's better to hide it when it's empty.

Anyway - i don't think it is a major problem - either way. We have other
> more ugly things ... UI-wise.
>


Not  a good reason to add another one ;-)


Andreas
>
> On 2018-05-17 18:55, Alessandro Pasotti wrote:
>
> On Thu, May 17, 2018 at 6:49 PM, Andreas Neumann 
> wrote:
>
>> Hi Alessandro,
>>
>> If you had any "Actions" defined on the layer, this menu would list all
>> assigned actions and you could start them from there.
>>
>
> Thanks for your answer Andreas!
>
> This is a nice feature, but I don't think it's a good UX/UI to have a menu
> which is empty by default.
>
> What do you think?
>
>
>
>> Andreas
>>
>> On 2018-05-17 18:43, Alessandro Pasotti wrote:
>>
>> In current master there is an empty "Actions" menu in the forms.
>>
>> What is it?
>>
>>
>>
>>
>
>
> --
> Alessandro Pasotti
> w3:   www.itopen.it
>
>
>


-- 
Alessandro Pasotti
w3:   www.itopen.it
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] Using Atlas in QGIS 3 to make a print ready publication

2018-05-18 Thread Tim Sutton
Hi

Thanks Harrissou - yes I know about reports and did try to do it using that, 
but I don’t think it will help me in this case. Happy if someone can show me 
that I am wrong here :-)

Regards

Tim

> On 18 May 2018, at 09:54, del...@gmail.com wrote:
> 
> Hi Tim
> 
> I don't know if it answers all your needs (haven't played with it yet, 
> myself) but you may give a look to the layout reporting framework. See 
> https://north-road.com/2018/01/23/exploring-reports-in-qgis-3-0-the-ultimate-guide
> 
> Regards,
> HarrissouLe 18 mai 2018 9:03 AM, Tim Sutton  a écrit :
>> 
>> Hi All (mainly Nyall I guess)
>> 
>> I have been playing with atlas in QGIS 3 to make a book prototype for a map 
>> series. In the past when I used atlas, it was just to share as a PDF or 
>> manually print out a map series. Now I want to prepare something to send to 
>> a printer and I realise the requirements are a little different:
>> 
>> * have a page for the cover outside on the left side, back cover outside on 
>> the right
>> * a page with front cover inside on the left and the right
>> * have one or more ‘front matter pages’ with a matching back matter page for 
>> each
>> * have the map series with each page having TWO maps from the map series. 
>> For example the first page would have on the left Page 1 and on the right 
>> Page 30 (where we have a  30 area series in atlas for example). Then the 
>> next page would have two map items : Page 2 on the left, Page 29 on the 
>> right and so on.
>> 
>> So I can manage a lot of this workflow by e.g. using separate composer 
>> layouts for the front / back matter stuff. What I haven’t thought of a way 
>> to do is having two atlas pages on the same layout.  Basically what is 
>> needed is the ability to trigger successive increments in the atlas counter 
>> if there are two maps (and other elements such as tables) that are 
>> controlled by atlas on the same layout.
>> 
>> This is probably better explained by my diagram below:
>> 
>> 
>> https://user-images.githubusercontent.com/178003/40220376-34c77d00-5a79-11e8-9c09-b1b338915de5.png
>> 
>> 
>> So my questions are :
>> 
>> 1) Has anyone dealt with this and if so, how did you solve it?
>> 2) How much work would it be to enable support for this kind of work flow?
>> 3) Are there any plans to have ‘print once’ pages in composer so that in a 
>> layout I could have pages for front matter in ‘print once’ mode, one or more 
>> atlas driven pages that will repeat for each atlas area, pages for back 
>> matter in 'print once’ mode.
>> 
>> Basically if we had this I could make a single print-ready PDF from one 
>> layout.
>> 
>> Thanks!
>> 
>> Regards
>> 
>> Tim
>> 
>> 
>> 
>> 
>> 
>> 
>> —
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> Tim Sutton
>> 
>> Co-founder: Kartoza
>> Ex Project chair: QGIS.org
>> 
>> Visit http://kartoza.com to find out about open source:
>> 
>> Desktop GIS programming services
>> Geospatial web development
>> GIS Training
>> Consulting Services
>> 
>> Skype: timlinux
>> IRC: timlinux on #qgis at freenode.net
>> 

—








Tim Sutton

Co-founder: Kartoza
Ex Project chair: QGIS.org

Visit http://kartoza.com  to find out about open source:

Desktop GIS programming services
Geospatial web development
GIS Training
Consulting Services

Skype: timlinux
IRC: timlinux on #qgis at freenode.net



signature.asc
Description: Message signed with OpenPGP
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] Using Atlas in QGIS 3 to make a print ready publication

2018-05-18 Thread delazj
Hi Tim

I don't know if it answers all your needs (haven't played with it yet, myself) 
but you may give a look to the layout reporting framework. See 
https://north-road.com/2018/01/23/exploring-reports-in-qgis-3-0-the-ultimate-guide

Regards, 
HarrissouLe 18 mai 2018 9:03 AM, Tim Sutton  a écrit :
>
> Hi All (mainly Nyall I guess)
>
> I have been playing with atlas in QGIS 3 to make a book prototype for a map 
> series. In the past when I used atlas, it was just to share as a PDF or 
> manually print out a map series. Now I want to prepare something to send to a 
> printer and I realise the requirements are a little different:
>
> * have a page for the cover outside on the left side, back cover outside on 
> the right
> * a page with front cover inside on the left and the right
> * have one or more ‘front matter pages’ with a matching back matter page for 
> each
> * have the map series with each page having TWO maps from the map series. For 
> example the first page would have on the left Page 1 and on the right Page 30 
> (where we have a  30 area series in atlas for example). Then the next page 
> would have two map items : Page 2 on the left, Page 29 on the right and so on.
>
> So I can manage a lot of this workflow by e.g. using separate composer 
> layouts for the front / back matter stuff. What I haven’t thought of a way to 
> do is having two atlas pages on the same layout.  Basically what is needed is 
> the ability to trigger successive increments in the atlas counter if there 
> are two maps (and other elements such as tables) that are controlled by atlas 
> on the same layout. 
>
> This is probably better explained by my diagram below:
>
>
> https://user-images.githubusercontent.com/178003/40220376-34c77d00-5a79-11e8-9c09-b1b338915de5.png
>
>
> So my questions are : 
>
> 1) Has anyone dealt with this and if so, how did you solve it? 
> 2) How much work would it be to enable support for this kind of work flow?
> 3) Are there any plans to have ‘print once’ pages in composer so that in a 
> layout I could have pages for front matter in ‘print once’ mode, one or more 
> atlas driven pages that will repeat for each atlas area, pages for back 
> matter in 'print once’ mode.
>
> Basically if we had this I could make a single print-ready PDF from one 
> layout.
>
> Thanks!
>
> Regards
>
> Tim
>
>
>
>
>
>
> —
>
>
>
>
>
>
>
> Tim Sutton
>
> Co-founder: Kartoza
> Ex Project chair: QGIS.org
>
> Visit http://kartoza.com to find out about open source:
>
> Desktop GIS programming services
> Geospatial web development
> GIS Training
> Consulting Services
>
> Skype: timlinux 
> IRC: timlinux on #qgis at freenode.net
>
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] qgis3d related

2018-05-18 Thread sindhura

hi

Pls say how to use 3dscene or 3d canvas to show a Map in 3dview.  I am 
using c++, pthyon also.


Thanks in advance
Jenny
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Using Atlas in QGIS 3 to make a print ready publication

2018-05-18 Thread Tim Sutton
Hi All (mainly Nyall I guess)

I have been playing with atlas in QGIS 3 to make a book prototype for a map 
series. In the past when I used atlas, it was just to share as a PDF or 
manually print out a map series. Now I want to prepare something to send to a 
printer and I realise the requirements are a little different:

* have a page for the cover outside on the left side, back cover outside on the 
right
* a page with front cover inside on the left and the right
* have one or more ‘front matter pages’ with a matching back matter page for 
each
* have the map series with each page having TWO maps from the map series. For 
example the first page would have on the left Page 1 and on the right Page 30 
(where we have a  30 area series in atlas for example). Then the next page 
would have two map items : Page 2 on the left, Page 29 on the right and so on.

So I can manage a lot of this workflow by e.g. using separate composer layouts 
for the front / back matter stuff. What I haven’t thought of a way to do is 
having two atlas pages on the same layout.  Basically what is needed is the 
ability to trigger successive increments in the atlas counter if there are two 
maps (and other elements such as tables) that are controlled by atlas on the 
same layout.

This is probably better explained by my diagram below:


https://user-images.githubusercontent.com/178003/40220376-34c77d00-5a79-11e8-9c09-b1b338915de5.png


So my questions are :

1) Has anyone dealt with this and if so, how did you solve it?
2) How much work would it be to enable support for this kind of work flow?
3) Are there any plans to have ‘print once’ pages in composer so that in a 
layout I could have pages for front matter in ‘print once’ mode, one or more 
atlas driven pages that will repeat for each atlas area, pages for back matter 
in 'print once’ mode.

Basically if we had this I could make a single print-ready PDF from one layout.

Thanks!

Regards

Tim






—








Tim Sutton

Co-founder: Kartoza
Ex Project chair: QGIS.org

Visit http://kartoza.com  to find out about open source:

Desktop GIS programming services
Geospatial web development
GIS Training
Consulting Services

Skype: timlinux
IRC: timlinux on #qgis at freenode.net



signature.asc
Description: Message signed with OpenPGP
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Plugin [1429] Karika approval notification.

2018-05-18 Thread noreply

Plugin Karika approval by pcav.
The plugin version "[1429] Karika 1.1 Experimental" is now approved
Link: http://plugins.qgis.org/plugins/karika/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Plugin [1429] Karika approval notification.

2018-05-18 Thread noreply

Plugin Karika approval by pcav.
The plugin version "[1429] Karika 1.2" is now approved
Link: http://plugins.qgis.org/plugins/karika/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer