Skip to content

Commit

Permalink
Updating warning message for plugin requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Xpirix committed Nov 28, 2023
1 parent 3a99811 commit 24b468c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qgis-app/plugins/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down Expand Up @@ -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,
)
Expand Down Expand Up @@ -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,
)
Expand Down

0 comments on commit 24b468c

Please sign in to comment.