From 117eed225539f5101419c7d105545279f9e0a1bc Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 27 Feb 2019 14:59:19 +0100 Subject: [PATCH] donate-cpu.py: Also extract .qml files. (#1708) .qml files are used when the Qt library is loaded. --- tools/donate-cpu.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/donate-cpu.py b/tools/donate-cpu.py index c75d2ed6b..f545928cb 100644 --- a/tools/donate-cpu.py +++ b/tools/donate-cpu.py @@ -37,7 +37,7 @@ import platform # Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/ # Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic # changes) -CLIENT_VERSION = "1.1.7" +CLIENT_VERSION = "1.1.8" def checkRequirements(): @@ -191,7 +191,8 @@ def unpackPackage(workPath, tgz): if member.name.startswith(('/', '..')): # Skip dangerous file names continue - elif member.name.lower().endswith(('.c', '.cpp', '.cxx', '.cc', '.c++', '.h', '.hpp', '.hxx', '.hh', '.tpp', '.txx')): + elif member.name.lower().endswith(('.c', '.cpp', '.cxx', '.cc', '.c++', '.h', '.hpp', + '.hxx', '.hh', '.tpp', '.txx', '.qml')): try: tf.extract(member.name) except OSError: