Skip to content

Commit c5470ea

Browse files
authored
Merge pull request #323 from isogeo/housekeeping
Update Isogeo plugin presentation into QGIS plugin manager
2 parents 8c2ecdd + d26e7e2 commit c5470ea

3 files changed

Lines changed: 6 additions & 9 deletions

File tree

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"name": "Python: All debug Options",
9898
"type": "python",
9999
"request": "launch",
100-
"pythonPath": "${config:python.pythonPath}",
100+
"pythonPath": "${command:python.interpreterPath}",
101101
"program": "${file}",
102102
"module": "module.name",
103103
"env": {

metadata.txt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ version=3.1.0-beta1
1515
author=Isogeo
1616
email=projects+qgis@isogeo.com
1717

18-
about=This plugin helps finding geodata, searching within Isogeo catalogs. To use it, you can ask a free access sending a mail to projects+qgis@isogeo.com.
18+
about=Ce plugin facilite l'accès aux données géographiques. Il s'agit d'un moteur de recherche de métadonnées géographiques reposant sur l'API d'<a href="https://www.isogeo.com/">Isogeo</a>.<br>N'hésitez pas à remplir ce <a href="https://webforms.pipedrive.com/f/5kAUlfXAdFfv85vV3Mw1PWOYqOBpD7l9GV9wr0OlOAdmQcdC7DduZ6afScQHHZ">formulaire</a> si vous voulez l'essayer.
1919

2020
tracker=https://github.com/isogeo/isogeo-plugin-qgis/issues
2121
repository=https://github.com/isogeo/isogeo-plugin-qgis
@@ -24,10 +24,7 @@ repository=https://github.com/isogeo/isogeo-plugin-qgis
2424
# Recommended items:
2525

2626
# Uncomment the following line and add your changelog:
27-
changelog=2.0.0-alpha1: first version meant to be compatible with QGIS
28-
- version 1.6.2: minor bugs fixed and improved cache
29-
- version 1.6.1: https://github.com/isogeo/isogeo-plugin-qgis/milestone/7?closed=1
30-
- version 1.6.0: https://github.com/isogeo/isogeo-plugin-qgis/milestone/6?closed=1
27+
changelog=- 3.0.2 : better SSL errors handling<br>- 3.0.1 : better authentication management<br>- 3.0.0 : first stable version compatible with QGIS 3<br>- 2.0.0-alpha1: first version meant to be compatible with QGIS 3
3128

3229
# Tags are comma separated with spaces allowed
3330
tags=REST API,catalog,search,explore,webservices,metadata,open data,INSPIRE

modules/tools.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,14 +128,14 @@ def mail_to_isogeo(self, lang):
128128
"""
129129
if lang == "fr":
130130
webbrowser.open(
131-
"https://www.isogeo.com/fr/Plugin-QGIS/22", new=0, autoraise=True
131+
"https://webforms.pipedrive.com/f/5kAUlfXAdFfv85vV3Mw1PWOYqOBpD7l9GV9wr0OlOAdmQcdC7DduZ6afScQHHZ", new=0, autoraise=True
132132
)
133133
else:
134134
webbrowser.open(
135-
"https://www.isogeo.com/en/QGIS-Plugin/22", new=0, autoraise=True
135+
"https://webforms.pipedrive.com/f/5kAUlfXAdFfv85vV3Mw1PWOYqOBpD7l9GV9wr0OlOAdmQcdC7DduZ6afScQHHZ", new=0, autoraise=True
136136
)
137137
# method ending
138-
logger.debug("Bugtracker launched in the default web browser")
138+
logger.debug("Isogeo Plugin&Widget test form launched in the default web browser")
139139

140140
def open_dir_file(self, target):
141141
"""Open a file or a directory in the explorer of the operating system.

0 commit comments

Comments
 (0)