From bf3038853fec41fba98b2a83d020e4c831af3f5e Mon Sep 17 00:00:00 2001 From: SJiB Date: Mon, 17 Jun 2024 12:04:32 +0200 Subject: [PATCH] Add 1.6.2 options --- qgepplugin/gui/qgepdatamodeldialog.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qgepplugin/gui/qgepdatamodeldialog.py b/qgepplugin/gui/qgepdatamodeldialog.py index b1503f9..f51ddc6 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.2": f"https://github.com/QGEP/datamodel/archive/1.6.2.zip", "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", } @@ -72,6 +73,7 @@ # Allows to pick which QGIS project matches the version (will take the biggest <= match) DATAMODEL_QGEP_VERSIONS = { + "1.6.2": "https://github.com/QGEP/QGEP/releases/download/v12.0.0/qgep-v12.0.0.zip", "1.6.1": "https://github.com/QGEP/QGEP/releases/download/v11.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",