Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 1.6.1 selection options #105

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions qgepplugin/gui/qgepdatamodeldialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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",
Expand Down