From 7fe89cb3bf83c0c1809b4b90664fbf1673b4bf77 Mon Sep 17 00:00:00 2001 From: SJiB Date: Tue, 23 Apr 2024 19:39:24 +0200 Subject: [PATCH] Add 1.6.1 selection options Needs: - https://github.com/QGEP/datamodel/archive/1.6.1.zip - https://github.com/QGEP/QGEP/releases/download/v10.0.0/qgep-v11.0.0.zip --- qgepplugin/gui/qgepdatamodeldialog.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qgepplugin/gui/qgepdatamodeldialog.py b/qgepplugin/gui/qgepdatamodeldialog.py index 8e51e20..02cb3de 100644 --- a/qgepplugin/gui/qgepdatamodeldialog.py +++ b/qgepplugin/gui/qgepdatamodeldialog.py @@ -60,6 +60,7 @@ # Allow to choose which releases can be installed AVAILABLE_RELEASES = { # TODO: change to final + "1.6.1": f"https://github.com/QGEP/datamodel/archive/1.6.1.zip", "1.6.0": f"https://github.com/QGEP/datamodel/archive/1.6.0.zip", } if QSettings().value("/QGEP/DeveloperMode", False, type=bool): @@ -71,6 +72,7 @@ # Allows to pick which QGIS project matches the version (will take the biggest <= match) DATAMODEL_QGEP_VERSIONS = { + "1.6.1": "https://github.com/QGEP/QGEP/releases/download/v10.0.0/qgep-v11.0.0.zip", "1.6.0": "https://github.com/QGEP/QGEP/releases/download/v10.0.0/qgep-v10.0.0.zip", "1.5.5": "https://github.com/QGEP/QGEP/releases/download/v9.0.3/qgep-v9.0.3.zip", "1.5.0": "https://github.com/QGEP/QGEP/releases/download/v8.0/qgep.zip",