From 9d09eb80739e8ff18036c49bf64318354385c2a4 Mon Sep 17 00:00:00 2001 From: inso <insomniak.fr@gmail.com> Date: Sat, 6 May 2017 11:49:06 +0200 Subject: [PATCH] Update plugin_development.md --- doc/plugin_development.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/plugin_development.md b/doc/plugin_development.md index 83fb9c8d..286397f9 100644 --- a/doc/plugin_development.md +++ b/doc/plugin_development.md @@ -49,13 +49,15 @@ To build the plugin, you need : ### To generate resources (images, qrc, ...) -Generating resources uses [pyrcc5](http://pyqt.sourceforge.net/Docs/PyQt5/resources.html). +Generating resources uses [pyrcc5](http://pyqt.sourceforge.net/Docs/PyQt5/resources.html). +Generating designer ui files uses [pyuic5](http://pyqt.sourceforge.net/Docs/PyQt5/designer.html). + To help you generate your resources, you should copy the `gen_resources.py` file from sakia sources and configure the variable `gen_resources`. Replace `'src'` by the name of your plugin package. ### To import your resources in your code -The generation of the resources build the following python files : +The generation of the resources builds the following python files : - `filename.ui` -> `filename_uic.py` - `filename.qrc` -> `filename_rc.py` -- GitLab