From f37a6c20d0a298122a4189eee7e3c39f35e46ab6 Mon Sep 17 00:00:00 2001 From: inso <insomniak.fr@gmaiL.com> Date: Sun, 7 May 2017 10:41:17 +0200 Subject: [PATCH] Plugin development doc --- doc/plugin_development.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/plugin_development.md b/doc/plugin_development.md index 4d0b5010..c1fc1623 100644 --- a/doc/plugin_development.md +++ b/doc/plugin_development.md @@ -41,7 +41,7 @@ def plugin_exec(app, main_window): """ # Place your init code here pass -```icons +``` ## Building your plugin @@ -50,6 +50,8 @@ To build the plugin, you need : ### To generate resources (images, qrc, ...) 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. -- GitLab