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 tag for plugins supporting Qt6 #8982

Closed
wants to merge 1 commit into from
Closed
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
9 changes: 7 additions & 2 deletions docs/pyqgis_developer_cookbook/plugins/plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ server False boolean flag, :const:`True` or :const:`False`,
the plugin has a server interface
hasProcessingProvider False boolean flag, :const:`True` or :const:`False`, determines if
the plugin provides processing algorithms
supportsQt6 False boolean flag, :const:`True` or :const:`False`, determines if
the plugin can be run on QGIS built with Qt6
===================== ======== =============================================================

By default, plugins are placed in the :menuselection:`Plugins` menu (we will see
Expand Down Expand Up @@ -171,8 +173,8 @@ An example for this metadata.txt
about=This paragraph can contain a detailed description
of the plugin. Multiline is allowed, HTML is not.
version=version 1.2
tracker=http://bugs.itopen.it
repository=http://www.itopen.it/repo
tracker=https://bugs.itopen.it
repository=https://www.itopen.it/repo
; end of mandatory metadata

; start of optional metadata
Expand Down Expand Up @@ -210,6 +212,9 @@ An example for this metadata.txt
; name field
plugin_dependencies=MyOtherPlugin==1.12,YetAnotherPlugin

; whether the plugin can be run on QGIS built with Qt6
supportsQt6=True


.. index:: Plugins; Initialisation

Expand Down
Loading