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

Making license file not required for now #314

Merged
merged 2 commits into from
Nov 30, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Updating warning message for plugin requirements
Xpirix committed Nov 28, 2023
commit 24b468ce4577171f60bbb3b6862723bdd9c4c347
6 changes: 3 additions & 3 deletions qgis-app/plugins/views.py
Original file line number Diff line number Diff line change
@@ -472,7 +472,7 @@ def plugin_upload(request):
messages.warning(
request,
_(
"Cannot find LICENSE in the plugin package. This file is not required but recommended, please consider adding it to the plugin package."
"Please note that as of 1 June 2024, providing a license file will be mandatory for any new updates to existing plugins and for any new plugins published."
),
fail_silently=True,
)
@@ -971,7 +971,7 @@ def version_create(request, package_name):
messages.warning(
request,
_(
"Cannot find LICENSE in the plugin package. This file is not required but recommended, please consider adding it to the plugin package."
"Please note that as of 1 June 2024, providing a license file will be mandatory for any new updates to existing plugins and for any new plugins published."
),
fail_silently=True,
)
@@ -1027,7 +1027,7 @@ def version_update(request, package_name, version):
messages.warning(
request,
_(
"Cannot find LICENSE in the plugin package. This file is not required but recommended, please consider adding it to the plugin package."
"Please note that as of 1 June 2024, providing a license file will be mandatory for any new updates to existing plugins and for any new plugins published."
),
fail_silently=True,
)