aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/tutorials/basictutorial
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2025-12-09 16:13:36 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2025-12-10 09:29:44 +0100
commit05e3e8445443df26fb902d7e14c8103d38fc57d6 (patch)
treee8fe9a1b64cc382ef85d7aafdd93637cd216ae40 /sources/pyside6/doc/tutorials/basictutorial
parent44e06cdd2ef26d05a63634fb1b9e491ff55cb6e6 (diff)
qrc tutorial: Add a note about rcc compression levels
Task-number: PYSIDE-3251 Pick-to: 6.10 Change-Id: Ib1c5a1f8de4237be84b43fa05a2ad830c2169596 Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io>
Diffstat (limited to 'sources/pyside6/doc/tutorials/basictutorial')
-rw-r--r--sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst b/sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst
index b6861f920..2666f854f 100644
--- a/sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst
+++ b/sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst
@@ -75,6 +75,11 @@ To use the generated file, add the following import at the top of your main Pyth
import rc_icons
+.. note:: The tool uses `Zstandard` as a compression algorithm, which at its default
+ compression level (implementation-defined) may produce results that are
+ not usable on other platforms. To ensure the files are usable on all
+ platforms, the compression level should be reduced or `zlib` should
+ be chosen as compression algorithm (see ``pyside6-rcc --help``).
Changes in the code
===================