├── .qmake.conf ├── .qt-license-check.exclude ├── .qt-license-check.optional ├── .tag ├── 3RDPARTY ├── Changelog ├── INSTALL ├── LICENSE.FDL ├── LICENSE.GPL3-EXCEPT ├── README ├── dist ├── README ├── config │ ├── config.xml │ └── watermark.png ├── create_ifw_installer.py └── packages │ ├── org.qtproject.ifw.binaries │ └── meta │ │ └── package.xml │ └── org.qtproject.ifw │ └── meta │ ├── 3RDPARTY │ ├── LICENSE.GPL3-EXCEPT │ ├── installscript.qs │ └── package.xml ├── doc ├── config │ ├── ifw.qdocconf │ └── style │ │ └── qt5-sidebar.html ├── doc.pri ├── doc_targets.pri ├── examples │ ├── aliases.xml │ ├── config.xml │ └── package.xml ├── fixnavi.pl ├── ifw-online.qdocconf ├── ifw.qdocconf ├── images │ ├── arrow.png │ ├── build-32x32.png │ ├── demo-32x32.png │ ├── getting-started.png │ ├── ifw-add-components-introduction.png │ ├── ifw-add-components-selection.png │ ├── ifw-installation-finished.png │ ├── ifw-installation.webp │ ├── ifw-introduction-page.png │ ├── ifw-license-check-page.png │ ├── ifw-overview.png │ ├── ifw-perform-installation.png │ ├── ifw-perform-update.png │ ├── ifw-ready-for-installation.png │ ├── ifw-ready-to-uninstall.png │ ├── ifw-ready-to-update.png │ ├── ifw-removing-components.png │ ├── ifw-repository-categories.png │ ├── ifw-select-components.png │ ├── ifw-settings-cache.png │ ├── ifw-settings-network.png │ ├── ifw-settings-repositories.png │ ├── ifw-target-directory-page.png │ ├── ifw-tutorial-files.png │ ├── ifw-tutorial-introduction-page.png │ ├── ifw-tutorial-license-check.png │ ├── ifw-tutorial-select-components.png │ ├── ifw-update-finished.png │ ├── ifw-updating-components.png │ ├── ifw-updating-introduction.png │ ├── ifw-user-flow-adding.png │ ├── ifw-user-flow-installing.png │ ├── ifw-user-flow-removing.png │ ├── ifw-user-flow-updating.png │ ├── ifw-warning-existing-installation.png │ ├── ifw-win-program-group.png │ ├── installation.png │ ├── qt-logo.png │ ├── settings-32x32.png │ └── tutorials.png ├── includes │ ├── installerfw-examples-configuring.qdocinc │ ├── installerfw-examples-generating-online.qdocinc │ ├── installerfw-examples-generating.qdocinc │ └── installerfw-examples-packaging.qdocinc ├── installerfw-cpp-classes.qdoc ├── installerfw-examples.qdoc ├── installerfw-getting-started.qdoc ├── installerfw-overview.qdoc ├── installerfw-reference.qdoc ├── installerfw-using.qdoc ├── installerfw.qdoc ├── messageboxhandler.qdoc ├── noninteractive.qdoc ├── operations.qdoc ├── scripting-api │ ├── buttons.qdoc │ ├── component.qdoc │ ├── console.qdoc │ ├── gui.qdoc │ ├── packagemanagercore.qdoc │ ├── print.qdoc │ ├── qdesktopservices.qdoc │ ├── qfiledialog.qdoc │ ├── qinstaller.qdoc │ └── qsettings.qdoc ├── scripting-qmlmodule.qdoc ├── scripting.qdoc ├── systeminfo.qdoc └── tutorial.qdoc ├── examples ├── changeuserinterface │ ├── README │ ├── changeuserinterface.pro │ ├── config │ │ └── config.xml │ └── packages │ │ └── org.qtproject.ifw.example.changeuserinterface │ │ └── meta │ │ ├── installscript.qs │ │ ├── license.txt │ │ └── package.xml ├── componentalias │ ├── README │ ├── componentalias.pro │ ├── config │ │ ├── aliases.xml │ │ └── config.xml │ └── packages │ │ ├── componentA │ │ ├── data │ │ │ └── installcontentA.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentB │ │ ├── data │ │ │ └── installcontentB.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentC │ │ ├── data │ │ │ └── installcontentC.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentD │ │ ├── data │ │ │ └── installcontentD.txt │ │ └── meta │ │ │ └── package.xml │ │ └── componentE │ │ ├── data │ │ └── installcontentE.txt │ │ └── meta │ │ └── package.xml ├── componenterror │ ├── README │ ├── componenterror.pro │ ├── config │ │ └── config.xml │ └── packages │ │ ├── root.component1 │ │ └── meta │ │ │ ├── installscript.js │ │ │ └── package.xml │ │ ├── root.component2 │ │ └── meta │ │ │ ├── installscript.js │ │ │ └── package.xml │ │ └── root │ │ └── meta │ │ ├── installscript.js │ │ └── package.xml ├── dependencies │ ├── README │ ├── config │ │ └── config.xml │ ├── dependencies.pro │ └── packages │ │ ├── componentA │ │ ├── data │ │ │ ├── installcontent.txt │ │ │ └── installcontentA.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentB │ │ ├── data │ │ │ └── installcontentB.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentC │ │ ├── data │ │ │ └── installcontentC.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentD │ │ ├── data │ │ │ └── installcontentD.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentE │ │ ├── data │ │ │ └── installcontentE.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentF.subcomponent1.subsubcomponent1 │ │ ├── data │ │ │ └── installcontentF_1_1.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentF.subcomponent1.subsubcomponent2 │ │ ├── data │ │ │ └── installcontentF_1_2.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentF.subcomponent1 │ │ ├── data │ │ │ └── installcontentF_1.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentF.subcomponent2.subsubcomponent1 │ │ ├── data │ │ │ └── installcontentF_2_1.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentF.subcomponent2.subsubcomponent2 │ │ ├── data │ │ │ └── installcontentF_2_2.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentF.subcomponent2 │ │ ├── data │ │ │ └── installcontentF_2.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentF │ │ ├── data │ │ │ └── installcontentF.txt │ │ └── meta │ │ │ └── package.xml │ │ └── componentG │ │ ├── data │ │ └── installcontentG.txt │ │ └── meta │ │ ├── installscript.js │ │ └── package.xml ├── doc │ ├── changeuserinterface.qdoc │ ├── componentalias.qdoc │ ├── componenterror.qdoc │ ├── dependencies.qdoc │ ├── dynamicpage.qdoc │ ├── hidecheckbox.qdoc │ ├── images │ │ ├── qtifw-examples-changeuserinterface.png │ │ ├── qtifw-examples-componentalias.png │ │ ├── qtifw-examples-componenterror.png │ │ ├── qtifw-examples-dependencies.png │ │ ├── qtifw-examples-dynamicpages.png │ │ ├── qtifw-examples-hidecheckbox.png │ │ ├── qtifw-examples-modifyextract.png │ │ ├── qtifw-examples-online-1.png │ │ ├── qtifw-examples-online.png │ │ ├── qtifw-examples-openreadme.png │ │ ├── qtifw-examples-productimage.png │ │ ├── qtifw-examples-quitinstaller.png │ │ ├── qtifw-examples-registerfileextension.png │ │ ├── qtifw-examples-repository-categories.png │ │ ├── qtifw-examples-startmenu.png │ │ ├── qtifw-examples-stylesheet.png │ │ ├── qtifw-examples-translations.png │ │ └── qtifw-examples-treename.png │ ├── modifyextract.qdoc │ ├── online.qdoc │ ├── openreadme.qdoc │ ├── productimage.qdoc │ ├── quitinstaller.qdoc │ ├── registerfileextension.qdoc │ ├── repositorycategories.qdoc │ ├── startmenu.qdoc │ ├── stylesheet.qdoc │ ├── systeminfo.qdoc │ ├── translations.qdoc │ └── treename.qdoc ├── dynamicpage │ ├── README │ ├── config │ │ └── config.xml │ ├── dynamicpage.pro │ ├── packages │ │ ├── org.qtproject.ifw.example.dynamicpage.node1 │ │ │ ├── data │ │ │ │ └── data.node1.txt │ │ │ └── meta │ │ │ │ ├── installscript.qs │ │ │ │ └── package.xml │ │ ├── org.qtproject.ifw.example.dynamicpage.node2 │ │ │ ├── data │ │ │ │ └── data.node2.txt │ │ │ └── meta │ │ │ │ ├── installscript.qs │ │ │ │ └── package.xml │ │ └── org.qtproject.ifw.example.dynamicpage │ │ │ └── meta │ │ │ ├── installationwidget.ui │ │ │ ├── installscript.js │ │ │ ├── licensewidget.ui │ │ │ ├── package.xml │ │ │ ├── readytoinstallwidget.ui │ │ │ └── targetwidget.ui │ └── resources │ │ ├── additional.qrc │ │ ├── icon.png │ │ └── license.txt ├── examples.pro ├── hidecheckbox │ ├── README │ ├── config │ │ └── config.xml │ ├── hidecheckbox.pro │ └── packages │ │ ├── componentF.subcomponent1.subsubcomponent1 │ │ ├── data │ │ │ └── testF_sub1_sub1.txt │ │ └── meta │ │ │ └── package.xml │ │ ├── componentF.subcomponent1 │ │ ├── data │ │ │ └── testF_sub1.txt │ │ └── meta │ │ │ └── package.xml │ │ └── componentF │ │ ├── data │ │ └── testF.txt │ │ └── meta │ │ └── package.xml ├── licenseagreement │ ├── README │ ├── config │ │ └── config.xml │ ├── licenseagreement.pro │ └── packages │ │ └── org.qtproject.ifw.example.licenseagreement │ │ ├── data │ │ └── README.txt │ │ └── meta │ │ ├── cc0.txt │ │ ├── gpl3.txt │ │ └── package.xml ├── modifyextract │ ├── README │ ├── config │ │ └── config.xml │ ├── modifyextract.pro │ └── packages │ │ └── org.qtproject.ifw.example.modifyextract │ │ ├── data │ │ └── my_content │ │ │ └── test.txt │ │ └── meta │ │ ├── installscript.js │ │ └── package.xml ├── online │ ├── README │ ├── config │ │ └── config.xml │ ├── online.pro │ ├── packages │ │ ├── A │ │ │ ├── data │ │ │ │ └── A.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ └── B │ │ │ ├── data │ │ │ └── B.txt │ │ │ └── meta │ │ │ └── package.xml │ └── packages_update │ │ ├── A │ │ ├── data │ │ │ └── A.txt │ │ └── meta │ │ │ └── package.xml │ │ └── B │ │ ├── data │ │ └── B.txt │ │ └── meta │ │ └── package.xml ├── openreadme │ ├── README │ ├── config │ │ └── config.xml │ ├── openreadme.pro │ └── packages │ │ └── or.qtproject.ifw.example.openreadme │ │ ├── data │ │ └── README.txt │ │ └── meta │ │ ├── installscript.qs │ │ ├── package.xml │ │ └── readmecheckboxform.ui ├── productimage │ ├── config │ │ ├── Built_with_Qt.png │ │ ├── Built_with_Qt_logo.png │ │ └── config.xml │ ├── packages │ │ └── com.vendor.product │ │ │ └── meta │ │ │ └── package.xml │ └── productimage.pro ├── quitinstaller │ ├── README │ ├── config │ │ └── config.xml │ ├── packages │ │ └── org.qtproject.ifw.example.quitinstaller │ │ │ └── meta │ │ │ ├── installscript.js │ │ │ └── package.xml │ └── quitinstaller.pro ├── registerfileextension │ ├── README │ ├── config │ │ └── config.xml │ ├── packages │ │ └── org.qtproject.ifw.example.registerfileextension │ │ │ ├── data │ │ │ └── registeredfile │ │ │ └── meta │ │ │ ├── installscript.qs │ │ │ ├── openfilecheckboxform.ui │ │ │ ├── package.xml │ │ │ └── registerfilecheckboxform.ui │ └── registerfileextension.pro ├── registervirtualcomponentforuninstall │ ├── README │ ├── config │ │ ├── config.xml │ │ └── controller.qs │ ├── packages │ │ ├── component │ │ │ ├── data │ │ │ │ └── selectedcomponent │ │ │ └── meta │ │ │ │ └── package.xml │ │ └── org.qtproject.ifw.example.registercomponent │ │ │ ├── data │ │ │ └── registercomponent │ │ │ └── meta │ │ │ └── package.xml │ └── registervirtualcomponentforuninstall.pro ├── repositorycategories │ ├── README │ ├── config │ │ └── config.xml │ ├── packages │ │ ├── A │ │ │ ├── data │ │ │ │ └── A.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ └── B │ │ │ ├── data │ │ │ └── B.txt │ │ │ └── meta │ │ │ └── package.xml │ ├── packages2_forcategory1 │ │ ├── A2Cagetory1 │ │ │ ├── data │ │ │ │ └── A2_category1.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ └── B2Category1 │ │ │ ├── data │ │ │ └── B2_category1.txt │ │ │ └── meta │ │ │ └── package.xml │ ├── packages_forcategory1 │ │ ├── ACagetory1 │ │ │ ├── data │ │ │ │ └── A_category1.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ └── BCategory1 │ │ │ ├── data │ │ │ └── B_category1.txt │ │ │ └── meta │ │ │ └── package.xml │ ├── packages_forcategory2 │ │ ├── ACategory2 │ │ │ ├── data │ │ │ │ └── A_category2.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ └── BCategory2 │ │ │ ├── data │ │ │ └── B_category2.txt │ │ │ └── meta │ │ │ └── package.xml │ └── repositorycategories.pro ├── startmenu │ ├── README │ ├── config │ │ └── config.xml │ ├── packages │ │ └── org.qtproject.ifw.example │ │ │ ├── data │ │ │ └── README.txt │ │ │ └── meta │ │ │ ├── installscript.qs │ │ │ └── package.xml │ └── startmenu.pro ├── stylesheet │ ├── README │ ├── config │ │ ├── config.xml │ │ └── style.qss │ ├── packages │ │ └── org.qtproject.ifw.example.stylesheet │ │ │ └── meta │ │ │ ├── installscript.qs │ │ │ └── package.xml │ └── stylesheet.pro ├── systeminfo │ ├── README │ ├── config │ │ └── config.xml │ ├── packages │ │ ├── root.i386 │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── root.x86_64 │ │ │ └── meta │ │ │ │ └── package.xml │ │ └── root │ │ │ └── meta │ │ │ ├── installscript.qs │ │ │ └── package.xml │ └── systeminfo.pro ├── translations │ ├── README │ ├── config │ │ └── config.xml │ ├── packages │ │ └── com.vendor.product │ │ │ ├── data │ │ │ └── installcontent.txt │ │ │ └── meta │ │ │ ├── de.ts │ │ │ ├── installscript.qs │ │ │ ├── license.txt │ │ │ ├── license_de.txt │ │ │ ├── license_pl.txt │ │ │ ├── package.xml │ │ │ ├── page.ui │ │ │ └── pl.ts │ └── translations.pro ├── treename │ ├── README │ ├── config │ │ └── config.xml │ ├── packages │ │ ├── A.sub1.sub1 │ │ │ ├── data │ │ │ │ └── Asub1sub1.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── A.sub1 │ │ │ ├── data │ │ │ │ └── Asub1.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── A │ │ │ ├── data │ │ │ │ └── A.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── B.sub1.sub1 │ │ │ ├── data │ │ │ │ └── Bsub1sub1.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── B.sub1 │ │ │ ├── data │ │ │ │ └── Bsub1.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── B │ │ │ ├── data │ │ │ │ └── B.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── C.sub1 │ │ │ ├── data │ │ │ │ └── Csub1.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── C.sub2 │ │ │ ├── data │ │ │ │ └── Csub2.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── C │ │ │ ├── data │ │ │ │ └── C.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── D.sub1 │ │ │ ├── data │ │ │ │ └── Dsub1.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── E.sub2 │ │ │ ├── data │ │ │ │ └── Esub2.txt │ │ │ └── meta │ │ │ │ └── package.xml │ │ └── E │ │ │ ├── data │ │ │ └── E.txt │ │ │ └── meta │ │ │ └── package.xml │ └── treename.pro ├── tutorial │ ├── config │ │ └── config.xml │ └── packages │ │ └── com.vendor.product │ │ ├── data │ │ └── installcontent.txt │ │ └── meta │ │ ├── installscript.qs │ │ ├── license.txt │ │ ├── package.xml │ │ └── page.ui └── unstablecomponent │ ├── README │ ├── config │ ├── config.xml │ └── controller.qs │ ├── packages │ ├── componentB │ │ └── meta │ │ │ └── package.xml │ ├── componentDependsonComponentMissingDependency │ │ └── meta │ │ │ └── package.xml │ ├── componentDependsonComponentwithInvalidScript │ │ └── meta │ │ │ ├── installscript.js │ │ │ └── package.xml │ ├── componentE │ │ └── meta │ │ │ └── package.xml │ ├── componentF.subcomponent1.subsubcomponent1 │ │ └── meta │ │ │ └── package.xml │ ├── componentF.subcomponent1.subsubcomponent2 │ │ └── meta │ │ │ └── package.xml │ ├── componentF.subcomponent1 │ │ └── meta │ │ │ └── package.xml │ ├── componentF.subcomponent2.subsubcomponent1 │ │ └── meta │ │ │ └── package.xml │ ├── componentF.subcomponent2.subsubcomponent2 │ │ └── meta │ │ │ └── package.xml │ ├── componentF.subcomponent2 │ │ └── meta │ │ │ └── package.xml │ ├── componentF │ │ └── meta │ │ │ └── package.xml │ ├── componentMissingDependency │ │ └── meta │ │ │ └── package.xml │ └── componentWithInvalidScipt │ │ ├── data │ │ └── installcontent.txt │ │ └── meta │ │ ├── installscript.js │ │ └── package.xml │ └── unstablecomponent.pro ├── features ├── libarchive.prf └── lzmasdk.prf ├── installerfw.pri ├── installerfw.pro ├── no_app_bundle.pri ├── src ├── libs │ ├── 3rdparty │ │ ├── 3rdparty.pro │ │ ├── 7zip │ │ │ ├── 7zip.pri │ │ │ ├── 7zip.pro │ │ │ ├── COPYING │ │ │ ├── installer_framework_changes.txt │ │ │ ├── qt_attribution.json │ │ │ ├── unix │ │ │ │ ├── C │ │ │ │ │ ├── 7zCrc.c │ │ │ │ │ ├── 7zCrc.h │ │ │ │ │ ├── 7zCrcOpt.c │ │ │ │ │ ├── 7zStream.c │ │ │ │ │ ├── 7zTypes.h │ │ │ │ │ ├── 7zVersion.h │ │ │ │ │ ├── Alloc.c │ │ │ │ │ ├── Alloc.h │ │ │ │ │ ├── Bra.c │ │ │ │ │ ├── Bra.h │ │ │ │ │ ├── Bra86.c │ │ │ │ │ ├── BraIA64.c │ │ │ │ │ ├── C.pri │ │ │ │ │ ├── Compiler.h │ │ │ │ │ ├── CpuArch.h │ │ │ │ │ ├── Delta.c │ │ │ │ │ ├── Delta.h │ │ │ │ │ ├── LzFind.c │ │ │ │ │ ├── LzFind.h │ │ │ │ │ ├── LzFindMt.c │ │ │ │ │ ├── LzFindMt.h │ │ │ │ │ ├── LzHash.h │ │ │ │ │ ├── Lzma2Dec.c │ │ │ │ │ ├── Lzma2Dec.h │ │ │ │ │ ├── Lzma2Enc.c │ │ │ │ │ ├── Lzma2Enc.h │ │ │ │ │ ├── LzmaDec.c │ │ │ │ │ ├── LzmaDec.h │ │ │ │ │ ├── LzmaEnc.c │ │ │ │ │ ├── LzmaEnc.h │ │ │ │ │ ├── MtCoder.c │ │ │ │ │ ├── MtCoder.h │ │ │ │ │ ├── Precomp.h │ │ │ │ │ ├── RotateDefs.h │ │ │ │ │ ├── Sha256.c │ │ │ │ │ ├── Sha256.h │ │ │ │ │ ├── Threads.c │ │ │ │ │ ├── Threads.h │ │ │ │ │ ├── Xz.c │ │ │ │ │ ├── Xz.h │ │ │ │ │ ├── XzCrc64.c │ │ │ │ │ ├── XzCrc64.h │ │ │ │ │ ├── XzCrc64Opt.c │ │ │ │ │ ├── XzDec.c │ │ │ │ │ ├── XzEnc.c │ │ │ │ │ ├── XzEnc.h │ │ │ │ │ └── XzIn.c │ │ │ │ ├── CPP │ │ │ │ │ ├── 7zip │ │ │ │ │ │ ├── 7zip.pri │ │ │ │ │ │ ├── Archive │ │ │ │ │ │ │ ├── 7z │ │ │ │ │ │ │ │ ├── 7z.pri │ │ │ │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ │ │ │ ├── 7zFolderOutStream.cpp │ │ │ │ │ │ │ │ ├── 7zFolderOutStream.h │ │ │ │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ │ │ │ └── 7zUpdate.h │ │ │ │ │ │ │ ├── Archive.pri │ │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ │ │ │ ├── CoderMixer2MT.cpp │ │ │ │ │ │ │ │ ├── CoderMixer2MT.h │ │ │ │ │ │ │ │ ├── Common.pri │ │ │ │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ │ │ │ └── ParseProperties.h │ │ │ │ │ │ │ ├── IArchive.h │ │ │ │ │ │ │ ├── LzmaHandler.cpp │ │ │ │ │ │ │ ├── SplitHandler.cpp │ │ │ │ │ │ │ └── XzHandler.cpp │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── CWrappers.cpp │ │ │ │ │ │ │ ├── CWrappers.h │ │ │ │ │ │ │ ├── Common.pri │ │ │ │ │ │ │ ├── CreateCoder.cpp │ │ │ │ │ │ │ ├── CreateCoder.h │ │ │ │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ │ │ ├── FilterCoder.cpp │ │ │ │ │ │ │ ├── FilterCoder.h │ │ │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ │ │ │ ├── LimitedStreams.h │ │ │ │ │ │ │ ├── LockedStream.cpp │ │ │ │ │ │ │ ├── LockedStream.h │ │ │ │ │ │ │ ├── MethodId.h │ │ │ │ │ │ │ ├── MethodProps.cpp │ │ │ │ │ │ │ ├── MethodProps.h │ │ │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ │ │ │ ├── ProgressUtils.h │ │ │ │ │ │ │ ├── PropId.cpp │ │ │ │ │ │ │ ├── RegisterArc.h │ │ │ │ │ │ │ ├── RegisterCodec.h │ │ │ │ │ │ │ ├── StreamBinder.cpp │ │ │ │ │ │ │ ├── StreamBinder.h │ │ │ │ │ │ │ ├── StreamObjects.cpp │ │ │ │ │ │ │ ├── StreamObjects.h │ │ │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ │ │ ├── StreamUtils.h │ │ │ │ │ │ │ ├── UniqBlocks.cpp │ │ │ │ │ │ │ ├── UniqBlocks.h │ │ │ │ │ │ │ ├── VirtThread.cpp │ │ │ │ │ │ │ └── VirtThread.h │ │ │ │ │ │ ├── Compress │ │ │ │ │ │ │ ├── Bcj2Coder.cpp │ │ │ │ │ │ │ ├── Bcj2Coder.h │ │ │ │ │ │ │ ├── Bcj2Register.cpp │ │ │ │ │ │ │ ├── BcjCoder.cpp │ │ │ │ │ │ │ ├── BcjCoder.h │ │ │ │ │ │ │ ├── BcjRegister.cpp │ │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ │ ├── BranchMisc.cpp │ │ │ │ │ │ │ ├── BranchMisc.h │ │ │ │ │ │ │ ├── BranchRegister.cpp │ │ │ │ │ │ │ ├── ByteSwap.cpp │ │ │ │ │ │ │ ├── Compress.pri │ │ │ │ │ │ │ ├── CopyCoder.cpp │ │ │ │ │ │ │ ├── CopyCoder.h │ │ │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ │ │ ├── DeltaFilter.cpp │ │ │ │ │ │ │ ├── Lzma2Decoder.cpp │ │ │ │ │ │ │ ├── Lzma2Decoder.h │ │ │ │ │ │ │ ├── Lzma2Encoder.cpp │ │ │ │ │ │ │ ├── Lzma2Encoder.h │ │ │ │ │ │ │ ├── Lzma2Register.cpp │ │ │ │ │ │ │ ├── LzmaDecoder.cpp │ │ │ │ │ │ │ ├── LzmaDecoder.h │ │ │ │ │ │ │ ├── LzmaEncoder.cpp │ │ │ │ │ │ │ ├── LzmaEncoder.h │ │ │ │ │ │ │ ├── LzmaRegister.cpp │ │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ │ └── RangeCoderBit.h │ │ │ │ │ │ ├── Guid.txt │ │ │ │ │ │ ├── ICoder.h │ │ │ │ │ │ ├── IDecl.h │ │ │ │ │ │ ├── IPassword.h │ │ │ │ │ │ ├── IProgress.h │ │ │ │ │ │ ├── IStream.h │ │ │ │ │ │ ├── PropID.h │ │ │ │ │ │ └── UI │ │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ │ │ ├── Common.pri │ │ │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ │ │ ├── DirItem.h │ │ │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ │ │ ├── Extract.h │ │ │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ │ ├── HashCalc.cpp │ │ │ │ │ │ │ ├── HashCalc.h │ │ │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ │ │ ├── Update.cpp │ │ │ │ │ │ │ ├── Update.h │ │ │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ │ │ └── UpdateProduce.h │ │ │ │ │ │ │ └── Console │ │ │ │ │ │ │ ├── Console.pri │ │ │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ │ │ └── PercentPrinter.h │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── ComTry.h │ │ │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ │ │ ├── CommandLineParser.h │ │ │ │ │ │ ├── Common.h │ │ │ │ │ │ ├── Common.pri │ │ │ │ │ │ ├── Defs.h │ │ │ │ │ │ ├── IntToString.cpp │ │ │ │ │ │ ├── IntToString.h │ │ │ │ │ │ ├── ListFileUtils.cpp │ │ │ │ │ │ ├── ListFileUtils.h │ │ │ │ │ │ ├── MyBuffer.h │ │ │ │ │ │ ├── MyCom.h │ │ │ │ │ │ ├── MyException.h │ │ │ │ │ │ ├── MyGuidDef.h │ │ │ │ │ │ ├── MyInitGuid.h │ │ │ │ │ │ ├── MyString.cpp │ │ │ │ │ │ ├── MyString.h │ │ │ │ │ │ ├── MyTypes.h │ │ │ │ │ │ ├── MyUnknown.h │ │ │ │ │ │ ├── MyVector.h │ │ │ │ │ │ ├── MyWindows.cpp │ │ │ │ │ │ ├── MyWindows.h │ │ │ │ │ │ ├── NewHandler.cpp │ │ │ │ │ │ ├── NewHandler.h │ │ │ │ │ │ ├── StdOutStream.cpp │ │ │ │ │ │ ├── StdOutStream.h │ │ │ │ │ │ ├── StringConvert.cpp │ │ │ │ │ │ ├── StringConvert.h │ │ │ │ │ │ ├── StringToInt.cpp │ │ │ │ │ │ ├── StringToInt.h │ │ │ │ │ │ ├── UTFConvert.cpp │ │ │ │ │ │ ├── UTFConvert.h │ │ │ │ │ │ ├── Wildcard.cpp │ │ │ │ │ │ └── Wildcard.h │ │ │ │ │ ├── Windows │ │ │ │ │ │ ├── DLL.cpp │ │ │ │ │ │ ├── DLL.h │ │ │ │ │ │ ├── Defs.h │ │ │ │ │ │ ├── FileDir.cpp │ │ │ │ │ │ ├── FileDir.h │ │ │ │ │ │ ├── FileFind.cpp │ │ │ │ │ │ ├── FileFind.h │ │ │ │ │ │ ├── FileIO.cpp │ │ │ │ │ │ ├── FileIO.h │ │ │ │ │ │ ├── FileName.cpp │ │ │ │ │ │ ├── FileName.h │ │ │ │ │ │ ├── PropVariant.cpp │ │ │ │ │ │ ├── PropVariant.h │ │ │ │ │ │ ├── PropVariantConv.cpp │ │ │ │ │ │ ├── PropVariantConv.h │ │ │ │ │ │ ├── Synchronization.cpp │ │ │ │ │ │ ├── Synchronization.h │ │ │ │ │ │ ├── Synchronization2.h │ │ │ │ │ │ ├── System.cpp │ │ │ │ │ │ ├── System.h │ │ │ │ │ │ ├── Thread.h │ │ │ │ │ │ ├── TimeUtils.cpp │ │ │ │ │ │ ├── TimeUtils.h │ │ │ │ │ │ └── Windows.pri │ │ │ │ │ ├── include_windows │ │ │ │ │ │ ├── basetyps.h │ │ │ │ │ │ ├── include_windows.pri │ │ │ │ │ │ ├── tchar.h │ │ │ │ │ │ └── windows.h │ │ │ │ │ └── myWindows │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── initguid.h │ │ │ │ │ │ ├── myCommandLineParser.cpp │ │ │ │ │ │ ├── myDateAndTime.cpp │ │ │ │ │ │ ├── myPrivate.h │ │ │ │ │ │ └── myWindows.pri │ │ │ │ └── unix.pri │ │ │ └── win │ │ │ │ ├── C │ │ │ │ ├── 7zCrc.c │ │ │ │ ├── 7zCrc.h │ │ │ │ ├── 7zCrcOpt.c │ │ │ │ ├── 7zStream.c │ │ │ │ ├── 7zTypes.h │ │ │ │ ├── 7zVersion.h │ │ │ │ ├── Alloc.c │ │ │ │ ├── Alloc.h │ │ │ │ ├── Bra.c │ │ │ │ ├── Bra.h │ │ │ │ ├── Bra86.c │ │ │ │ ├── BraIA64.c │ │ │ │ ├── C.pri │ │ │ │ ├── Compiler.h │ │ │ │ ├── CpuArch.c │ │ │ │ ├── CpuArch.h │ │ │ │ ├── Delta.c │ │ │ │ ├── Delta.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzFindMt.c │ │ │ │ ├── LzFindMt.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── Lzma2Dec.c │ │ │ │ ├── Lzma2Dec.h │ │ │ │ ├── Lzma2Enc.c │ │ │ │ ├── Lzma2Enc.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.c │ │ │ │ ├── LzmaEnc.h │ │ │ │ ├── MtCoder.c │ │ │ │ ├── MtCoder.h │ │ │ │ ├── Precomp.h │ │ │ │ ├── RotateDefs.h │ │ │ │ ├── Sha256.c │ │ │ │ ├── Sha256.h │ │ │ │ ├── Threads.c │ │ │ │ ├── Threads.h │ │ │ │ ├── Xz.c │ │ │ │ ├── Xz.h │ │ │ │ ├── XzCrc64.c │ │ │ │ ├── XzCrc64.h │ │ │ │ ├── XzCrc64Opt.c │ │ │ │ ├── XzDec.c │ │ │ │ ├── XzEnc.c │ │ │ │ ├── XzEnc.h │ │ │ │ └── XzIn.c │ │ │ │ ├── CPP │ │ │ │ ├── 7zip │ │ │ │ │ ├── 7zip.pri │ │ │ │ │ ├── Archive │ │ │ │ │ │ ├── 7z │ │ │ │ │ │ │ ├── 7z.pri │ │ │ │ │ │ │ ├── 7zCompressionMode.h │ │ │ │ │ │ │ ├── 7zDecode.cpp │ │ │ │ │ │ │ ├── 7zDecode.h │ │ │ │ │ │ │ ├── 7zEncode.cpp │ │ │ │ │ │ │ ├── 7zEncode.h │ │ │ │ │ │ │ ├── 7zExtract.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.cpp │ │ │ │ │ │ │ ├── 7zFolderInStream.h │ │ │ │ │ │ │ ├── 7zFolderOutStream.cpp │ │ │ │ │ │ │ ├── 7zFolderOutStream.h │ │ │ │ │ │ │ ├── 7zHandler.cpp │ │ │ │ │ │ │ ├── 7zHandler.h │ │ │ │ │ │ │ ├── 7zHandlerOut.cpp │ │ │ │ │ │ │ ├── 7zHeader.cpp │ │ │ │ │ │ │ ├── 7zHeader.h │ │ │ │ │ │ │ ├── 7zIn.cpp │ │ │ │ │ │ │ ├── 7zIn.h │ │ │ │ │ │ │ ├── 7zItem.h │ │ │ │ │ │ │ ├── 7zOut.cpp │ │ │ │ │ │ │ ├── 7zOut.h │ │ │ │ │ │ │ ├── 7zProperties.cpp │ │ │ │ │ │ │ ├── 7zProperties.h │ │ │ │ │ │ │ ├── 7zRegister.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.cpp │ │ │ │ │ │ │ ├── 7zSpecStream.h │ │ │ │ │ │ │ ├── 7zUpdate.cpp │ │ │ │ │ │ │ ├── 7zUpdate.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Archive.pri │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── CoderMixer2.cpp │ │ │ │ │ │ │ ├── CoderMixer2.h │ │ │ │ │ │ │ ├── CoderMixer2MT.cpp │ │ │ │ │ │ │ ├── CoderMixer2MT.h │ │ │ │ │ │ │ ├── Common.pri │ │ │ │ │ │ │ ├── DummyOutStream.cpp │ │ │ │ │ │ │ ├── DummyOutStream.h │ │ │ │ │ │ │ ├── HandlerOut.cpp │ │ │ │ │ │ │ ├── HandlerOut.h │ │ │ │ │ │ │ ├── InStreamWithCRC.cpp │ │ │ │ │ │ │ ├── InStreamWithCRC.h │ │ │ │ │ │ │ ├── ItemNameUtils.cpp │ │ │ │ │ │ │ ├── ItemNameUtils.h │ │ │ │ │ │ │ ├── MultiStream.cpp │ │ │ │ │ │ │ ├── MultiStream.h │ │ │ │ │ │ │ ├── OutStreamWithCRC.cpp │ │ │ │ │ │ │ ├── OutStreamWithCRC.h │ │ │ │ │ │ │ ├── ParseProperties.h │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── IArchive.h │ │ │ │ │ │ ├── LzmaHandler.cpp │ │ │ │ │ │ ├── SplitHandler.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── XzHandler.cpp │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── CWrappers.cpp │ │ │ │ │ │ ├── CWrappers.h │ │ │ │ │ │ ├── Common.pri │ │ │ │ │ │ ├── CreateCoder.cpp │ │ │ │ │ │ ├── CreateCoder.h │ │ │ │ │ │ ├── FilePathAutoRename.cpp │ │ │ │ │ │ ├── FilePathAutoRename.h │ │ │ │ │ │ ├── FileStreams.cpp │ │ │ │ │ │ ├── FileStreams.h │ │ │ │ │ │ ├── FilterCoder.cpp │ │ │ │ │ │ ├── FilterCoder.h │ │ │ │ │ │ ├── InBuffer.cpp │ │ │ │ │ │ ├── InBuffer.h │ │ │ │ │ │ ├── InOutTempBuffer.cpp │ │ │ │ │ │ ├── InOutTempBuffer.h │ │ │ │ │ │ ├── LimitedStreams.cpp │ │ │ │ │ │ ├── LimitedStreams.h │ │ │ │ │ │ ├── LockedStream.cpp │ │ │ │ │ │ ├── LockedStream.h │ │ │ │ │ │ ├── MethodId.h │ │ │ │ │ │ ├── MethodProps.cpp │ │ │ │ │ │ ├── MethodProps.h │ │ │ │ │ │ ├── OutBuffer.cpp │ │ │ │ │ │ ├── OutBuffer.h │ │ │ │ │ │ ├── ProgressUtils.cpp │ │ │ │ │ │ ├── ProgressUtils.h │ │ │ │ │ │ ├── PropId.cpp │ │ │ │ │ │ ├── RegisterArc.h │ │ │ │ │ │ ├── RegisterCodec.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── StreamBinder.cpp │ │ │ │ │ │ ├── StreamBinder.h │ │ │ │ │ │ ├── StreamObjects.cpp │ │ │ │ │ │ ├── StreamObjects.h │ │ │ │ │ │ ├── StreamUtils.cpp │ │ │ │ │ │ ├── StreamUtils.h │ │ │ │ │ │ ├── UniqBlocks.cpp │ │ │ │ │ │ ├── UniqBlocks.h │ │ │ │ │ │ ├── VirtThread.cpp │ │ │ │ │ │ └── VirtThread.h │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── Bcj2Coder.cpp │ │ │ │ │ │ ├── Bcj2Coder.h │ │ │ │ │ │ ├── Bcj2Register.cpp │ │ │ │ │ │ ├── BcjCoder.cpp │ │ │ │ │ │ ├── BcjCoder.h │ │ │ │ │ │ ├── BcjRegister.cpp │ │ │ │ │ │ ├── BranchCoder.cpp │ │ │ │ │ │ ├── BranchCoder.h │ │ │ │ │ │ ├── BranchMisc.cpp │ │ │ │ │ │ ├── BranchMisc.h │ │ │ │ │ │ ├── BranchRegister.cpp │ │ │ │ │ │ ├── ByteSwap.cpp │ │ │ │ │ │ ├── Compress.pri │ │ │ │ │ │ ├── CopyCoder.cpp │ │ │ │ │ │ ├── CopyCoder.h │ │ │ │ │ │ ├── CopyRegister.cpp │ │ │ │ │ │ ├── DeltaFilter.cpp │ │ │ │ │ │ ├── Lzma2Decoder.cpp │ │ │ │ │ │ ├── Lzma2Decoder.h │ │ │ │ │ │ ├── Lzma2Encoder.cpp │ │ │ │ │ │ ├── Lzma2Encoder.h │ │ │ │ │ │ ├── Lzma2Register.cpp │ │ │ │ │ │ ├── LzmaDecoder.cpp │ │ │ │ │ │ ├── LzmaDecoder.h │ │ │ │ │ │ ├── LzmaEncoder.cpp │ │ │ │ │ │ ├── LzmaEncoder.h │ │ │ │ │ │ ├── LzmaRegister.cpp │ │ │ │ │ │ ├── RangeCoder.h │ │ │ │ │ │ ├── RangeCoderBit.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Guid.txt │ │ │ │ │ ├── ICoder.h │ │ │ │ │ ├── IDecl.h │ │ │ │ │ ├── IPassword.h │ │ │ │ │ ├── IProgress.h │ │ │ │ │ ├── IStream.h │ │ │ │ │ ├── PropID.h │ │ │ │ │ └── UI │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── ArchiveCommandLine.cpp │ │ │ │ │ │ ├── ArchiveCommandLine.h │ │ │ │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ │ │ │ ├── ArchiveExtractCallback.h │ │ │ │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ │ │ │ ├── ArchiveOpenCallback.h │ │ │ │ │ │ ├── Common.pri │ │ │ │ │ │ ├── DefaultName.cpp │ │ │ │ │ │ ├── DefaultName.h │ │ │ │ │ │ ├── DirItem.h │ │ │ │ │ │ ├── EnumDirItems.cpp │ │ │ │ │ │ ├── EnumDirItems.h │ │ │ │ │ │ ├── Extract.cpp │ │ │ │ │ │ ├── Extract.h │ │ │ │ │ │ ├── ExtractMode.h │ │ │ │ │ │ ├── ExtractingFilePath.cpp │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ ├── HashCalc.cpp │ │ │ │ │ │ ├── HashCalc.h │ │ │ │ │ │ ├── IFileExtractCallback.h │ │ │ │ │ │ ├── LoadCodecs.cpp │ │ │ │ │ │ ├── LoadCodecs.h │ │ │ │ │ │ ├── OpenArchive.cpp │ │ │ │ │ │ ├── OpenArchive.h │ │ │ │ │ │ ├── PropIDUtils.cpp │ │ │ │ │ │ ├── PropIDUtils.h │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ ├── SetProperties.cpp │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ ├── SortUtils.cpp │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── TempFiles.cpp │ │ │ │ │ │ ├── TempFiles.h │ │ │ │ │ │ ├── Update.cpp │ │ │ │ │ │ ├── Update.h │ │ │ │ │ │ ├── UpdateAction.cpp │ │ │ │ │ │ ├── UpdateAction.h │ │ │ │ │ │ ├── UpdateCallback.cpp │ │ │ │ │ │ ├── UpdateCallback.h │ │ │ │ │ │ ├── UpdatePair.cpp │ │ │ │ │ │ ├── UpdatePair.h │ │ │ │ │ │ ├── UpdateProduce.cpp │ │ │ │ │ │ └── UpdateProduce.h │ │ │ │ │ │ └── Console │ │ │ │ │ │ ├── Console.pri │ │ │ │ │ │ ├── PercentPrinter.cpp │ │ │ │ │ │ ├── PercentPrinter.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Common │ │ │ │ │ ├── ComTry.h │ │ │ │ │ ├── CommandLineParser.cpp │ │ │ │ │ ├── CommandLineParser.h │ │ │ │ │ ├── Common.h │ │ │ │ │ ├── Common.pri │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── IntToString.cpp │ │ │ │ │ ├── IntToString.h │ │ │ │ │ ├── ListFileUtils.cpp │ │ │ │ │ ├── ListFileUtils.h │ │ │ │ │ ├── MyBuffer.h │ │ │ │ │ ├── MyCom.h │ │ │ │ │ ├── MyException.h │ │ │ │ │ ├── MyGuidDef.h │ │ │ │ │ ├── MyInitGuid.h │ │ │ │ │ ├── MyString.cpp │ │ │ │ │ ├── MyString.h │ │ │ │ │ ├── MyTypes.h │ │ │ │ │ ├── MyUnknown.h │ │ │ │ │ ├── MyVector.h │ │ │ │ │ ├── MyWindows.cpp │ │ │ │ │ ├── MyWindows.h │ │ │ │ │ ├── NewHandler.cpp │ │ │ │ │ ├── NewHandler.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── StdOutStream.cpp │ │ │ │ │ ├── StdOutStream.h │ │ │ │ │ ├── StringConvert.cpp │ │ │ │ │ ├── StringConvert.h │ │ │ │ │ ├── StringToInt.cpp │ │ │ │ │ ├── StringToInt.h │ │ │ │ │ ├── UTFConvert.cpp │ │ │ │ │ ├── UTFConvert.h │ │ │ │ │ ├── Wildcard.cpp │ │ │ │ │ └── Wildcard.h │ │ │ │ └── Windows │ │ │ │ │ ├── DLL.cpp │ │ │ │ │ ├── DLL.h │ │ │ │ │ ├── Defs.h │ │ │ │ │ ├── FileDir.cpp │ │ │ │ │ ├── FileDir.h │ │ │ │ │ ├── FileFind.cpp │ │ │ │ │ ├── FileFind.h │ │ │ │ │ ├── FileIO.cpp │ │ │ │ │ ├── FileIO.h │ │ │ │ │ ├── FileLink.cpp │ │ │ │ │ ├── FileMapping.h │ │ │ │ │ ├── FileName.cpp │ │ │ │ │ ├── FileName.h │ │ │ │ │ ├── Handle.h │ │ │ │ │ ├── PropVariant.cpp │ │ │ │ │ ├── PropVariant.h │ │ │ │ │ ├── PropVariantConv.cpp │ │ │ │ │ ├── PropVariantConv.h │ │ │ │ │ ├── SecurityUtils.cpp │ │ │ │ │ ├── SecurityUtils.h │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── Synchronization.cpp │ │ │ │ │ ├── Synchronization.h │ │ │ │ │ ├── System.cpp │ │ │ │ │ ├── System.h │ │ │ │ │ ├── Thread.h │ │ │ │ │ ├── TimeUtils.cpp │ │ │ │ │ ├── TimeUtils.h │ │ │ │ │ └── Windows.pri │ │ │ │ └── win.pri │ │ └── libarchive │ │ │ ├── COPYING │ │ │ ├── archive.h │ │ │ ├── archive_acl.c │ │ │ ├── archive_acl_private.h │ │ │ ├── archive_blake2.h │ │ │ ├── archive_blake2_impl.h │ │ │ ├── archive_blake2s_ref.c │ │ │ ├── archive_blake2sp_ref.c │ │ │ ├── archive_check_magic.c │ │ │ ├── archive_cmdline.c │ │ │ ├── archive_cmdline_private.h │ │ │ ├── archive_crc32.h │ │ │ ├── archive_cryptor.c │ │ │ ├── archive_cryptor_private.h │ │ │ ├── archive_digest.c │ │ │ ├── archive_digest_private.h │ │ │ ├── archive_disk_acl_darwin.c │ │ │ ├── archive_disk_acl_freebsd.c │ │ │ ├── archive_disk_acl_linux.c │ │ │ ├── archive_disk_acl_sunos.c │ │ │ ├── archive_endian.h │ │ │ ├── archive_entry.c │ │ │ ├── archive_entry.h │ │ │ ├── archive_entry_copy_bhfi.c │ │ │ ├── archive_entry_copy_stat.c │ │ │ ├── archive_entry_link_resolver.c │ │ │ ├── archive_entry_locale.h │ │ │ ├── archive_entry_private.h │ │ │ ├── archive_entry_sparse.c │ │ │ ├── archive_entry_stat.c │ │ │ ├── archive_entry_strmode.c │ │ │ ├── archive_entry_xattr.c │ │ │ ├── archive_getdate.c │ │ │ ├── archive_getdate.h │ │ │ ├── archive_hmac.c │ │ │ ├── archive_hmac_private.h │ │ │ ├── archive_match.c │ │ │ ├── archive_openssl_evp_private.h │ │ │ ├── archive_openssl_hmac_private.h │ │ │ ├── archive_options.c │ │ │ ├── archive_options_private.h │ │ │ ├── archive_pack_dev.c │ │ │ ├── archive_pack_dev.h │ │ │ ├── archive_pathmatch.c │ │ │ ├── archive_pathmatch.h │ │ │ ├── archive_platform.h │ │ │ ├── archive_platform_acl.h │ │ │ ├── archive_platform_xattr.h │ │ │ ├── archive_ppmd7.c │ │ │ ├── archive_ppmd7_private.h │ │ │ ├── archive_ppmd8.c │ │ │ ├── archive_ppmd8_private.h │ │ │ ├── archive_ppmd_private.h │ │ │ ├── archive_private.h │ │ │ ├── archive_random.c │ │ │ ├── archive_random_private.h │ │ │ ├── archive_rb.c │ │ │ ├── archive_rb.h │ │ │ ├── archive_read.c │ │ │ ├── archive_read_add_passphrase.c │ │ │ ├── archive_read_append_filter.c │ │ │ ├── archive_read_data_into_fd.c │ │ │ ├── archive_read_disk_entry_from_file.c │ │ │ ├── archive_read_disk_posix.c │ │ │ ├── archive_read_disk_private.h │ │ │ ├── archive_read_disk_set_standard_lookup.c │ │ │ ├── archive_read_disk_windows.c │ │ │ ├── archive_read_extract.c │ │ │ ├── archive_read_extract2.c │ │ │ ├── archive_read_open_fd.c │ │ │ ├── archive_read_open_file.c │ │ │ ├── archive_read_open_filename.c │ │ │ ├── archive_read_open_memory.c │ │ │ ├── archive_read_private.h │ │ │ ├── archive_read_set_format.c │ │ │ ├── archive_read_set_options.c │ │ │ ├── archive_read_support_filter_all.c │ │ │ ├── archive_read_support_filter_by_code.c │ │ │ ├── archive_read_support_filter_bzip2.c │ │ │ ├── archive_read_support_filter_compress.c │ │ │ ├── archive_read_support_filter_grzip.c │ │ │ ├── archive_read_support_filter_gzip.c │ │ │ ├── archive_read_support_filter_lrzip.c │ │ │ ├── archive_read_support_filter_lz4.c │ │ │ ├── archive_read_support_filter_lzop.c │ │ │ ├── archive_read_support_filter_none.c │ │ │ ├── archive_read_support_filter_program.c │ │ │ ├── archive_read_support_filter_rpm.c │ │ │ ├── archive_read_support_filter_uu.c │ │ │ ├── archive_read_support_filter_xz.c │ │ │ ├── archive_read_support_filter_zstd.c │ │ │ ├── archive_read_support_format_7zip.c │ │ │ ├── archive_read_support_format_all.c │ │ │ ├── archive_read_support_format_ar.c │ │ │ ├── archive_read_support_format_by_code.c │ │ │ ├── archive_read_support_format_cab.c │ │ │ ├── archive_read_support_format_cpio.c │ │ │ ├── archive_read_support_format_empty.c │ │ │ ├── archive_read_support_format_iso9660.c │ │ │ ├── archive_read_support_format_lha.c │ │ │ ├── archive_read_support_format_mtree.c │ │ │ ├── archive_read_support_format_rar.c │ │ │ ├── archive_read_support_format_rar5.c │ │ │ ├── archive_read_support_format_raw.c │ │ │ ├── archive_read_support_format_tar.c │ │ │ ├── archive_read_support_format_warc.c │ │ │ ├── archive_read_support_format_xar.c │ │ │ ├── archive_read_support_format_zip.c │ │ │ ├── archive_string.c │ │ │ ├── archive_string.h │ │ │ ├── archive_string_composition.h │ │ │ ├── archive_string_sprintf.c │ │ │ ├── archive_util.c │ │ │ ├── archive_version_details.c │ │ │ ├── archive_virtual.c │ │ │ ├── archive_windows.c │ │ │ ├── archive_windows.h │ │ │ ├── archive_write.c │ │ │ ├── archive_write_add_filter.c │ │ │ ├── archive_write_add_filter_b64encode.c │ │ │ ├── archive_write_add_filter_by_name.c │ │ │ ├── archive_write_add_filter_bzip2.c │ │ │ ├── archive_write_add_filter_compress.c │ │ │ ├── archive_write_add_filter_grzip.c │ │ │ ├── archive_write_add_filter_gzip.c │ │ │ ├── archive_write_add_filter_lrzip.c │ │ │ ├── archive_write_add_filter_lz4.c │ │ │ ├── archive_write_add_filter_lzop.c │ │ │ ├── archive_write_add_filter_none.c │ │ │ ├── archive_write_add_filter_program.c │ │ │ ├── archive_write_add_filter_uuencode.c │ │ │ ├── archive_write_add_filter_xz.c │ │ │ ├── archive_write_add_filter_zstd.c │ │ │ ├── archive_write_disk_posix.c │ │ │ ├── archive_write_disk_private.h │ │ │ ├── archive_write_disk_set_standard_lookup.c │ │ │ ├── archive_write_disk_windows.c │ │ │ ├── archive_write_open_fd.c │ │ │ ├── archive_write_open_file.c │ │ │ ├── archive_write_open_filename.c │ │ │ ├── archive_write_open_memory.c │ │ │ ├── archive_write_private.h │ │ │ ├── archive_write_set_format.c │ │ │ ├── archive_write_set_format_7zip.c │ │ │ ├── archive_write_set_format_ar.c │ │ │ ├── archive_write_set_format_by_name.c │ │ │ ├── archive_write_set_format_cpio.c │ │ │ ├── archive_write_set_format_cpio_binary.c │ │ │ ├── archive_write_set_format_cpio_newc.c │ │ │ ├── archive_write_set_format_cpio_odc.c │ │ │ ├── archive_write_set_format_filter_by_ext.c │ │ │ ├── archive_write_set_format_gnutar.c │ │ │ ├── archive_write_set_format_iso9660.c │ │ │ ├── archive_write_set_format_mtree.c │ │ │ ├── archive_write_set_format_pax.c │ │ │ ├── archive_write_set_format_private.h │ │ │ ├── archive_write_set_format_raw.c │ │ │ ├── archive_write_set_format_shar.c │ │ │ ├── archive_write_set_format_ustar.c │ │ │ ├── archive_write_set_format_v7tar.c │ │ │ ├── archive_write_set_format_warc.c │ │ │ ├── archive_write_set_format_xar.c │ │ │ ├── archive_write_set_format_zip.c │ │ │ ├── archive_write_set_options.c │ │ │ ├── archive_write_set_passphrase.c │ │ │ ├── archive_xxhash.h │ │ │ ├── config │ │ │ ├── linux │ │ │ │ └── config.h │ │ │ ├── mac │ │ │ │ └── config.h │ │ │ └── win │ │ │ │ └── config.h │ │ │ ├── config_freebsd.h │ │ │ ├── filter_fork.h │ │ │ ├── filter_fork_posix.c │ │ │ ├── filter_fork_windows.c │ │ │ ├── libarchive.pro │ │ │ ├── qt_attribution.json │ │ │ └── xxhash.c │ ├── ifwtools │ │ ├── binarycreator.cpp │ │ ├── binarycreator.h │ │ ├── ifwtools.pri │ │ ├── ifwtools_global.h │ │ ├── rcc │ │ │ ├── qcorecmdlineargs_p.h │ │ │ ├── rcc.cpp │ │ │ ├── rcc.h │ │ │ └── rccmain.cpp │ │ ├── repositorygen.cpp │ │ ├── repositorygen.h │ │ └── resources │ │ │ ├── copylibsintobundle.sh │ │ │ ├── default_icon_mac.icns │ │ │ └── ifwtools.qrc │ ├── installer │ │ ├── abstractarchive.cpp │ │ ├── abstractarchive.h │ │ ├── abstractfiletask.cpp │ │ ├── abstractfiletask.h │ │ ├── abstracttask.cpp │ │ ├── abstracttask.h │ │ ├── adminauthorization.h │ │ ├── adminauthorization_mac.cpp │ │ ├── adminauthorization_win.cpp │ │ ├── adminauthorization_x11.cpp │ │ ├── archivefactory.cpp │ │ ├── archivefactory.h │ │ ├── aspectratiolabel.cpp │ │ ├── aspectratiolabel.h │ │ ├── binarycontent.cpp │ │ ├── binarycontent.h │ │ ├── binaryformat.cpp │ │ ├── binaryformat.h │ │ ├── binaryformatengine.cpp │ │ ├── binaryformatengine.h │ │ ├── binaryformatenginehandler.cpp │ │ ├── binaryformatenginehandler.h │ │ ├── binarylayout.cpp │ │ ├── binarylayout.h │ │ ├── calculatorbase.cpp │ │ ├── calculatorbase.h │ │ ├── categorycombobox.cpp │ │ ├── categorycombobox.h │ │ ├── checkablecombobox.cpp │ │ ├── checkablecombobox.h │ │ ├── clickablelabel.cpp │ │ ├── clickablelabel.h │ │ ├── commandlineparser.cpp │ │ ├── commandlineparser.h │ │ ├── commandlineparser_p.cpp │ │ ├── commandlineparser_p.h │ │ ├── component.cpp │ │ ├── component.h │ │ ├── component_p.cpp │ │ ├── component_p.h │ │ ├── componentalias.cpp │ │ ├── componentalias.h │ │ ├── componentchecker.cpp │ │ ├── componentchecker.h │ │ ├── componentmodel.cpp │ │ ├── componentmodel.h │ │ ├── componentselectionpage_p.cpp │ │ ├── componentselectionpage_p.h │ │ ├── componentsortfilterproxymodel.cpp │ │ ├── componentsortfilterproxymodel.h │ │ ├── concurrentoperationrunner.cpp │ │ ├── concurrentoperationrunner.h │ │ ├── constants.h │ │ ├── consumeoutputoperation.cpp │ │ ├── consumeoutputoperation.h │ │ ├── copydirectoryoperation.cpp │ │ ├── copydirectoryoperation.h │ │ ├── copyfiletask.cpp │ │ ├── copyfiletask.h │ │ ├── createdesktopentryoperation.cpp │ │ ├── createdesktopentryoperation.h │ │ ├── createlinkoperation.cpp │ │ ├── createlinkoperation.h │ │ ├── createlocalrepositoryoperation.cpp │ │ ├── createlocalrepositoryoperation.h │ │ ├── createshortcutoperation.cpp │ │ ├── createshortcutoperation.h │ │ ├── directoryguard.cpp │ │ ├── directoryguard.h │ │ ├── downloadarchivesjob.cpp │ │ ├── downloadarchivesjob.h │ │ ├── downloadfiletask.cpp │ │ ├── downloadfiletask.h │ │ ├── downloadfiletask_p.h │ │ ├── elevatedexecuteoperation.cpp │ │ ├── elevatedexecuteoperation.h │ │ ├── environmentvariablesoperation.cpp │ │ ├── environmentvariablesoperation.h │ │ ├── errors.cpp │ │ ├── errors.h │ │ ├── extractarchiveoperation.cpp │ │ ├── extractarchiveoperation.h │ │ ├── extractarchiveoperation_p.h │ │ ├── fakestopprocessforupdateoperation.cpp │ │ ├── fakestopprocessforupdateoperation.h │ │ ├── fileguard.cpp │ │ ├── fileguard.h │ │ ├── fileio.cpp │ │ ├── fileio.h │ │ ├── fileutils.cpp │ │ ├── fileutils.h │ │ ├── fileutils_mac.mm │ │ ├── genericdatacache.cpp │ │ ├── genericdatacache.h │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── globalsettingsoperation.cpp │ │ ├── globalsettingsoperation.h │ │ ├── graph.cpp │ │ ├── graph.h │ │ ├── horizontalruler.cpp │ │ ├── horizontalruler.h │ │ ├── init.cpp │ │ ├── init.h │ │ ├── installer.pro │ │ ├── installer_global.h │ │ ├── installercalculator.cpp │ │ ├── installercalculator.h │ │ ├── installiconsoperation.cpp │ │ ├── installiconsoperation.h │ │ ├── keepaliveobject.cpp │ │ ├── keepaliveobject.h │ │ ├── lib7z_create.h │ │ ├── lib7z_extract.h │ │ ├── lib7z_facade.cpp │ │ ├── lib7z_facade.h │ │ ├── lib7z_guid.h │ │ ├── lib7z_list.h │ │ ├── lib7zarchive.cpp │ │ ├── lib7zarchive.h │ │ ├── libarchivearchive.cpp │ │ ├── libarchivearchive.h │ │ ├── libarchivewrapper.cpp │ │ ├── libarchivewrapper.h │ │ ├── libarchivewrapper_p.cpp │ │ ├── libarchivewrapper_p.h │ │ ├── licenseoperation.cpp │ │ ├── licenseoperation.h │ │ ├── linereplaceoperation.cpp │ │ ├── linereplaceoperation.h │ │ ├── link.cpp │ │ ├── link.h │ │ ├── loggingutils.cpp │ │ ├── loggingutils.h │ │ ├── messageboxhandler.cpp │ │ ├── messageboxhandler.h │ │ ├── metadata.cpp │ │ ├── metadata.h │ │ ├── metadatacache.cpp │ │ ├── metadatacache.h │ │ ├── metadatajob.cpp │ │ ├── metadatajob.h │ │ ├── metadatajob_p.h │ │ ├── minimumprogressoperation.cpp │ │ ├── minimumprogressoperation.h │ │ ├── observer.cpp │ │ ├── observer.h │ │ ├── operationtracer.cpp │ │ ├── operationtracer.h │ │ ├── packagemanagercore.cpp │ │ ├── packagemanagercore.h │ │ ├── packagemanagercore_p.cpp │ │ ├── packagemanagercore_p.h │ │ ├── packagemanagercoredata.cpp │ │ ├── packagemanagercoredata.h │ │ ├── packagemanagergui.cpp │ │ ├── packagemanagergui.h │ │ ├── packagemanagerpagefactory.cpp │ │ ├── packagemanagerpagefactory.h │ │ ├── packagemanagerproxyfactory.cpp │ │ ├── packagemanagerproxyfactory.h │ │ ├── packagesource.cpp │ │ ├── packagesource.h │ │ ├── performinstallationform.cpp │ │ ├── performinstallationform.h │ │ ├── permissionsettings.cpp │ │ ├── permissionsettings.h │ │ ├── productkeycheck.cpp │ │ ├── productkeycheck.h │ │ ├── progresscoordinator.cpp │ │ ├── progresscoordinator.h │ │ ├── protocol.cpp │ │ ├── protocol.h │ │ ├── proxycredentialsdialog.cpp │ │ ├── proxycredentialsdialog.h │ │ ├── proxycredentialsdialog.ui │ │ ├── qinstallerglobal.cpp │ │ ├── qinstallerglobal.h │ │ ├── qprocesswrapper.cpp │ │ ├── qprocesswrapper.h │ │ ├── qsettingswrapper.cpp │ │ ├── qsettingswrapper.h │ │ ├── qtpatch.cpp │ │ ├── qtpatch.h │ │ ├── range.h │ │ ├── registerfiletypeoperation.cpp │ │ ├── registerfiletypeoperation.h │ │ ├── remoteclient.cpp │ │ ├── remoteclient.h │ │ ├── remoteclient_p.h │ │ ├── remotefileengine.cpp │ │ ├── remotefileengine.h │ │ ├── remoteobject.cpp │ │ ├── remoteobject.h │ │ ├── remoteserver.cpp │ │ ├── remoteserver.h │ │ ├── remoteserver_p.h │ │ ├── remoteserverconnection.cpp │ │ ├── remoteserverconnection.h │ │ ├── remoteserverconnection_p.h │ │ ├── replaceoperation.cpp │ │ ├── replaceoperation.h │ │ ├── repository.cpp │ │ ├── repository.h │ │ ├── repositorycategory.cpp │ │ ├── repositorycategory.h │ │ ├── resources │ │ │ ├── files-to-patch-macx-emb-arm-qt5 │ │ │ ├── install.png │ │ │ ├── installer.icns │ │ │ ├── installer.ico │ │ │ ├── installer.png │ │ │ ├── installer.qrc │ │ │ ├── keepinstalled.png │ │ │ ├── keepuninstalled.png │ │ │ ├── qt │ │ │ │ └── etc │ │ │ │ │ └── qt.conf │ │ │ ├── search.png │ │ │ ├── search@2x.png │ │ │ └── uninstall.png │ │ ├── runextensions.h │ │ ├── scriptengine.cpp │ │ ├── scriptengine.h │ │ ├── scriptengine_p.h │ │ ├── selfrestartoperation.cpp │ │ ├── selfrestartoperation.h │ │ ├── serverauthenticationdialog.cpp │ │ ├── serverauthenticationdialog.h │ │ ├── serverauthenticationdialog.ui │ │ ├── settings.cpp │ │ ├── settings.h │ │ ├── settingsoperation.cpp │ │ ├── settingsoperation.h │ │ ├── simplemovefileoperation.cpp │ │ ├── simplemovefileoperation.h │ │ ├── spacewidget.cpp │ │ ├── spacewidget.h │ │ ├── sysinfo_win.cpp │ │ ├── systeminfo.cpp │ │ ├── systeminfo.h │ │ ├── testrepository.cpp │ │ ├── testrepository.h │ │ ├── uninstallercalculator.cpp │ │ ├── uninstallercalculator.h │ │ ├── unziptask.cpp │ │ ├── unziptask.h │ │ ├── utils.cpp │ │ └── utils.h │ ├── kdtools │ │ ├── LICENSE.LGPL │ │ ├── authenticationdialog.ui │ │ ├── environment.cpp │ │ ├── environment.h │ │ ├── filedownloader.cpp │ │ ├── filedownloader.h │ │ ├── filedownloader_p.h │ │ ├── filedownloaderfactory.cpp │ │ ├── filedownloaderfactory.h │ │ ├── genericfactory.cpp │ │ ├── genericfactory.h │ │ ├── job.cpp │ │ ├── job.h │ │ ├── kdsysinfo_win.cpp │ │ ├── kdtools.pri │ │ ├── kdtoolsglobal.h │ │ ├── localpackagehub.cpp │ │ ├── localpackagehub.h │ │ ├── lockfile.cpp │ │ ├── lockfile.h │ │ ├── lockfile_p.h │ │ ├── lockfile_unix.cpp │ │ ├── lockfile_win.cpp │ │ ├── runoncechecker.cpp │ │ ├── runoncechecker.h │ │ ├── selfrestarter.cpp │ │ ├── selfrestarter.h │ │ ├── sysinfo.cpp │ │ ├── sysinfo.h │ │ ├── sysinfo_mac.cpp │ │ ├── sysinfo_x11.cpp │ │ ├── task.cpp │ │ ├── task.h │ │ ├── update.cpp │ │ ├── update.h │ │ ├── updatefinder.cpp │ │ ├── updatefinder.h │ │ ├── updateoperation.cpp │ │ ├── updateoperation.h │ │ ├── updateoperationfactory.cpp │ │ ├── updateoperationfactory.h │ │ ├── updateoperations.cpp │ │ ├── updateoperations.h │ │ ├── updater.cpp │ │ ├── updater.h │ │ ├── updatesinfo.cpp │ │ ├── updatesinfo_p.h │ │ └── updatesinfodata_p.h │ └── libs.pro ├── sdk │ ├── aboutapplicationdialog.cpp │ ├── aboutapplicationdialog.h │ ├── commandlineinterface.cpp │ ├── commandlineinterface.h │ ├── installerbase.cpp │ ├── installerbase.h │ ├── installerbase.ico │ ├── installerbase.manifest │ ├── installerbase.rc │ ├── installerbasecommons.cpp │ ├── installerbasecommons.h │ ├── main.cpp │ ├── sdk.pro │ ├── sdkapp.h │ ├── settingsdialog.cpp │ ├── settingsdialog.h │ ├── settingsdialog.ui │ ├── tabcontroller.cpp │ ├── tabcontroller.h │ └── translations │ │ ├── README │ │ ├── ifw_ar.ts │ │ ├── ifw_ca.ts │ │ ├── ifw_da.ts │ │ ├── ifw_de.ts │ │ ├── ifw_es.ts │ │ ├── ifw_fr.ts │ │ ├── ifw_hr.ts │ │ ├── ifw_hu.ts │ │ ├── ifw_it.ts │ │ ├── ifw_ja.ts │ │ ├── ifw_ko.ts │ │ ├── ifw_pl.ts │ │ ├── ifw_pt_BR.ts │ │ ├── ifw_pt_PT.ts │ │ ├── ifw_ru.ts │ │ ├── ifw_sv.ts │ │ ├── ifw_zh_CN.ts │ │ └── translations.pro └── src.pro ├── sync.profile ├── tests ├── README ├── auto │ ├── auto.pro │ ├── installer │ │ ├── appendfileoperation │ │ │ ├── appendfileoperation.pro │ │ │ ├── data │ │ │ │ ├── repository │ │ │ │ │ ├── A │ │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── xmloperationrepository │ │ │ │ │ ├── A │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── settings.qrc │ │ │ └── tst_appendfileoperation.cpp │ │ ├── archivefactory │ │ │ ├── archivefactory.pro │ │ │ └── tst_archivefactory.cpp │ │ ├── binaryformat │ │ │ ├── binaryformat.pro │ │ │ └── tst_binaryformat.cpp │ │ ├── brokeninstaller │ │ │ ├── brokeninstaller.pro │ │ │ ├── components.qrc │ │ │ ├── data │ │ │ │ ├── broken_script.qs │ │ │ │ └── updates.xml │ │ │ └── tst_brokeninstaller.cpp │ │ ├── clientserver │ │ │ ├── clientserver.pro │ │ │ └── tst_clientserver.cpp │ │ ├── commandlineinstall │ │ │ ├── commandlineinstall.pro │ │ │ ├── data │ │ │ │ ├── components.xml │ │ │ │ ├── componentsFromInstallPackagesRepository.xml │ │ │ │ ├── config.xml │ │ │ │ ├── filequeryrepository │ │ │ │ │ ├── A │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ ├── installPackagesDependencyChanged │ │ │ │ │ ├── Updates.xml │ │ │ │ │ ├── componentA │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentB │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentC │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentD │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ └── componentH │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ ├── installPackagesRepository │ │ │ │ │ ├── Updates.xml │ │ │ │ │ ├── componentA │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentB │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentC │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentD │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentE │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent1.subsubcomponent1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent1.subsubcomponent2 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent2.subsubcomponent1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent2.subsubcomponent2 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent2 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentG │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentH │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentI │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ └── componentJ │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ ├── repository │ │ │ │ │ └── Updates.xml │ │ │ │ └── uninstallableComponentsRepository │ │ │ │ │ └── Updates.xml │ │ │ ├── settings.qrc │ │ │ └── tst_commandlineinstall.cpp │ │ ├── commandlineupdate │ │ │ ├── commandlineupdate.pro │ │ │ ├── data │ │ │ │ ├── config.xml │ │ │ │ ├── installPackagesRepository │ │ │ │ │ ├── Updates.xml │ │ │ │ │ ├── componentA │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentB │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentC │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentD │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentE │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent1.subsubcomponent1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent1.subsubcomponent2 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent2.subsubcomponent1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent2.subsubcomponent2 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent2 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentG │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentH │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── qt.tools.qtcreator.enterprise.plugins │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ └── qt.tools.qtcreator │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ ├── installPackagesRepositoryUpdate │ │ │ │ │ ├── Updates.xml │ │ │ │ │ ├── componentA │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentB │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentC │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentD │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentE │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent1.subsubcomponent1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent1.subsubcomponent2 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent2.subsubcomponent1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent2.subsubcomponent2 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent2 │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentF │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentG │ │ │ │ │ │ ├── 2.0.0content.7z │ │ │ │ │ │ └── 2.0.0meta.7z │ │ │ │ │ └── componentH │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ ├── installPackagesRepositoryUpdateWithEssential │ │ │ │ │ ├── Updates.xml │ │ │ │ │ ├── componentA │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentB │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentC │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentD │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentE │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent1.subsubcomponent1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent1.subsubcomponent2 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent2.subsubcomponent1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent2.subsubcomponent2 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentF.subcomponent2 │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentF │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── componentG │ │ │ │ │ │ ├── 2.0.0content.7z │ │ │ │ │ │ └── 2.0.0meta.7z │ │ │ │ │ └── componentH │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ ├── repositoryUpdateWithReplacements │ │ │ │ │ ├── Updates.xml │ │ │ │ │ ├── qt.tools.qtcreator │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── qt.tools.qtcreator_gui.enterprise.plugins │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ └── qt.tools.qtcreator_gui │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ └── repositoryWithDependencyToEssential │ │ │ │ │ ├── Updates.xml │ │ │ │ │ ├── componentA │ │ │ │ │ └── 3.0.0content.7z │ │ │ │ │ └── componentAutoDependOnA │ │ │ │ │ └── 1.0content.7z │ │ │ ├── settings.qrc │ │ │ └── tst_commandlineupdate.cpp │ │ ├── compareversion │ │ │ ├── compareversion.pro │ │ │ └── tst_compareversion.cpp │ │ ├── componentalias │ │ │ ├── componentalias.pro │ │ │ ├── data │ │ │ │ ├── aliases-optional.xml │ │ │ │ ├── aliases-priority.xml │ │ │ │ ├── aliases-versions.xml │ │ │ │ ├── aliases.json │ │ │ │ └── repository │ │ │ │ │ └── Updates.xml │ │ │ ├── metadata │ │ │ │ └── installer-config │ │ │ │ │ ├── aliases.xml │ │ │ │ │ └── config.xml │ │ │ ├── settings.qrc │ │ │ └── tst_componentalias.cpp │ │ ├── componentidentifier │ │ │ ├── componentidentifier.pro │ │ │ └── tst_componentidentifier.cpp │ │ ├── componentmodel │ │ │ ├── componentmodel.pro │ │ │ ├── components.qrc │ │ │ ├── data │ │ │ │ └── updates.xml │ │ │ └── tst_componentmodel.cpp │ │ ├── componentreplace │ │ │ ├── componentreplace.pro │ │ │ ├── data │ │ │ │ ├── installPackagesRepository │ │ │ │ │ ├── A.sub1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── A │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── B.sub1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── B │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── C │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ └── Updates.xml │ │ │ │ ├── repositoryWithMultiReplace │ │ │ │ │ ├── A.sub1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── A │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── B.sub1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── B │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ └── Updates.xml │ │ │ │ ├── repositoryWithMultiReplaceInUpdate │ │ │ │ │ ├── A.sub1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── A │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── B.sub1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── B │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── C │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ └── Updates.xml │ │ │ │ ├── repositoryWithReplace │ │ │ │ │ ├── A.sub1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── A │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── B.sub1 │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── B │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── repositoryWithUpdateToReplaceble │ │ │ │ │ ├── A.sub1 │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── A │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ ├── B.sub1 │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── B │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── settings.qrc │ │ │ └── tst_componentreplace.cpp │ │ ├── consumeoutputoperationtest │ │ │ ├── consumeoutputoperationtest.pro │ │ │ ├── data │ │ │ │ └── repository │ │ │ │ │ ├── A │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── settings.qrc │ │ │ └── tst_consumeoutputoperationtest.cpp │ │ ├── contentsha1check │ │ │ ├── contentsha1check.pro │ │ │ ├── data │ │ │ │ ├── config.xml │ │ │ │ ├── repositorywithchecksumcheck │ │ │ │ │ ├── A │ │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ │ └── 1.0.2-1content.7z.sha1 │ │ │ │ │ ├── B │ │ │ │ │ │ ├── 1.0.0-1content.7z │ │ │ │ │ │ ├── 1.0.0-1content.7z.sha1 │ │ │ │ │ │ └── 1.0.0-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ ├── repositorywithinvalidchecksum │ │ │ │ │ ├── E │ │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ │ ├── 1.0.2-1content.7z.sha1 │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ ├── F │ │ │ │ │ │ ├── 1.0.0-1content.7z │ │ │ │ │ │ ├── 1.0.0-1content.7z.sha1 │ │ │ │ │ │ └── 1.0.0-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── repositorywithnochecksumcheck │ │ │ │ │ ├── C │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ ├── D │ │ │ │ │ ├── 1.0.0-1content.7z │ │ │ │ │ └── 1.0.0-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── settings.qrc │ │ │ └── tst_contentsha1check.cpp │ │ ├── contentshaupdate │ │ │ ├── contentshaupdate.pro │ │ │ ├── data │ │ │ │ ├── repository │ │ │ │ │ ├── Updates.xml │ │ │ │ │ ├── componentA │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentB │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ ├── componentC │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ └── componentD │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ ├── repositoryUpdate │ │ │ │ │ ├── Updates.xml │ │ │ │ │ ├── componentA │ │ │ │ │ │ └── 0.1.0content.7z │ │ │ │ │ ├── componentB │ │ │ │ │ │ └── 0.1.0content.7z │ │ │ │ │ ├── componentC │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ │ └── componentD │ │ │ │ │ │ └── 2.0.0content.7z │ │ │ │ ├── repositoryUpdateWithEssential │ │ │ │ │ ├── Updates.xml │ │ │ │ │ ├── componentA │ │ │ │ │ │ └── 0.1.0content.7z │ │ │ │ │ └── componentEssential │ │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ └── repositoryWithEssential │ │ │ │ │ ├── Updates.xml │ │ │ │ │ ├── componentA │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ └── componentEssential │ │ │ │ │ └── 2.0.0content.7z │ │ │ ├── settings.qrc │ │ │ └── tst_contentshaupdate.cpp │ │ ├── copydirectoryoperation │ │ │ ├── copydirectoryoperation.pro │ │ │ ├── data │ │ │ │ ├── repository │ │ │ │ │ ├── A │ │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── xmloperationrepository │ │ │ │ │ ├── A │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── settings.qrc │ │ │ └── tst_copydirectoryoperation.cpp │ │ ├── copyoperationtest │ │ │ ├── copyoperationtest.pro │ │ │ ├── data │ │ │ │ ├── repository │ │ │ │ │ ├── A │ │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── xmloperationrepository │ │ │ │ │ ├── A │ │ │ │ │ └── 1.0.2-1content.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── settings.qrc │ │ │ └── tst_copyoperationtest.cpp │ │ ├── createdesktopentryoperation │ │ │ ├── createdesktopentryoperation.pro │ │ │ ├── data │ │ │ │ ├── repository │ │ │ │ │ ├── A │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── xmloperationrepository │ │ │ │ │ └── Updates.xml │ │ │ ├── settings.qrc │ │ │ └── tst_createdesktopentryoperation.cpp │ │ ├── createoffline │ │ │ ├── createoffline.pro │ │ │ ├── data │ │ │ │ ├── repository-bothmeta-license │ │ │ │ │ ├── 2020-12-01-1511_meta.7z │ │ │ │ │ ├── Updates.xml │ │ │ │ │ └── org.qtproject.ifw.example.licenseagreement │ │ │ │ │ │ ├── 1.0.0-1content.7z │ │ │ │ │ │ ├── 1.0.0-1content.7z.sha1 │ │ │ │ │ │ └── 1.0.0-1meta.7z │ │ │ │ ├── repository-bothmeta-userinteface │ │ │ │ │ ├── 2020-12-01-1524_meta.7z │ │ │ │ │ ├── Updates.xml │ │ │ │ │ └── or.qtproject.ifw.example.openreadme │ │ │ │ │ │ ├── 1.0.0-1content.7z │ │ │ │ │ │ ├── 1.0.0-1content.7z.sha1 │ │ │ │ │ │ └── 1.0.0-1meta.7z │ │ │ │ ├── repository-componentmeta-emptymetafile │ │ │ │ │ ├── A │ │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ │ ├── 1.0.2-1content.7z.sha1 │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ ├── repository-componentmeta-script │ │ │ │ │ ├── Updates.xml │ │ │ │ │ └── org.qtproject.ifw.example │ │ │ │ │ │ ├── 1.0.0-1content.7z │ │ │ │ │ │ ├── 1.0.0-1content.7z.sha1 │ │ │ │ │ │ └── 1.0.0-1meta.7z │ │ │ │ ├── repository-missingdependency │ │ │ │ │ └── Updates.xml │ │ │ │ └── repository-unifiedmeta-script │ │ │ │ │ ├── 2020-12-01-1519_meta.7z │ │ │ │ │ ├── Updates.xml │ │ │ │ │ └── org.qtproject.ifw.example │ │ │ │ │ ├── 1.0.0-1content.7z │ │ │ │ │ └── 1.0.0-1content.7z.sha1 │ │ │ ├── settings.qrc │ │ │ └── tst_createoffline.cpp │ │ ├── createshortcutoperation │ │ │ ├── createshortcutoperation.pro │ │ │ ├── data │ │ │ │ ├── repository │ │ │ │ │ ├── A │ │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── xmloperationrepository │ │ │ │ │ ├── A │ │ │ │ │ └── 1.0.2-1content.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── installer-config │ │ │ │ └── config.xml │ │ │ ├── settings.qrc │ │ │ └── tst_createshortcutoperation.cpp │ │ ├── deleteoperation │ │ │ ├── data │ │ │ │ ├── repository │ │ │ │ │ ├── A │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── xmloperationrepository │ │ │ │ │ └── Updates.xml │ │ │ ├── deleteoperation.pro │ │ │ ├── settings.qrc │ │ │ └── tst_deleteoperation.cpp │ │ ├── elevatedexecuteoperation │ │ │ ├── elevatedexecuteoperation.pro │ │ │ └── tst_elevatedexecuteoperation.cpp │ │ ├── environmentvariableoperation │ │ │ ├── data │ │ │ │ ├── repository │ │ │ │ │ ├── A │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── xmloperationrepository │ │ │ │ │ └── Updates.xml │ │ │ ├── environmentvariableoperation.pro │ │ │ ├── settings.qrc │ │ │ └── tst_environmentvariableoperation.cpp │ │ ├── extractarchiveoperationtest │ │ │ ├── data.qrc │ │ │ ├── data │ │ │ │ ├── installerbaserepository │ │ │ │ │ ├── A │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ └── 1.0.0installerbase.7z │ │ │ │ │ └── Updates.xml │ │ │ │ ├── invalid.7z │ │ │ │ ├── subdirs.7z │ │ │ │ ├── valid.7z │ │ │ │ └── xmloperationrepository │ │ │ │ │ ├── A │ │ │ │ │ ├── 1.0.0anothercontent.7z │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ ├── 1.0.0content1.tar.gz │ │ │ │ │ ├── 1.0.0content2.tar.bz2 │ │ │ │ │ ├── 1.0.0content3.tar.xz │ │ │ │ │ ├── 1.0.0content4.zip │ │ │ │ │ └── 1.0.0default.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── extractarchiveoperationtest.pro │ │ │ └── tst_extractarchiveoperationtest.cpp │ │ ├── factory │ │ │ ├── factory.pro │ │ │ └── tst_factory.cpp │ │ ├── fakestopprocessforupdateoperation │ │ │ ├── fakestopprocessforupdateoperation.pro │ │ │ └── tst_fakestopprocessforupdateoperation.cpp │ │ ├── fileutils │ │ │ ├── fileutils.pro │ │ │ └── tst_fileutils.cpp │ │ ├── globalsettingsoperation │ │ │ ├── globalsettingsoperation.pro │ │ │ └── tst_globalsettingsoperation.cpp │ │ ├── installer.pro │ │ ├── installiconsoperation │ │ │ ├── data │ │ │ │ ├── repository │ │ │ │ │ ├── A │ │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── xmloperationrepository │ │ │ │ │ ├── A │ │ │ │ │ └── 1.0.2-1content.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── installiconsoperation.pro │ │ │ ├── settings.qrc │ │ │ └── tst_installiconsoperation.cpp │ │ ├── lib7zarchive │ │ │ ├── data.qrc │ │ │ ├── data │ │ │ │ ├── invalid.7z │ │ │ │ └── valid.7z │ │ │ ├── lib7zarchive.pro │ │ │ └── tst_lib7zarchive.cpp │ │ ├── libarchivearchive │ │ │ ├── data.qrc │ │ │ ├── data │ │ │ │ ├── valid.7z │ │ │ │ ├── valid.qbsp │ │ │ │ ├── valid.tar.bz2 │ │ │ │ ├── valid.tar.gz │ │ │ │ ├── valid.tar.xz │ │ │ │ └── valid.zip │ │ │ ├── libarchivearchive.pro │ │ │ └── tst_libarchivearchive.cpp │ │ ├── licenseagreement │ │ │ ├── data │ │ │ │ └── repository │ │ │ │ │ ├── A │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── licenseagreement.pro │ │ │ ├── settings.qrc │ │ │ └── tst_licenseagreement.cpp │ │ ├── linereplaceoperation │ │ │ ├── data │ │ │ │ ├── repository │ │ │ │ │ ├── A │ │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ │ ├── 1.0.2-1content.7z.sha1 │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── xmloperationrepository │ │ │ │ │ ├── A │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ └── 1.0.2-1content.7z.sha1 │ │ │ │ │ └── Updates.xml │ │ │ ├── linereplaceoperation.pro │ │ │ ├── settings.qrc │ │ │ └── tst_linereplaceoperation.cpp │ │ ├── messageboxhandler │ │ │ ├── data │ │ │ │ ├── invalidhash │ │ │ │ │ ├── B │ │ │ │ │ │ ├── 1.0.0-1content.7z │ │ │ │ │ │ └── 1.0.0-1content.7z.sha1 │ │ │ │ │ └── Updates.xml │ │ │ │ ├── invalidoperation │ │ │ │ │ ├── A │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ ├── messagebox │ │ │ │ │ ├── A │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── missingarchive │ │ │ │ │ ├── C │ │ │ │ │ └── 1.0.0content.7z.sha1 │ │ │ │ │ └── Updates.xml │ │ │ ├── messageboxhandler.pro │ │ │ ├── settings.qrc │ │ │ └── tst_messageboxhandler.cpp │ │ ├── metadatacache │ │ │ ├── data │ │ │ │ ├── existing-cache │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── placeholder_sha1 │ │ │ │ │ │ ├── Updates.xml │ │ │ │ │ │ └── repository.txt │ │ │ │ └── local-temp-repository │ │ │ │ │ ├── A │ │ │ │ │ └── example-license.txt │ │ │ │ │ └── Updates.xml │ │ │ ├── metadatacache.pro │ │ │ ├── settings.qrc │ │ │ └── tst_metadatacache.cpp │ │ ├── metadatajob │ │ │ ├── data │ │ │ │ ├── repository │ │ │ │ │ ├── C │ │ │ │ │ │ ├── 1.0.0-1content.7z │ │ │ │ │ │ ├── 1.0.0-1content.7z.sha1 │ │ │ │ │ │ └── 1.0.0-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ ├── repository7zInvalidMetaSha1 │ │ │ │ │ └── repository7zInvalidMetaSha1.7z │ │ │ │ ├── repositoryActionAdd │ │ │ │ │ ├── A │ │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ │ ├── 1.0.2-1content.7z.sha1 │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ ├── B │ │ │ │ │ │ ├── 1.0.0-1content.7z │ │ │ │ │ │ ├── 1.0.0-1content.7z.sha1 │ │ │ │ │ │ └── 1.0.0-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ ├── repositoryActionRemove │ │ │ │ │ ├── C │ │ │ │ │ │ ├── 1.0.0-1content.7z │ │ │ │ │ │ ├── 1.0.0-1content.7z.sha1 │ │ │ │ │ │ └── 1.0.0-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── repositoryZipped │ │ │ │ │ └── repositoryZipped.7z │ │ │ ├── metadatajob.pro │ │ │ ├── settings.qrc │ │ │ └── tst_metadatajob.cpp │ │ ├── mkdiroperationtest │ │ │ ├── mkdiroperationtest.pro │ │ │ └── tst_mkdiroperationtest.cpp │ │ ├── moveoperation │ │ │ ├── data │ │ │ │ ├── repository │ │ │ │ │ ├── A │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── xmloperationrepository │ │ │ │ │ └── Updates.xml │ │ │ ├── moveoperation.pro │ │ │ ├── settings.qrc │ │ │ └── tst_moveoperation.cpp │ │ ├── packagemanagercore │ │ │ ├── installer-config │ │ │ │ └── config.xml │ │ │ ├── packagemanagercore.pro │ │ │ ├── settings.qrc │ │ │ └── tst_packagemanagercore.cpp │ │ ├── prependfileoperation │ │ │ ├── data │ │ │ │ ├── repository │ │ │ │ │ ├── B │ │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ │ └── xmloperationrepository │ │ │ │ │ ├── C │ │ │ │ │ └── 1.0.0content.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── prependfileoperation.pro │ │ │ ├── settings.qrc │ │ │ └── tst_prependfileoperation.cpp │ │ ├── registerfiletypeoperation │ │ │ ├── data │ │ │ │ └── repository │ │ │ │ │ ├── A │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── registerfiletypeoperation.pro │ │ │ ├── settings.qrc │ │ │ └── tst_registerfiletypeoperation.cpp │ │ ├── replaceoperation │ │ │ ├── data │ │ │ │ └── repository │ │ │ │ │ ├── A │ │ │ │ │ ├── 1.0.2-1content.7z │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── replaceoperation.pro │ │ │ ├── settings.qrc │ │ │ └── tst_replaceoperation.cpp │ │ ├── repository │ │ │ ├── data │ │ │ │ ├── compressedRepository │ │ │ │ │ └── compressedRepository.7z │ │ │ │ └── repository │ │ │ │ │ ├── A │ │ │ │ │ ├── 1.0.2content.7z │ │ │ │ │ └── 1.0.2meta.7z │ │ │ │ │ ├── B │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── C │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── repository.pro │ │ │ ├── settings.qrc │ │ │ └── tst_repository.cpp │ │ ├── rmdiroperationtest │ │ │ ├── rmdiroperationtest.pro │ │ │ └── tst_rmdiroperationtest.cpp │ │ ├── scriptengine │ │ │ ├── data │ │ │ │ ├── addOperation.qs │ │ │ │ ├── auto-install.qs │ │ │ │ ├── broken_connect.qs │ │ │ │ ├── component1.qs │ │ │ │ ├── component2.qs │ │ │ │ ├── dynamicpage.qs │ │ │ │ ├── enteringpage.qs │ │ │ │ ├── form.ui │ │ │ │ └── userinterface.qs │ │ │ ├── scriptengine.pro │ │ │ ├── scriptengine.qrc │ │ │ └── tst_scriptengine.cpp │ │ ├── settings │ │ │ ├── data │ │ │ │ ├── empty_config.xml │ │ │ │ ├── full_config.xml │ │ │ │ ├── length_units_invalid.xml │ │ │ │ ├── length_units_valid_em.xml │ │ │ │ ├── length_units_valid_ex.xml │ │ │ │ ├── length_units_valid_px.xml │ │ │ │ ├── malformed_config.xml │ │ │ │ ├── minimal_config.xml │ │ │ │ ├── minimal_config_tag_defaults.xml │ │ │ │ ├── tutorial_config.xml │ │ │ │ ├── unexpectedattribute_config.xml │ │ │ │ ├── unexpectedtag_config.xml │ │ │ │ └── unknown_element_config.xml │ │ │ ├── settings.pro │ │ │ ├── settings.qrc │ │ │ └── tst_settings.cpp │ │ ├── settingsoperation │ │ │ ├── data │ │ │ │ └── repository │ │ │ │ │ ├── A │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ ├── B │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── C │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── settings.qrc │ │ │ ├── settingsoperation.pro │ │ │ └── tst_settingsoperation.cpp │ │ ├── shared │ │ │ ├── config.qrc │ │ │ ├── installer-config │ │ │ │ └── config.xml │ │ │ ├── packagemanager.h │ │ │ └── verifyinstaller.h │ │ ├── simplemovefileoperation │ │ │ ├── data │ │ │ │ └── repository │ │ │ │ │ ├── A │ │ │ │ │ └── 1.0.2-1meta.7z │ │ │ │ │ └── Updates.xml │ │ │ ├── settings.qrc │ │ │ ├── simplemovefileoperation.pro │ │ │ └── tst_simplemovefileoperation.cpp │ │ ├── solver │ │ │ ├── solver.pro │ │ │ └── tst_solver.cpp │ │ ├── task │ │ │ ├── task.pro │ │ │ └── tst_task.cpp │ │ ├── treename │ │ │ ├── data │ │ │ │ ├── components.xml │ │ │ │ ├── invalid_repository │ │ │ │ │ └── Updates.xml │ │ │ │ ├── repository │ │ │ │ │ ├── Updates.xml │ │ │ │ │ ├── componentA.sub1 │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentA.sub2 │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentA │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentB.sub1.sub1 │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentB.sub1.sub2 │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentB.sub1 │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentB.sub2 │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentB │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentC │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ └── componentD │ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ └── repository_children │ │ │ │ │ ├── Updates.xml │ │ │ │ │ ├── componentA.subcomponent1 │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentA │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentB │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentE │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentF.subcomponent1.subsubcomponent1 │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentF.subcomponent1.subsubcomponent2 │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentF.subcomponent1 │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentF.subcomponent2.subsubcomponent1 │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentF.subcomponent2.subsubcomponent2 │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentF.subcomponent2 │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentF │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentH.subcomponent1 │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentH │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentI.subcomponent1 │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentI.subcomponent2 │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentJ.subcomponent1 │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ ├── componentJ │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ │ └── componentK │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ └── 1.0.0meta.7z │ │ │ ├── settings.qrc │ │ │ ├── treename.pro │ │ │ └── tst_treename.cpp │ │ └── unicodeexecutable │ │ │ ├── main.c │ │ │ ├── stringdata.h │ │ │ └── unicodeexecutable.pro │ ├── qttest.pri │ └── tools │ │ ├── repotest │ │ ├── packages │ │ │ ├── A │ │ │ │ ├── data │ │ │ │ │ └── A.txt │ │ │ │ └── meta │ │ │ │ │ ├── package.xml │ │ │ │ │ └── script1.0.0.qs │ │ │ └── B │ │ │ │ ├── data │ │ │ │ └── B.txt │ │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── packages_new │ │ │ └── C │ │ │ │ ├── data │ │ │ │ └── C.txt │ │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── packages_update │ │ │ ├── A │ │ │ │ ├── data │ │ │ │ │ └── A_update.txt │ │ │ │ └── meta │ │ │ │ │ ├── package.xml │ │ │ │ │ └── script2.0.0.qs │ │ │ └── B │ │ │ │ ├── data │ │ │ │ └── B_update.txt │ │ │ │ └── meta │ │ │ │ └── package.xml │ │ ├── repository_component │ │ │ ├── A │ │ │ │ ├── 2.0.0content.7z │ │ │ │ ├── 2.0.0content.7z.sha1 │ │ │ │ └── 2.0.0meta.7z │ │ │ ├── B │ │ │ │ ├── 1.0.0content.7z │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ └── 1.0.0meta.7z │ │ │ └── Updates.xml │ │ ├── repository_componentAndUnite │ │ │ ├── 2020-11-10-0816_meta.7z │ │ │ ├── A │ │ │ │ ├── 2.0.0content.7z │ │ │ │ ├── 2.0.0content.7z.sha1 │ │ │ │ └── 2.0.0meta.7z │ │ │ ├── C │ │ │ │ ├── 1.0.0content.7z │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ └── 1.0.0meta.7z │ │ │ └── Updates.xml │ │ ├── repository_unite │ │ │ ├── 2020-11-10-0931_meta.7z │ │ │ ├── A │ │ │ │ ├── 2.0.0content.7z │ │ │ │ └── 2.0.0content.7z.sha1 │ │ │ ├── C │ │ │ │ ├── 1.0.0content.7z │ │ │ │ └── 1.0.0content.7z.sha1 │ │ │ └── Updates.xml │ │ ├── repotest.pro │ │ ├── test_package_versions │ │ │ ├── repository_1 │ │ │ │ ├── A │ │ │ │ │ ├── 2.0.0content.7z │ │ │ │ │ ├── 2.0.0content.7z.sha1 │ │ │ │ │ └── 2.0.0meta.7z │ │ │ │ ├── B │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ └── Updates.xml │ │ │ ├── repository_2 │ │ │ │ ├── A │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ ├── B │ │ │ │ │ ├── 1.0.0content.7z │ │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ │ └── 1.0.0meta.7z │ │ │ │ └── Updates.xml │ │ │ └── repository_3 │ │ │ │ ├── A │ │ │ │ ├── 1.0.0content.7z │ │ │ │ ├── 1.0.0content.7z.sha1 │ │ │ │ └── 1.0.0meta.7z │ │ │ │ ├── B │ │ │ │ ├── 3.0.0content.7z │ │ │ │ ├── 3.0.0content.7z.sha1 │ │ │ │ └── 3.0.0meta.7z │ │ │ │ └── Updates.xml │ │ └── tst_repotest.cpp │ │ └── tools.pro ├── downloadspeed │ ├── downloadspeed.pro │ └── main.cpp ├── test-framework │ ├── README │ ├── checker │ │ ├── run.py │ │ ├── scripts │ │ │ └── generate-filelist.py │ │ └── testrunner │ │ │ ├── __init__.py │ │ │ ├── files.py │ │ │ ├── logger.py │ │ │ ├── registry.py │ │ │ ├── testexception.py │ │ │ └── testrunner.py │ ├── site │ │ ├── TestCases │ │ │ ├── testcase-linux64 │ │ │ │ ├── checker │ │ │ │ │ └── testinstall.filelist │ │ │ │ ├── testcase-linux64.cfg │ │ │ │ └── testscript.qs │ │ │ └── testcase1 │ │ │ │ ├── checker │ │ │ │ └── testinstall.filelist │ │ │ │ ├── testcase1.cfg │ │ │ │ └── testscript.qs │ │ ├── VMConfigs │ │ │ ├── LinuxUbuntu9.1064Bit.cfg │ │ │ ├── WindowsVista32Bit.cfg │ │ │ ├── WindowsVista64Bit.cfg │ │ │ ├── WindowsXp32Bit.cfg │ │ │ └── WindowsXp64Bit.cfg │ │ ├── host-config.cfg │ │ └── listVMs.sh │ ├── tests │ │ ├── simpletest.py │ │ └── testfiles │ │ │ └── test.filelist │ └── vmware │ │ ├── cdashreporter.py │ │ ├── control.py │ │ ├── ftpsource.py │ │ ├── guest.py │ │ ├── guestconfig.py │ │ ├── reporter.py │ │ ├── result.py │ │ ├── run-test.py │ │ ├── run.py │ │ ├── source.py │ │ ├── testcase.py │ │ ├── utils.py │ │ ├── virtualmachine.py │ │ └── xmlutils.py ├── test-installer │ ├── BatchSubstitute.bat │ ├── auto_installations_script.qs │ ├── create-test-installer.bat │ └── create-test-installer.sh ├── testcases │ ├── result-example.xml │ └── testcase1 │ │ ├── packagemanagement.qs │ │ ├── test-uninstall.qs │ │ ├── testcase1.cfg │ │ └── testscript.qs ├── testreturn │ ├── main.cpp │ └── testreturn.pro └── tests.pro └── tools ├── archivegen ├── archive.cpp └── archivegen.pro ├── binarycreator ├── binarycreator.pro └── main.cpp ├── build_installer.py ├── devtool ├── binarydump.cpp ├── binarydump.h ├── binaryreplace.cpp ├── binaryreplace.h ├── devtool.pro ├── main.cpp ├── operationrunner.cpp └── operationrunner.h ├── repocompare ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── repocompare.pro ├── repositorymanager.cpp └── repositorymanager.h ├── repogen ├── repogen.cpp └── repogen.pro └── tools.pro /.qmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/.qmake.conf -------------------------------------------------------------------------------- /.qt-license-check.exclude: -------------------------------------------------------------------------------- 1 | ^src/libs/7zip/ 2 | -------------------------------------------------------------------------------- /.qt-license-check.optional: -------------------------------------------------------------------------------- 1 | ^src/libs/kdtools/ 2 | -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | 11046d6f77ed2d59b7b1cdbae52f487304ce4f42 2 | -------------------------------------------------------------------------------- /3RDPARTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/3RDPARTY -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/Changelog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE.FDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/LICENSE.FDL -------------------------------------------------------------------------------- /LICENSE.GPL3-EXCEPT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/LICENSE.GPL3-EXCEPT -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/README -------------------------------------------------------------------------------- /dist/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/dist/README -------------------------------------------------------------------------------- /dist/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/dist/config/config.xml -------------------------------------------------------------------------------- /dist/config/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/dist/config/watermark.png -------------------------------------------------------------------------------- /dist/create_ifw_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/dist/create_ifw_installer.py -------------------------------------------------------------------------------- /dist/packages/org.qtproject.ifw/meta/3RDPARTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/dist/packages/org.qtproject.ifw/meta/3RDPARTY -------------------------------------------------------------------------------- /dist/packages/org.qtproject.ifw/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/dist/packages/org.qtproject.ifw/meta/package.xml -------------------------------------------------------------------------------- /doc/config/ifw.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/config/ifw.qdocconf -------------------------------------------------------------------------------- /doc/config/style/qt5-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/config/style/qt5-sidebar.html -------------------------------------------------------------------------------- /doc/doc.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/doc.pri -------------------------------------------------------------------------------- /doc/doc_targets.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/doc_targets.pri -------------------------------------------------------------------------------- /doc/examples/aliases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/examples/aliases.xml -------------------------------------------------------------------------------- /doc/examples/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/examples/config.xml -------------------------------------------------------------------------------- /doc/examples/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/examples/package.xml -------------------------------------------------------------------------------- /doc/fixnavi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/fixnavi.pl -------------------------------------------------------------------------------- /doc/ifw-online.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/ifw-online.qdocconf -------------------------------------------------------------------------------- /doc/ifw.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/ifw.qdocconf -------------------------------------------------------------------------------- /doc/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/arrow.png -------------------------------------------------------------------------------- /doc/images/build-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/build-32x32.png -------------------------------------------------------------------------------- /doc/images/demo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/demo-32x32.png -------------------------------------------------------------------------------- /doc/images/getting-started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/getting-started.png -------------------------------------------------------------------------------- /doc/images/ifw-add-components-introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-add-components-introduction.png -------------------------------------------------------------------------------- /doc/images/ifw-add-components-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-add-components-selection.png -------------------------------------------------------------------------------- /doc/images/ifw-installation-finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-installation-finished.png -------------------------------------------------------------------------------- /doc/images/ifw-installation.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-installation.webp -------------------------------------------------------------------------------- /doc/images/ifw-introduction-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-introduction-page.png -------------------------------------------------------------------------------- /doc/images/ifw-license-check-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-license-check-page.png -------------------------------------------------------------------------------- /doc/images/ifw-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-overview.png -------------------------------------------------------------------------------- /doc/images/ifw-perform-installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-perform-installation.png -------------------------------------------------------------------------------- /doc/images/ifw-perform-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-perform-update.png -------------------------------------------------------------------------------- /doc/images/ifw-ready-for-installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-ready-for-installation.png -------------------------------------------------------------------------------- /doc/images/ifw-ready-to-uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-ready-to-uninstall.png -------------------------------------------------------------------------------- /doc/images/ifw-ready-to-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-ready-to-update.png -------------------------------------------------------------------------------- /doc/images/ifw-removing-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-removing-components.png -------------------------------------------------------------------------------- /doc/images/ifw-repository-categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-repository-categories.png -------------------------------------------------------------------------------- /doc/images/ifw-select-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-select-components.png -------------------------------------------------------------------------------- /doc/images/ifw-settings-cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-settings-cache.png -------------------------------------------------------------------------------- /doc/images/ifw-settings-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-settings-network.png -------------------------------------------------------------------------------- /doc/images/ifw-settings-repositories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-settings-repositories.png -------------------------------------------------------------------------------- /doc/images/ifw-target-directory-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-target-directory-page.png -------------------------------------------------------------------------------- /doc/images/ifw-tutorial-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-tutorial-files.png -------------------------------------------------------------------------------- /doc/images/ifw-tutorial-introduction-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-tutorial-introduction-page.png -------------------------------------------------------------------------------- /doc/images/ifw-tutorial-license-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-tutorial-license-check.png -------------------------------------------------------------------------------- /doc/images/ifw-tutorial-select-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-tutorial-select-components.png -------------------------------------------------------------------------------- /doc/images/ifw-update-finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-update-finished.png -------------------------------------------------------------------------------- /doc/images/ifw-updating-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-updating-components.png -------------------------------------------------------------------------------- /doc/images/ifw-updating-introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-updating-introduction.png -------------------------------------------------------------------------------- /doc/images/ifw-user-flow-adding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-user-flow-adding.png -------------------------------------------------------------------------------- /doc/images/ifw-user-flow-installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-user-flow-installing.png -------------------------------------------------------------------------------- /doc/images/ifw-user-flow-removing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-user-flow-removing.png -------------------------------------------------------------------------------- /doc/images/ifw-user-flow-updating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-user-flow-updating.png -------------------------------------------------------------------------------- /doc/images/ifw-warning-existing-installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-warning-existing-installation.png -------------------------------------------------------------------------------- /doc/images/ifw-win-program-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/ifw-win-program-group.png -------------------------------------------------------------------------------- /doc/images/installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/installation.png -------------------------------------------------------------------------------- /doc/images/qt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/qt-logo.png -------------------------------------------------------------------------------- /doc/images/settings-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/settings-32x32.png -------------------------------------------------------------------------------- /doc/images/tutorials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/images/tutorials.png -------------------------------------------------------------------------------- /doc/installerfw-cpp-classes.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/installerfw-cpp-classes.qdoc -------------------------------------------------------------------------------- /doc/installerfw-examples.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/installerfw-examples.qdoc -------------------------------------------------------------------------------- /doc/installerfw-getting-started.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/installerfw-getting-started.qdoc -------------------------------------------------------------------------------- /doc/installerfw-overview.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/installerfw-overview.qdoc -------------------------------------------------------------------------------- /doc/installerfw-reference.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/installerfw-reference.qdoc -------------------------------------------------------------------------------- /doc/installerfw-using.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/installerfw-using.qdoc -------------------------------------------------------------------------------- /doc/installerfw.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/installerfw.qdoc -------------------------------------------------------------------------------- /doc/messageboxhandler.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/messageboxhandler.qdoc -------------------------------------------------------------------------------- /doc/noninteractive.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/noninteractive.qdoc -------------------------------------------------------------------------------- /doc/operations.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/operations.qdoc -------------------------------------------------------------------------------- /doc/scripting-api/buttons.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/scripting-api/buttons.qdoc -------------------------------------------------------------------------------- /doc/scripting-api/component.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/scripting-api/component.qdoc -------------------------------------------------------------------------------- /doc/scripting-api/console.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/scripting-api/console.qdoc -------------------------------------------------------------------------------- /doc/scripting-api/gui.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/scripting-api/gui.qdoc -------------------------------------------------------------------------------- /doc/scripting-api/packagemanagercore.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/scripting-api/packagemanagercore.qdoc -------------------------------------------------------------------------------- /doc/scripting-api/print.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/scripting-api/print.qdoc -------------------------------------------------------------------------------- /doc/scripting-api/qdesktopservices.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/scripting-api/qdesktopservices.qdoc -------------------------------------------------------------------------------- /doc/scripting-api/qfiledialog.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/scripting-api/qfiledialog.qdoc -------------------------------------------------------------------------------- /doc/scripting-api/qinstaller.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/scripting-api/qinstaller.qdoc -------------------------------------------------------------------------------- /doc/scripting-api/qsettings.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/scripting-api/qsettings.qdoc -------------------------------------------------------------------------------- /doc/scripting-qmlmodule.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/scripting-qmlmodule.qdoc -------------------------------------------------------------------------------- /doc/scripting.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/scripting.qdoc -------------------------------------------------------------------------------- /doc/systeminfo.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/systeminfo.qdoc -------------------------------------------------------------------------------- /doc/tutorial.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/doc/tutorial.qdoc -------------------------------------------------------------------------------- /examples/changeuserinterface/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/changeuserinterface/README -------------------------------------------------------------------------------- /examples/changeuserinterface/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/changeuserinterface/config/config.xml -------------------------------------------------------------------------------- /examples/componentalias/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/componentalias/README -------------------------------------------------------------------------------- /examples/componentalias/componentalias.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/componentalias/componentalias.pro -------------------------------------------------------------------------------- /examples/componentalias/config/aliases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/componentalias/config/aliases.xml -------------------------------------------------------------------------------- /examples/componentalias/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/componentalias/config/config.xml -------------------------------------------------------------------------------- /examples/componenterror/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/componenterror/README -------------------------------------------------------------------------------- /examples/componenterror/componenterror.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/componenterror/componenterror.pro -------------------------------------------------------------------------------- /examples/componenterror/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/componenterror/config/config.xml -------------------------------------------------------------------------------- /examples/dependencies/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/dependencies/README -------------------------------------------------------------------------------- /examples/dependencies/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/dependencies/config/config.xml -------------------------------------------------------------------------------- /examples/dependencies/dependencies.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/dependencies/dependencies.pro -------------------------------------------------------------------------------- /examples/doc/changeuserinterface.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/changeuserinterface.qdoc -------------------------------------------------------------------------------- /examples/doc/componentalias.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/componentalias.qdoc -------------------------------------------------------------------------------- /examples/doc/componenterror.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/componenterror.qdoc -------------------------------------------------------------------------------- /examples/doc/dependencies.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/dependencies.qdoc -------------------------------------------------------------------------------- /examples/doc/dynamicpage.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/dynamicpage.qdoc -------------------------------------------------------------------------------- /examples/doc/hidecheckbox.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/hidecheckbox.qdoc -------------------------------------------------------------------------------- /examples/doc/images/qtifw-examples-online-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/images/qtifw-examples-online-1.png -------------------------------------------------------------------------------- /examples/doc/images/qtifw-examples-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/images/qtifw-examples-online.png -------------------------------------------------------------------------------- /examples/doc/images/qtifw-examples-openreadme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/images/qtifw-examples-openreadme.png -------------------------------------------------------------------------------- /examples/doc/images/qtifw-examples-startmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/images/qtifw-examples-startmenu.png -------------------------------------------------------------------------------- /examples/doc/images/qtifw-examples-stylesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/images/qtifw-examples-stylesheet.png -------------------------------------------------------------------------------- /examples/doc/images/qtifw-examples-treename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/images/qtifw-examples-treename.png -------------------------------------------------------------------------------- /examples/doc/modifyextract.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/modifyextract.qdoc -------------------------------------------------------------------------------- /examples/doc/online.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/online.qdoc -------------------------------------------------------------------------------- /examples/doc/openreadme.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/openreadme.qdoc -------------------------------------------------------------------------------- /examples/doc/productimage.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/productimage.qdoc -------------------------------------------------------------------------------- /examples/doc/quitinstaller.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/quitinstaller.qdoc -------------------------------------------------------------------------------- /examples/doc/registerfileextension.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/registerfileextension.qdoc -------------------------------------------------------------------------------- /examples/doc/repositorycategories.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/repositorycategories.qdoc -------------------------------------------------------------------------------- /examples/doc/startmenu.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/startmenu.qdoc -------------------------------------------------------------------------------- /examples/doc/stylesheet.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/stylesheet.qdoc -------------------------------------------------------------------------------- /examples/doc/systeminfo.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/systeminfo.qdoc -------------------------------------------------------------------------------- /examples/doc/translations.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/translations.qdoc -------------------------------------------------------------------------------- /examples/doc/treename.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/doc/treename.qdoc -------------------------------------------------------------------------------- /examples/dynamicpage/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/dynamicpage/README -------------------------------------------------------------------------------- /examples/dynamicpage/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/dynamicpage/config/config.xml -------------------------------------------------------------------------------- /examples/dynamicpage/dynamicpage.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/dynamicpage/dynamicpage.pro -------------------------------------------------------------------------------- /examples/dynamicpage/resources/additional.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/dynamicpage/resources/additional.qrc -------------------------------------------------------------------------------- /examples/dynamicpage/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/dynamicpage/resources/icon.png -------------------------------------------------------------------------------- /examples/dynamicpage/resources/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/dynamicpage/resources/license.txt -------------------------------------------------------------------------------- /examples/examples.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/examples.pro -------------------------------------------------------------------------------- /examples/hidecheckbox/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/hidecheckbox/README -------------------------------------------------------------------------------- /examples/hidecheckbox/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/hidecheckbox/config/config.xml -------------------------------------------------------------------------------- /examples/hidecheckbox/hidecheckbox.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/hidecheckbox/hidecheckbox.pro -------------------------------------------------------------------------------- /examples/hidecheckbox/packages/componentF.subcomponent1/data/testF_sub1.txt: -------------------------------------------------------------------------------- 1 | test sub1 versio3 2 | -------------------------------------------------------------------------------- /examples/hidecheckbox/packages/componentF/data/testF.txt: -------------------------------------------------------------------------------- 1 | test sub1 versio3 2 | -------------------------------------------------------------------------------- /examples/licenseagreement/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/licenseagreement/README -------------------------------------------------------------------------------- /examples/licenseagreement/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/licenseagreement/config/config.xml -------------------------------------------------------------------------------- /examples/licenseagreement/licenseagreement.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/licenseagreement/licenseagreement.pro -------------------------------------------------------------------------------- /examples/modifyextract/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/modifyextract/README -------------------------------------------------------------------------------- /examples/modifyextract/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/modifyextract/config/config.xml -------------------------------------------------------------------------------- /examples/modifyextract/modifyextract.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/modifyextract/modifyextract.pro -------------------------------------------------------------------------------- /examples/modifyextract/packages/org.qtproject.ifw.example.modifyextract/data/my_content/test.txt: -------------------------------------------------------------------------------- 1 | +I-.Q(!H -------------------------------------------------------------------------------- /examples/online/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/online/README -------------------------------------------------------------------------------- /examples/online/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/online/config/config.xml -------------------------------------------------------------------------------- /examples/online/online.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/online/online.pro -------------------------------------------------------------------------------- /examples/online/packages/A/data/A.txt: -------------------------------------------------------------------------------- 1 | Example content for package A. 2 | 3 | -------------------------------------------------------------------------------- /examples/online/packages/A/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/online/packages/A/meta/package.xml -------------------------------------------------------------------------------- /examples/online/packages/B/data/B.txt: -------------------------------------------------------------------------------- 1 | Example content for package B. 2 | 3 | -------------------------------------------------------------------------------- /examples/online/packages/B/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/online/packages/B/meta/package.xml -------------------------------------------------------------------------------- /examples/online/packages_update/A/data/A.txt: -------------------------------------------------------------------------------- 1 | Example content for package A (new version!). 2 | 3 | -------------------------------------------------------------------------------- /examples/online/packages_update/B/data/B.txt: -------------------------------------------------------------------------------- 1 | Example content for package B. 2 | 3 | -------------------------------------------------------------------------------- /examples/openreadme/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/openreadme/README -------------------------------------------------------------------------------- /examples/openreadme/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/openreadme/config/config.xml -------------------------------------------------------------------------------- /examples/openreadme/openreadme.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/openreadme/openreadme.pro -------------------------------------------------------------------------------- /examples/openreadme/packages/or.qtproject.ifw.example.openreadme/data/README.txt: -------------------------------------------------------------------------------- 1 | README 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/productimage/config/Built_with_Qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/productimage/config/Built_with_Qt.png -------------------------------------------------------------------------------- /examples/productimage/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/productimage/config/config.xml -------------------------------------------------------------------------------- /examples/productimage/productimage.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/productimage/productimage.pro -------------------------------------------------------------------------------- /examples/quitinstaller/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/quitinstaller/README -------------------------------------------------------------------------------- /examples/quitinstaller/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/quitinstaller/config/config.xml -------------------------------------------------------------------------------- /examples/quitinstaller/quitinstaller.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/quitinstaller/quitinstaller.pro -------------------------------------------------------------------------------- /examples/registerfileextension/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/registerfileextension/README -------------------------------------------------------------------------------- /examples/registerfileextension/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/registerfileextension/config/config.xml -------------------------------------------------------------------------------- /examples/registervirtualcomponentforuninstall/packages/component/data/selectedcomponent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/registervirtualcomponentforuninstall/packages/org.qtproject.ifw.example.registercomponent/data/registercomponent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/repositorycategories/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/repositorycategories/README -------------------------------------------------------------------------------- /examples/repositorycategories/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/repositorycategories/config/config.xml -------------------------------------------------------------------------------- /examples/repositorycategories/packages/A/data/A.txt: -------------------------------------------------------------------------------- 1 | Example content for package A. 2 | 3 | -------------------------------------------------------------------------------- /examples/repositorycategories/packages/B/data/B.txt: -------------------------------------------------------------------------------- 1 | Example content for package B. 2 | 3 | -------------------------------------------------------------------------------- /examples/repositorycategories/packages2_forcategory1/A2Cagetory1/data/A2_category1.txt: -------------------------------------------------------------------------------- 1 | Example content for package A2, using category 1. 2 | 3 | -------------------------------------------------------------------------------- /examples/repositorycategories/packages2_forcategory1/B2Category1/data/B2_category1.txt: -------------------------------------------------------------------------------- 1 | Example content for package B2, using category 1. 2 | 3 | -------------------------------------------------------------------------------- /examples/repositorycategories/packages_forcategory1/ACagetory1/data/A_category1.txt: -------------------------------------------------------------------------------- 1 | Example content for package A, using category 1. 2 | 3 | -------------------------------------------------------------------------------- /examples/repositorycategories/packages_forcategory1/BCategory1/data/B_category1.txt: -------------------------------------------------------------------------------- 1 | Example content for package B, using category 1. 2 | 3 | -------------------------------------------------------------------------------- /examples/repositorycategories/packages_forcategory2/ACategory2/data/A_category2.txt: -------------------------------------------------------------------------------- 1 | Example content for package A, using category 2. 2 | 3 | -------------------------------------------------------------------------------- /examples/repositorycategories/packages_forcategory2/BCategory2/data/B_category2.txt: -------------------------------------------------------------------------------- 1 | Example content for package B, using category 2. 2 | 3 | -------------------------------------------------------------------------------- /examples/startmenu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/startmenu/README -------------------------------------------------------------------------------- /examples/startmenu/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/startmenu/config/config.xml -------------------------------------------------------------------------------- /examples/startmenu/startmenu.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/startmenu/startmenu.pro -------------------------------------------------------------------------------- /examples/stylesheet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/stylesheet/README -------------------------------------------------------------------------------- /examples/stylesheet/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/stylesheet/config/config.xml -------------------------------------------------------------------------------- /examples/stylesheet/config/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/stylesheet/config/style.qss -------------------------------------------------------------------------------- /examples/stylesheet/stylesheet.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/stylesheet/stylesheet.pro -------------------------------------------------------------------------------- /examples/systeminfo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/systeminfo/README -------------------------------------------------------------------------------- /examples/systeminfo/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/systeminfo/config/config.xml -------------------------------------------------------------------------------- /examples/systeminfo/systeminfo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/systeminfo/systeminfo.pro -------------------------------------------------------------------------------- /examples/translations/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/translations/README -------------------------------------------------------------------------------- /examples/translations/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/translations/config/config.xml -------------------------------------------------------------------------------- /examples/translations/packages/com.vendor.product/meta/license_de.txt: -------------------------------------------------------------------------------- 1 | Lizenz auf deutsch. 2 | -------------------------------------------------------------------------------- /examples/translations/packages/com.vendor.product/meta/license_pl.txt: -------------------------------------------------------------------------------- 1 | Licencja po polsku. 2 | -------------------------------------------------------------------------------- /examples/translations/translations.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/translations/translations.pro -------------------------------------------------------------------------------- /examples/treename/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/treename/README -------------------------------------------------------------------------------- /examples/treename/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/treename/config/config.xml -------------------------------------------------------------------------------- /examples/treename/packages/A.sub1/data/Asub1.txt: -------------------------------------------------------------------------------- 1 | Example content for package A subcomponent 1. 2 | 3 | -------------------------------------------------------------------------------- /examples/treename/packages/A/data/A.txt: -------------------------------------------------------------------------------- 1 | Example content for package A. 2 | 3 | -------------------------------------------------------------------------------- /examples/treename/packages/A/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/treename/packages/A/meta/package.xml -------------------------------------------------------------------------------- /examples/treename/packages/B.sub1/data/Bsub1.txt: -------------------------------------------------------------------------------- 1 | Example content for package B subcomponent 1. 2 | 3 | -------------------------------------------------------------------------------- /examples/treename/packages/B/data/B.txt: -------------------------------------------------------------------------------- 1 | Example content for package B. 2 | 3 | -------------------------------------------------------------------------------- /examples/treename/packages/B/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/treename/packages/B/meta/package.xml -------------------------------------------------------------------------------- /examples/treename/packages/C.sub1/data/Csub1.txt: -------------------------------------------------------------------------------- 1 | Example content for package C subcomponent 1. 2 | 3 | -------------------------------------------------------------------------------- /examples/treename/packages/C.sub2/data/Csub2.txt: -------------------------------------------------------------------------------- 1 | Example content for package C subcomponent 2. 2 | 3 | -------------------------------------------------------------------------------- /examples/treename/packages/C/data/C.txt: -------------------------------------------------------------------------------- 1 | Example content for package C. 2 | 3 | -------------------------------------------------------------------------------- /examples/treename/packages/C/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/treename/packages/C/meta/package.xml -------------------------------------------------------------------------------- /examples/treename/packages/D.sub1/data/Dsub1.txt: -------------------------------------------------------------------------------- 1 | Example content for package D subcomponent 1. 2 | 3 | -------------------------------------------------------------------------------- /examples/treename/packages/E.sub2/data/Esub2.txt: -------------------------------------------------------------------------------- 1 | Example content for package E subcomponent 2. 2 | 3 | -------------------------------------------------------------------------------- /examples/treename/packages/E/data/E.txt: -------------------------------------------------------------------------------- 1 | Example content for package E. 2 | 3 | -------------------------------------------------------------------------------- /examples/treename/packages/E/meta/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/treename/packages/E/meta/package.xml -------------------------------------------------------------------------------- /examples/treename/treename.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/treename/treename.pro -------------------------------------------------------------------------------- /examples/tutorial/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/tutorial/config/config.xml -------------------------------------------------------------------------------- /examples/unstablecomponent/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/unstablecomponent/README -------------------------------------------------------------------------------- /examples/unstablecomponent/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/unstablecomponent/config/config.xml -------------------------------------------------------------------------------- /examples/unstablecomponent/config/controller.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/unstablecomponent/config/controller.qs -------------------------------------------------------------------------------- /examples/unstablecomponent/unstablecomponent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/examples/unstablecomponent/unstablecomponent.pro -------------------------------------------------------------------------------- /features/libarchive.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/features/libarchive.prf -------------------------------------------------------------------------------- /features/lzmasdk.prf: -------------------------------------------------------------------------------- 1 | DEFINES += IFW_LIB7Z 2 | -------------------------------------------------------------------------------- /installerfw.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/installerfw.pri -------------------------------------------------------------------------------- /installerfw.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/installerfw.pro -------------------------------------------------------------------------------- /no_app_bundle.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/no_app_bundle.pri -------------------------------------------------------------------------------- /src/libs/3rdparty/3rdparty.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/3rdparty.pro -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/7zip.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/7zip.pri -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/7zip.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/7zip.pro -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/COPYING -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/qt_attribution.json -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/7zCrc.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/7zCrc.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/7zCrcOpt.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/7zStream.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/7zTypes.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/7zVersion.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Alloc.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Alloc.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Bra.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Bra.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Bra86.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/BraIA64.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/C.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/C.pri -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Compiler.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/CpuArch.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Delta.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Delta.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/LzFind.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/LzFind.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/LzFindMt.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/LzFindMt.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/LzHash.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Lzma2Dec.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Lzma2Dec.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Lzma2Enc.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Lzma2Enc.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/LzmaDec.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/LzmaDec.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/LzmaEnc.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/LzmaEnc.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/MtCoder.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/MtCoder.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Precomp.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/RotateDefs.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Sha256.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Sha256.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Threads.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Threads.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Xz.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/Xz.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/XzCrc64.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/XzCrc64.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/XzCrc64Opt.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/XzDec.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/XzEnc.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/XzEnc.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/C/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/C/XzIn.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/CPP/7zip/7zip.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/CPP/7zip/7zip.pri -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/CPP/7zip/Guid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/CPP/7zip/Guid.txt -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/CPP/7zip/ICoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/CPP/7zip/ICoder.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/CPP/7zip/IDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/CPP/7zip/IDecl.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/CPP/7zip/IPassword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/CPP/7zip/IPassword.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/CPP/7zip/IProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/CPP/7zip/IProgress.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/CPP/7zip/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/CPP/7zip/IStream.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/CPP/7zip/PropID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/CPP/7zip/PropID.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/CPP/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/CPP/Common/Defs.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/CPP/Common/MyCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/CPP/Common/MyCom.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/CPP/Windows/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/CPP/Windows/DLL.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/CPP/Windows/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/CPP/Windows/Defs.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/unix/unix.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/unix/unix.pri -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/7zCrc.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/7zCrc.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/7zCrcOpt.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/7zStream.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/7zTypes.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/7zVersion.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Alloc.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Alloc.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Bra.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Bra.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Bra86.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/BraIA64.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/C.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/C.pri -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Compiler.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/CpuArch.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/CpuArch.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Delta.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Delta.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/LzFind.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/LzFind.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/LzFindMt.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/LzFindMt.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/LzHash.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Lzma2Dec.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Lzma2Dec.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Lzma2Enc.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Lzma2Enc.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/LzmaDec.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/LzmaDec.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/LzmaEnc.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/LzmaEnc.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/MtCoder.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/MtCoder.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Precomp.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/RotateDefs.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Sha256.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Sha256.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Threads.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Threads.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Xz.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/Xz.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/XzCrc64.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/XzCrc64.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/XzCrc64Opt.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/XzDec.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/XzEnc.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/XzEnc.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/C/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/C/XzIn.c -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/7zip/7zip.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/7zip/7zip.pri -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/7zip/Guid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/7zip/Guid.txt -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/7zip/ICoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/7zip/ICoder.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/7zip/IDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/7zip/IDecl.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/7zip/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/7zip/IStream.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/7zip/PropID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/7zip/PropID.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/Common/ComTry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/Common/ComTry.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/Common/Common.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/Common/Defs.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/Common/MyCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/Common/MyCom.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/Common/StdAfx.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/Windows/DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/Windows/DLL.cpp -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/Windows/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/Windows/DLL.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/CPP/Windows/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/CPP/Windows/Defs.h -------------------------------------------------------------------------------- /src/libs/3rdparty/7zip/win/win.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/7zip/win/win.pri -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/COPYING -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive.h -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_acl.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_blake2.h -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_cmdline.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_crc32.h -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_cryptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_cryptor.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_digest.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_endian.h -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_entry.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_entry.h -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_getdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_getdate.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_getdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_getdate.h -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_hmac.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_match.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_options.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_ppmd7.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_ppmd8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_ppmd8.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_private.h -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_random.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_rb.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_rb.h -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_read.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_string.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_string.h -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_util.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_virtual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_virtual.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_windows.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_windows.h -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_write.c -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/archive_xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/archive_xxhash.h -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/config_freebsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/config_freebsd.h -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/filter_fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/filter_fork.h -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/libarchive.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/libarchive.pro -------------------------------------------------------------------------------- /src/libs/3rdparty/libarchive/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/3rdparty/libarchive/xxhash.c -------------------------------------------------------------------------------- /src/libs/ifwtools/binarycreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/ifwtools/binarycreator.cpp -------------------------------------------------------------------------------- /src/libs/ifwtools/binarycreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/ifwtools/binarycreator.h -------------------------------------------------------------------------------- /src/libs/ifwtools/ifwtools.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/ifwtools/ifwtools.pri -------------------------------------------------------------------------------- /src/libs/ifwtools/ifwtools_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/ifwtools/ifwtools_global.h -------------------------------------------------------------------------------- /src/libs/ifwtools/rcc/qcorecmdlineargs_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/ifwtools/rcc/qcorecmdlineargs_p.h -------------------------------------------------------------------------------- /src/libs/ifwtools/rcc/rcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/ifwtools/rcc/rcc.cpp -------------------------------------------------------------------------------- /src/libs/ifwtools/rcc/rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/ifwtools/rcc/rcc.h -------------------------------------------------------------------------------- /src/libs/ifwtools/rcc/rccmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/ifwtools/rcc/rccmain.cpp -------------------------------------------------------------------------------- /src/libs/ifwtools/repositorygen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/ifwtools/repositorygen.cpp -------------------------------------------------------------------------------- /src/libs/ifwtools/repositorygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/ifwtools/repositorygen.h -------------------------------------------------------------------------------- /src/libs/ifwtools/resources/ifwtools.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/ifwtools/resources/ifwtools.qrc -------------------------------------------------------------------------------- /src/libs/installer/abstractarchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/abstractarchive.cpp -------------------------------------------------------------------------------- /src/libs/installer/abstractarchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/abstractarchive.h -------------------------------------------------------------------------------- /src/libs/installer/abstractfiletask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/abstractfiletask.cpp -------------------------------------------------------------------------------- /src/libs/installer/abstractfiletask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/abstractfiletask.h -------------------------------------------------------------------------------- /src/libs/installer/abstracttask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/abstracttask.cpp -------------------------------------------------------------------------------- /src/libs/installer/abstracttask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/abstracttask.h -------------------------------------------------------------------------------- /src/libs/installer/adminauthorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/adminauthorization.h -------------------------------------------------------------------------------- /src/libs/installer/adminauthorization_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/adminauthorization_mac.cpp -------------------------------------------------------------------------------- /src/libs/installer/adminauthorization_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/adminauthorization_win.cpp -------------------------------------------------------------------------------- /src/libs/installer/adminauthorization_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/adminauthorization_x11.cpp -------------------------------------------------------------------------------- /src/libs/installer/archivefactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/archivefactory.cpp -------------------------------------------------------------------------------- /src/libs/installer/archivefactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/archivefactory.h -------------------------------------------------------------------------------- /src/libs/installer/aspectratiolabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/aspectratiolabel.cpp -------------------------------------------------------------------------------- /src/libs/installer/aspectratiolabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/aspectratiolabel.h -------------------------------------------------------------------------------- /src/libs/installer/binarycontent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/binarycontent.cpp -------------------------------------------------------------------------------- /src/libs/installer/binarycontent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/binarycontent.h -------------------------------------------------------------------------------- /src/libs/installer/binaryformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/binaryformat.cpp -------------------------------------------------------------------------------- /src/libs/installer/binaryformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/binaryformat.h -------------------------------------------------------------------------------- /src/libs/installer/binaryformatengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/binaryformatengine.cpp -------------------------------------------------------------------------------- /src/libs/installer/binaryformatengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/binaryformatengine.h -------------------------------------------------------------------------------- /src/libs/installer/binaryformatenginehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/binaryformatenginehandler.h -------------------------------------------------------------------------------- /src/libs/installer/binarylayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/binarylayout.cpp -------------------------------------------------------------------------------- /src/libs/installer/binarylayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/binarylayout.h -------------------------------------------------------------------------------- /src/libs/installer/calculatorbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/calculatorbase.cpp -------------------------------------------------------------------------------- /src/libs/installer/calculatorbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/calculatorbase.h -------------------------------------------------------------------------------- /src/libs/installer/categorycombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/categorycombobox.cpp -------------------------------------------------------------------------------- /src/libs/installer/categorycombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/categorycombobox.h -------------------------------------------------------------------------------- /src/libs/installer/checkablecombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/checkablecombobox.cpp -------------------------------------------------------------------------------- /src/libs/installer/checkablecombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/checkablecombobox.h -------------------------------------------------------------------------------- /src/libs/installer/clickablelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/clickablelabel.cpp -------------------------------------------------------------------------------- /src/libs/installer/clickablelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/clickablelabel.h -------------------------------------------------------------------------------- /src/libs/installer/commandlineparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/commandlineparser.cpp -------------------------------------------------------------------------------- /src/libs/installer/commandlineparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/commandlineparser.h -------------------------------------------------------------------------------- /src/libs/installer/commandlineparser_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/commandlineparser_p.cpp -------------------------------------------------------------------------------- /src/libs/installer/commandlineparser_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/commandlineparser_p.h -------------------------------------------------------------------------------- /src/libs/installer/component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/component.cpp -------------------------------------------------------------------------------- /src/libs/installer/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/component.h -------------------------------------------------------------------------------- /src/libs/installer/component_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/component_p.cpp -------------------------------------------------------------------------------- /src/libs/installer/component_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/component_p.h -------------------------------------------------------------------------------- /src/libs/installer/componentalias.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/componentalias.cpp -------------------------------------------------------------------------------- /src/libs/installer/componentalias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/componentalias.h -------------------------------------------------------------------------------- /src/libs/installer/componentchecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/componentchecker.cpp -------------------------------------------------------------------------------- /src/libs/installer/componentchecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/componentchecker.h -------------------------------------------------------------------------------- /src/libs/installer/componentmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/componentmodel.cpp -------------------------------------------------------------------------------- /src/libs/installer/componentmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/componentmodel.h -------------------------------------------------------------------------------- /src/libs/installer/componentselectionpage_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/componentselectionpage_p.h -------------------------------------------------------------------------------- /src/libs/installer/concurrentoperationrunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/concurrentoperationrunner.h -------------------------------------------------------------------------------- /src/libs/installer/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/constants.h -------------------------------------------------------------------------------- /src/libs/installer/consumeoutputoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/consumeoutputoperation.cpp -------------------------------------------------------------------------------- /src/libs/installer/consumeoutputoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/consumeoutputoperation.h -------------------------------------------------------------------------------- /src/libs/installer/copydirectoryoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/copydirectoryoperation.cpp -------------------------------------------------------------------------------- /src/libs/installer/copydirectoryoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/copydirectoryoperation.h -------------------------------------------------------------------------------- /src/libs/installer/copyfiletask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/copyfiletask.cpp -------------------------------------------------------------------------------- /src/libs/installer/copyfiletask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/copyfiletask.h -------------------------------------------------------------------------------- /src/libs/installer/createlinkoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/createlinkoperation.cpp -------------------------------------------------------------------------------- /src/libs/installer/createlinkoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/createlinkoperation.h -------------------------------------------------------------------------------- /src/libs/installer/createshortcutoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/createshortcutoperation.cpp -------------------------------------------------------------------------------- /src/libs/installer/createshortcutoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/createshortcutoperation.h -------------------------------------------------------------------------------- /src/libs/installer/directoryguard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/directoryguard.cpp -------------------------------------------------------------------------------- /src/libs/installer/directoryguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/directoryguard.h -------------------------------------------------------------------------------- /src/libs/installer/downloadarchivesjob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/downloadarchivesjob.cpp -------------------------------------------------------------------------------- /src/libs/installer/downloadarchivesjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/downloadarchivesjob.h -------------------------------------------------------------------------------- /src/libs/installer/downloadfiletask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/downloadfiletask.cpp -------------------------------------------------------------------------------- /src/libs/installer/downloadfiletask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/downloadfiletask.h -------------------------------------------------------------------------------- /src/libs/installer/downloadfiletask_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/downloadfiletask_p.h -------------------------------------------------------------------------------- /src/libs/installer/elevatedexecuteoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/elevatedexecuteoperation.h -------------------------------------------------------------------------------- /src/libs/installer/errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/errors.cpp -------------------------------------------------------------------------------- /src/libs/installer/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/errors.h -------------------------------------------------------------------------------- /src/libs/installer/extractarchiveoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/extractarchiveoperation.cpp -------------------------------------------------------------------------------- /src/libs/installer/extractarchiveoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/extractarchiveoperation.h -------------------------------------------------------------------------------- /src/libs/installer/extractarchiveoperation_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/extractarchiveoperation_p.h -------------------------------------------------------------------------------- /src/libs/installer/fileguard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/fileguard.cpp -------------------------------------------------------------------------------- /src/libs/installer/fileguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/fileguard.h -------------------------------------------------------------------------------- /src/libs/installer/fileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/fileio.cpp -------------------------------------------------------------------------------- /src/libs/installer/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/fileio.h -------------------------------------------------------------------------------- /src/libs/installer/fileutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/fileutils.cpp -------------------------------------------------------------------------------- /src/libs/installer/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/fileutils.h -------------------------------------------------------------------------------- /src/libs/installer/fileutils_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/fileutils_mac.mm -------------------------------------------------------------------------------- /src/libs/installer/genericdatacache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/genericdatacache.cpp -------------------------------------------------------------------------------- /src/libs/installer/genericdatacache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/genericdatacache.h -------------------------------------------------------------------------------- /src/libs/installer/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/globals.cpp -------------------------------------------------------------------------------- /src/libs/installer/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/globals.h -------------------------------------------------------------------------------- /src/libs/installer/globalsettingsoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/globalsettingsoperation.cpp -------------------------------------------------------------------------------- /src/libs/installer/globalsettingsoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/globalsettingsoperation.h -------------------------------------------------------------------------------- /src/libs/installer/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/graph.cpp -------------------------------------------------------------------------------- /src/libs/installer/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/graph.h -------------------------------------------------------------------------------- /src/libs/installer/horizontalruler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/horizontalruler.cpp -------------------------------------------------------------------------------- /src/libs/installer/horizontalruler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/horizontalruler.h -------------------------------------------------------------------------------- /src/libs/installer/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/init.cpp -------------------------------------------------------------------------------- /src/libs/installer/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/init.h -------------------------------------------------------------------------------- /src/libs/installer/installer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/installer.pro -------------------------------------------------------------------------------- /src/libs/installer/installer_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/installer_global.h -------------------------------------------------------------------------------- /src/libs/installer/installercalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/installercalculator.cpp -------------------------------------------------------------------------------- /src/libs/installer/installercalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/installercalculator.h -------------------------------------------------------------------------------- /src/libs/installer/installiconsoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/installiconsoperation.cpp -------------------------------------------------------------------------------- /src/libs/installer/installiconsoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/installiconsoperation.h -------------------------------------------------------------------------------- /src/libs/installer/keepaliveobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/keepaliveobject.cpp -------------------------------------------------------------------------------- /src/libs/installer/keepaliveobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/keepaliveobject.h -------------------------------------------------------------------------------- /src/libs/installer/lib7z_create.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/lib7z_create.h -------------------------------------------------------------------------------- /src/libs/installer/lib7z_extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/lib7z_extract.h -------------------------------------------------------------------------------- /src/libs/installer/lib7z_facade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/lib7z_facade.cpp -------------------------------------------------------------------------------- /src/libs/installer/lib7z_facade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/lib7z_facade.h -------------------------------------------------------------------------------- /src/libs/installer/lib7z_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/lib7z_guid.h -------------------------------------------------------------------------------- /src/libs/installer/lib7z_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/lib7z_list.h -------------------------------------------------------------------------------- /src/libs/installer/lib7zarchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/lib7zarchive.cpp -------------------------------------------------------------------------------- /src/libs/installer/lib7zarchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/lib7zarchive.h -------------------------------------------------------------------------------- /src/libs/installer/libarchivearchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/libarchivearchive.cpp -------------------------------------------------------------------------------- /src/libs/installer/libarchivearchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/libarchivearchive.h -------------------------------------------------------------------------------- /src/libs/installer/libarchivewrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/libarchivewrapper.cpp -------------------------------------------------------------------------------- /src/libs/installer/libarchivewrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/libarchivewrapper.h -------------------------------------------------------------------------------- /src/libs/installer/libarchivewrapper_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/libarchivewrapper_p.cpp -------------------------------------------------------------------------------- /src/libs/installer/libarchivewrapper_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/libarchivewrapper_p.h -------------------------------------------------------------------------------- /src/libs/installer/licenseoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/licenseoperation.cpp -------------------------------------------------------------------------------- /src/libs/installer/licenseoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/licenseoperation.h -------------------------------------------------------------------------------- /src/libs/installer/linereplaceoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/linereplaceoperation.cpp -------------------------------------------------------------------------------- /src/libs/installer/linereplaceoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/linereplaceoperation.h -------------------------------------------------------------------------------- /src/libs/installer/link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/link.cpp -------------------------------------------------------------------------------- /src/libs/installer/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/link.h -------------------------------------------------------------------------------- /src/libs/installer/loggingutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/loggingutils.cpp -------------------------------------------------------------------------------- /src/libs/installer/loggingutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/loggingutils.h -------------------------------------------------------------------------------- /src/libs/installer/messageboxhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/messageboxhandler.cpp -------------------------------------------------------------------------------- /src/libs/installer/messageboxhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/messageboxhandler.h -------------------------------------------------------------------------------- /src/libs/installer/metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/metadata.cpp -------------------------------------------------------------------------------- /src/libs/installer/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/metadata.h -------------------------------------------------------------------------------- /src/libs/installer/metadatacache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/metadatacache.cpp -------------------------------------------------------------------------------- /src/libs/installer/metadatacache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/metadatacache.h -------------------------------------------------------------------------------- /src/libs/installer/metadatajob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/metadatajob.cpp -------------------------------------------------------------------------------- /src/libs/installer/metadatajob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/metadatajob.h -------------------------------------------------------------------------------- /src/libs/installer/metadatajob_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/metadatajob_p.h -------------------------------------------------------------------------------- /src/libs/installer/minimumprogressoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/minimumprogressoperation.h -------------------------------------------------------------------------------- /src/libs/installer/observer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/observer.cpp -------------------------------------------------------------------------------- /src/libs/installer/observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/observer.h -------------------------------------------------------------------------------- /src/libs/installer/operationtracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/operationtracer.cpp -------------------------------------------------------------------------------- /src/libs/installer/operationtracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/operationtracer.h -------------------------------------------------------------------------------- /src/libs/installer/packagemanagercore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/packagemanagercore.cpp -------------------------------------------------------------------------------- /src/libs/installer/packagemanagercore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/packagemanagercore.h -------------------------------------------------------------------------------- /src/libs/installer/packagemanagercore_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/packagemanagercore_p.cpp -------------------------------------------------------------------------------- /src/libs/installer/packagemanagercore_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/packagemanagercore_p.h -------------------------------------------------------------------------------- /src/libs/installer/packagemanagercoredata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/packagemanagercoredata.cpp -------------------------------------------------------------------------------- /src/libs/installer/packagemanagercoredata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/packagemanagercoredata.h -------------------------------------------------------------------------------- /src/libs/installer/packagemanagergui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/packagemanagergui.cpp -------------------------------------------------------------------------------- /src/libs/installer/packagemanagergui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/packagemanagergui.h -------------------------------------------------------------------------------- /src/libs/installer/packagemanagerpagefactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/packagemanagerpagefactory.h -------------------------------------------------------------------------------- /src/libs/installer/packagesource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/packagesource.cpp -------------------------------------------------------------------------------- /src/libs/installer/packagesource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/packagesource.h -------------------------------------------------------------------------------- /src/libs/installer/performinstallationform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/performinstallationform.cpp -------------------------------------------------------------------------------- /src/libs/installer/performinstallationform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/performinstallationform.h -------------------------------------------------------------------------------- /src/libs/installer/permissionsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/permissionsettings.cpp -------------------------------------------------------------------------------- /src/libs/installer/permissionsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/permissionsettings.h -------------------------------------------------------------------------------- /src/libs/installer/productkeycheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/productkeycheck.cpp -------------------------------------------------------------------------------- /src/libs/installer/productkeycheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/productkeycheck.h -------------------------------------------------------------------------------- /src/libs/installer/progresscoordinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/progresscoordinator.cpp -------------------------------------------------------------------------------- /src/libs/installer/progresscoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/progresscoordinator.h -------------------------------------------------------------------------------- /src/libs/installer/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/protocol.cpp -------------------------------------------------------------------------------- /src/libs/installer/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/protocol.h -------------------------------------------------------------------------------- /src/libs/installer/proxycredentialsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/proxycredentialsdialog.cpp -------------------------------------------------------------------------------- /src/libs/installer/proxycredentialsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/proxycredentialsdialog.h -------------------------------------------------------------------------------- /src/libs/installer/proxycredentialsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/proxycredentialsdialog.ui -------------------------------------------------------------------------------- /src/libs/installer/qinstallerglobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/qinstallerglobal.cpp -------------------------------------------------------------------------------- /src/libs/installer/qinstallerglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/qinstallerglobal.h -------------------------------------------------------------------------------- /src/libs/installer/qprocesswrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/qprocesswrapper.cpp -------------------------------------------------------------------------------- /src/libs/installer/qprocesswrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/qprocesswrapper.h -------------------------------------------------------------------------------- /src/libs/installer/qsettingswrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/qsettingswrapper.cpp -------------------------------------------------------------------------------- /src/libs/installer/qsettingswrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/qsettingswrapper.h -------------------------------------------------------------------------------- /src/libs/installer/qtpatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/qtpatch.cpp -------------------------------------------------------------------------------- /src/libs/installer/qtpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/qtpatch.h -------------------------------------------------------------------------------- /src/libs/installer/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/range.h -------------------------------------------------------------------------------- /src/libs/installer/registerfiletypeoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/registerfiletypeoperation.h -------------------------------------------------------------------------------- /src/libs/installer/remoteclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/remoteclient.cpp -------------------------------------------------------------------------------- /src/libs/installer/remoteclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/remoteclient.h -------------------------------------------------------------------------------- /src/libs/installer/remoteclient_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/remoteclient_p.h -------------------------------------------------------------------------------- /src/libs/installer/remotefileengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/remotefileengine.cpp -------------------------------------------------------------------------------- /src/libs/installer/remotefileengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/remotefileengine.h -------------------------------------------------------------------------------- /src/libs/installer/remoteobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/remoteobject.cpp -------------------------------------------------------------------------------- /src/libs/installer/remoteobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/remoteobject.h -------------------------------------------------------------------------------- /src/libs/installer/remoteserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/remoteserver.cpp -------------------------------------------------------------------------------- /src/libs/installer/remoteserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/remoteserver.h -------------------------------------------------------------------------------- /src/libs/installer/remoteserver_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/remoteserver_p.h -------------------------------------------------------------------------------- /src/libs/installer/remoteserverconnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/remoteserverconnection.cpp -------------------------------------------------------------------------------- /src/libs/installer/remoteserverconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/remoteserverconnection.h -------------------------------------------------------------------------------- /src/libs/installer/remoteserverconnection_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/remoteserverconnection_p.h -------------------------------------------------------------------------------- /src/libs/installer/replaceoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/replaceoperation.cpp -------------------------------------------------------------------------------- /src/libs/installer/replaceoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/replaceoperation.h -------------------------------------------------------------------------------- /src/libs/installer/repository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/repository.cpp -------------------------------------------------------------------------------- /src/libs/installer/repository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/repository.h -------------------------------------------------------------------------------- /src/libs/installer/repositorycategory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/repositorycategory.cpp -------------------------------------------------------------------------------- /src/libs/installer/repositorycategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/repositorycategory.h -------------------------------------------------------------------------------- /src/libs/installer/resources/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/resources/install.png -------------------------------------------------------------------------------- /src/libs/installer/resources/installer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/resources/installer.icns -------------------------------------------------------------------------------- /src/libs/installer/resources/installer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/resources/installer.ico -------------------------------------------------------------------------------- /src/libs/installer/resources/installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/resources/installer.png -------------------------------------------------------------------------------- /src/libs/installer/resources/installer.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/resources/installer.qrc -------------------------------------------------------------------------------- /src/libs/installer/resources/keepinstalled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/resources/keepinstalled.png -------------------------------------------------------------------------------- /src/libs/installer/resources/qt/etc/qt.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libs/installer/resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/resources/search.png -------------------------------------------------------------------------------- /src/libs/installer/resources/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/resources/search@2x.png -------------------------------------------------------------------------------- /src/libs/installer/resources/uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/resources/uninstall.png -------------------------------------------------------------------------------- /src/libs/installer/runextensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/runextensions.h -------------------------------------------------------------------------------- /src/libs/installer/scriptengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/scriptengine.cpp -------------------------------------------------------------------------------- /src/libs/installer/scriptengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/scriptengine.h -------------------------------------------------------------------------------- /src/libs/installer/scriptengine_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/scriptengine_p.h -------------------------------------------------------------------------------- /src/libs/installer/selfrestartoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/selfrestartoperation.cpp -------------------------------------------------------------------------------- /src/libs/installer/selfrestartoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/selfrestartoperation.h -------------------------------------------------------------------------------- /src/libs/installer/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/settings.cpp -------------------------------------------------------------------------------- /src/libs/installer/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/settings.h -------------------------------------------------------------------------------- /src/libs/installer/settingsoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/settingsoperation.cpp -------------------------------------------------------------------------------- /src/libs/installer/settingsoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/settingsoperation.h -------------------------------------------------------------------------------- /src/libs/installer/simplemovefileoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/simplemovefileoperation.cpp -------------------------------------------------------------------------------- /src/libs/installer/simplemovefileoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/simplemovefileoperation.h -------------------------------------------------------------------------------- /src/libs/installer/spacewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/spacewidget.cpp -------------------------------------------------------------------------------- /src/libs/installer/spacewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/spacewidget.h -------------------------------------------------------------------------------- /src/libs/installer/sysinfo_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/sysinfo_win.cpp -------------------------------------------------------------------------------- /src/libs/installer/systeminfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/systeminfo.cpp -------------------------------------------------------------------------------- /src/libs/installer/systeminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/systeminfo.h -------------------------------------------------------------------------------- /src/libs/installer/testrepository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/testrepository.cpp -------------------------------------------------------------------------------- /src/libs/installer/testrepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/testrepository.h -------------------------------------------------------------------------------- /src/libs/installer/uninstallercalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/uninstallercalculator.cpp -------------------------------------------------------------------------------- /src/libs/installer/uninstallercalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/uninstallercalculator.h -------------------------------------------------------------------------------- /src/libs/installer/unziptask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/unziptask.cpp -------------------------------------------------------------------------------- /src/libs/installer/unziptask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/unziptask.h -------------------------------------------------------------------------------- /src/libs/installer/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/utils.cpp -------------------------------------------------------------------------------- /src/libs/installer/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/installer/utils.h -------------------------------------------------------------------------------- /src/libs/kdtools/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/LICENSE.LGPL -------------------------------------------------------------------------------- /src/libs/kdtools/authenticationdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/authenticationdialog.ui -------------------------------------------------------------------------------- /src/libs/kdtools/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/environment.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/environment.h -------------------------------------------------------------------------------- /src/libs/kdtools/filedownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/filedownloader.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/filedownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/filedownloader.h -------------------------------------------------------------------------------- /src/libs/kdtools/filedownloader_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/filedownloader_p.h -------------------------------------------------------------------------------- /src/libs/kdtools/filedownloaderfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/filedownloaderfactory.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/filedownloaderfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/filedownloaderfactory.h -------------------------------------------------------------------------------- /src/libs/kdtools/genericfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/genericfactory.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/genericfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/genericfactory.h -------------------------------------------------------------------------------- /src/libs/kdtools/job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/job.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/job.h -------------------------------------------------------------------------------- /src/libs/kdtools/kdsysinfo_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/kdsysinfo_win.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/kdtools.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/kdtools.pri -------------------------------------------------------------------------------- /src/libs/kdtools/kdtoolsglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/kdtoolsglobal.h -------------------------------------------------------------------------------- /src/libs/kdtools/localpackagehub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/localpackagehub.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/localpackagehub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/localpackagehub.h -------------------------------------------------------------------------------- /src/libs/kdtools/lockfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/lockfile.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/lockfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/lockfile.h -------------------------------------------------------------------------------- /src/libs/kdtools/lockfile_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/lockfile_p.h -------------------------------------------------------------------------------- /src/libs/kdtools/lockfile_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/lockfile_unix.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/lockfile_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/lockfile_win.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/runoncechecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/runoncechecker.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/runoncechecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/runoncechecker.h -------------------------------------------------------------------------------- /src/libs/kdtools/selfrestarter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/selfrestarter.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/selfrestarter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/selfrestarter.h -------------------------------------------------------------------------------- /src/libs/kdtools/sysinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/sysinfo.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/sysinfo.h -------------------------------------------------------------------------------- /src/libs/kdtools/sysinfo_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/sysinfo_mac.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/sysinfo_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/sysinfo_x11.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/task.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/task.h -------------------------------------------------------------------------------- /src/libs/kdtools/update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/update.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/update.h -------------------------------------------------------------------------------- /src/libs/kdtools/updatefinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/updatefinder.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/updatefinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/updatefinder.h -------------------------------------------------------------------------------- /src/libs/kdtools/updateoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/updateoperation.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/updateoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/updateoperation.h -------------------------------------------------------------------------------- /src/libs/kdtools/updateoperationfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/updateoperationfactory.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/updateoperationfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/updateoperationfactory.h -------------------------------------------------------------------------------- /src/libs/kdtools/updateoperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/updateoperations.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/updateoperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/updateoperations.h -------------------------------------------------------------------------------- /src/libs/kdtools/updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/updater.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/updater.h -------------------------------------------------------------------------------- /src/libs/kdtools/updatesinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/updatesinfo.cpp -------------------------------------------------------------------------------- /src/libs/kdtools/updatesinfo_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/updatesinfo_p.h -------------------------------------------------------------------------------- /src/libs/kdtools/updatesinfodata_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/kdtools/updatesinfodata_p.h -------------------------------------------------------------------------------- /src/libs/libs.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/libs/libs.pro -------------------------------------------------------------------------------- /src/sdk/aboutapplicationdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/aboutapplicationdialog.cpp -------------------------------------------------------------------------------- /src/sdk/aboutapplicationdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/aboutapplicationdialog.h -------------------------------------------------------------------------------- /src/sdk/commandlineinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/commandlineinterface.cpp -------------------------------------------------------------------------------- /src/sdk/commandlineinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/commandlineinterface.h -------------------------------------------------------------------------------- /src/sdk/installerbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/installerbase.cpp -------------------------------------------------------------------------------- /src/sdk/installerbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/installerbase.h -------------------------------------------------------------------------------- /src/sdk/installerbase.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/installerbase.ico -------------------------------------------------------------------------------- /src/sdk/installerbase.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/installerbase.manifest -------------------------------------------------------------------------------- /src/sdk/installerbase.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/installerbase.rc -------------------------------------------------------------------------------- /src/sdk/installerbasecommons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/installerbasecommons.cpp -------------------------------------------------------------------------------- /src/sdk/installerbasecommons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/installerbasecommons.h -------------------------------------------------------------------------------- /src/sdk/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/main.cpp -------------------------------------------------------------------------------- /src/sdk/sdk.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/sdk.pro -------------------------------------------------------------------------------- /src/sdk/sdkapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/sdkapp.h -------------------------------------------------------------------------------- /src/sdk/settingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/settingsdialog.cpp -------------------------------------------------------------------------------- /src/sdk/settingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/settingsdialog.h -------------------------------------------------------------------------------- /src/sdk/settingsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/settingsdialog.ui -------------------------------------------------------------------------------- /src/sdk/tabcontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/tabcontroller.cpp -------------------------------------------------------------------------------- /src/sdk/tabcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/tabcontroller.h -------------------------------------------------------------------------------- /src/sdk/translations/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/README -------------------------------------------------------------------------------- /src/sdk/translations/ifw_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_ar.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_ca.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_da.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_de.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_es.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_fr.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_hr.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_hu.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_it.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_ja.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_ko.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_pl.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_pt_BR.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_pt_PT.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_ru.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_sv.ts -------------------------------------------------------------------------------- /src/sdk/translations/ifw_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/ifw_zh_CN.ts -------------------------------------------------------------------------------- /src/sdk/translations/translations.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/sdk/translations/translations.pro -------------------------------------------------------------------------------- /src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/src/src.pro -------------------------------------------------------------------------------- /sync.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/sync.profile -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/README -------------------------------------------------------------------------------- /tests/auto/auto.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/auto.pro -------------------------------------------------------------------------------- /tests/auto/installer/archivefactory/archivefactory.pro: -------------------------------------------------------------------------------- 1 | include(../../qttest.pri) 2 | 3 | QT -= gui 4 | 5 | SOURCES += tst_archivefactory.cpp 6 | -------------------------------------------------------------------------------- /tests/auto/installer/compareversion/compareversion.pro: -------------------------------------------------------------------------------- 1 | include(../../qttest.pri) 2 | 3 | QT -= gui 4 | 5 | SOURCES += tst_compareversion.cpp 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/installer/contentsha1check/data/repositorywithchecksumcheck/B/1.0.0-1content.7z.sha1: -------------------------------------------------------------------------------- 1 | 7e592e4b96adcefc77f2613100a3bd5e8835cce0 -------------------------------------------------------------------------------- /tests/auto/installer/createoffline/data/repository-componentmeta-emptymetafile/A/1.0.2-1content.7z.sha1: -------------------------------------------------------------------------------- 1 | 5097e37368b44fc5242f3bb2fce08f5ade6c4c40 -------------------------------------------------------------------------------- /tests/auto/installer/createoffline/data/repository-unifiedmeta-script/org.qtproject.ifw.example/1.0.0-1content.7z.sha1: -------------------------------------------------------------------------------- 1 | d9ad62d190d93c92175741c02d17aa6c39b0e03d -------------------------------------------------------------------------------- /tests/auto/installer/factory/factory.pro: -------------------------------------------------------------------------------- 1 | include(../../qttest.pri) 2 | 3 | QT -= gui 4 | 5 | SOURCES += tst_factory.cpp 6 | -------------------------------------------------------------------------------- /tests/auto/installer/factory/tst_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/factory/tst_factory.cpp -------------------------------------------------------------------------------- /tests/auto/installer/fileutils/fileutils.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/fileutils/fileutils.pro -------------------------------------------------------------------------------- /tests/auto/installer/installer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/installer.pro -------------------------------------------------------------------------------- /tests/auto/installer/lib7zarchive/data.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/lib7zarchive/data.qrc -------------------------------------------------------------------------------- /tests/auto/installer/linereplaceoperation/data/repository/A/1.0.2-1content.7z.sha1: -------------------------------------------------------------------------------- 1 | a0268f80fd2954271fe7d2eae584c13a6d143838 -------------------------------------------------------------------------------- /tests/auto/installer/linereplaceoperation/data/xmloperationrepository/A/1.0.2-1content.7z.sha1: -------------------------------------------------------------------------------- 1 | a0268f80fd2954271fe7d2eae584c13a6d143838 -------------------------------------------------------------------------------- /tests/auto/installer/messageboxhandler/data/invalidhash/B/1.0.0-1content.7z.sha1: -------------------------------------------------------------------------------- 1 | 1c99fe9980cb71dde6a8468c9aa09b4153bc3bff -------------------------------------------------------------------------------- /tests/auto/installer/messageboxhandler/data/missingarchive/C/1.0.0content.7z.sha1: -------------------------------------------------------------------------------- 1 | 1c99fe9980cb71dde6a8468c9aa09b4153bc3bff -------------------------------------------------------------------------------- /tests/auto/installer/metadatacache/data/existing-cache/placeholder_sha1/repository.txt: -------------------------------------------------------------------------------- 1 | /example-repository 2 | -------------------------------------------------------------------------------- /tests/auto/installer/metadatacache/data/local-temp-repository/A/example-license.txt: -------------------------------------------------------------------------------- 1 | Example license file 2 | -------------------------------------------------------------------------------- /tests/auto/installer/metadatajob/settings.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/metadatajob/settings.qrc -------------------------------------------------------------------------------- /tests/auto/installer/repository/repository.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/repository/repository.pro -------------------------------------------------------------------------------- /tests/auto/installer/repository/settings.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/repository/settings.qrc -------------------------------------------------------------------------------- /tests/auto/installer/scriptengine/data/form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/scriptengine/data/form.ui -------------------------------------------------------------------------------- /tests/auto/installer/settings/settings.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/settings/settings.pro -------------------------------------------------------------------------------- /tests/auto/installer/settings/settings.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/settings/settings.qrc -------------------------------------------------------------------------------- /tests/auto/installer/settings/tst_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/settings/tst_settings.cpp -------------------------------------------------------------------------------- /tests/auto/installer/shared/config.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/shared/config.qrc -------------------------------------------------------------------------------- /tests/auto/installer/shared/packagemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/shared/packagemanager.h -------------------------------------------------------------------------------- /tests/auto/installer/shared/verifyinstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/shared/verifyinstaller.h -------------------------------------------------------------------------------- /tests/auto/installer/solver/solver.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/solver/solver.pro -------------------------------------------------------------------------------- /tests/auto/installer/solver/tst_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/solver/tst_solver.cpp -------------------------------------------------------------------------------- /tests/auto/installer/task/task.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/task/task.pro -------------------------------------------------------------------------------- /tests/auto/installer/task/tst_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/task/tst_task.cpp -------------------------------------------------------------------------------- /tests/auto/installer/treename/data/repository/componentB.sub2/1.0.0content.7z.sha1: -------------------------------------------------------------------------------- 1 | a8b85ffe4f91b4dc68a6402b314402949ef17a7a -------------------------------------------------------------------------------- /tests/auto/installer/treename/settings.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/treename/settings.qrc -------------------------------------------------------------------------------- /tests/auto/installer/treename/treename.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/treename/treename.pro -------------------------------------------------------------------------------- /tests/auto/installer/treename/tst_treename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/treename/tst_treename.cpp -------------------------------------------------------------------------------- /tests/auto/installer/unicodeexecutable/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/installer/unicodeexecutable/main.c -------------------------------------------------------------------------------- /tests/auto/qttest.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/qttest.pri -------------------------------------------------------------------------------- /tests/auto/tools/repotest/packages/A/data/A.txt: -------------------------------------------------------------------------------- 1 | Example content for package A. 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/tools/repotest/packages/A/meta/script1.0.0.qs: -------------------------------------------------------------------------------- 1 | function Component() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tests/auto/tools/repotest/packages/B/data/B.txt: -------------------------------------------------------------------------------- 1 | Example content for package B. 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/tools/repotest/packages_new/C/data/C.txt: -------------------------------------------------------------------------------- 1 | Example content for package C. 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/tools/repotest/packages_update/A/data/A_update.txt: -------------------------------------------------------------------------------- 1 | Example content for package A. 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/tools/repotest/packages_update/A/meta/script2.0.0.qs: -------------------------------------------------------------------------------- 1 | function Component() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tests/auto/tools/repotest/packages_update/B/data/B_update.txt: -------------------------------------------------------------------------------- 1 | Example content for package B. 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/tools/repotest/repository_componentAndUnite/C/1.0.0content.7z.sha1: -------------------------------------------------------------------------------- 1 | 0e995c11dc35bd2b4ac04d408eb7091f8322ea49 -------------------------------------------------------------------------------- /tests/auto/tools/repotest/repository_unite/C/1.0.0content.7z.sha1: -------------------------------------------------------------------------------- 1 | 0e995c11dc35bd2b4ac04d408eb7091f8322ea49 -------------------------------------------------------------------------------- /tests/auto/tools/repotest/repotest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/tools/repotest/repotest.pro -------------------------------------------------------------------------------- /tests/auto/tools/repotest/tst_repotest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/auto/tools/repotest/tst_repotest.cpp -------------------------------------------------------------------------------- /tests/auto/tools/tools.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += \ 4 | repotest 5 | -------------------------------------------------------------------------------- /tests/downloadspeed/downloadspeed.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/downloadspeed/downloadspeed.pro -------------------------------------------------------------------------------- /tests/downloadspeed/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/downloadspeed/main.cpp -------------------------------------------------------------------------------- /tests/test-framework/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/README -------------------------------------------------------------------------------- /tests/test-framework/checker/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/checker/run.py -------------------------------------------------------------------------------- /tests/test-framework/checker/testrunner/__init__.py: -------------------------------------------------------------------------------- 1 | # init.py 2 | -------------------------------------------------------------------------------- /tests/test-framework/checker/testrunner/logger.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-framework/site/host-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/site/host-config.cfg -------------------------------------------------------------------------------- /tests/test-framework/site/listVMs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/site/listVMs.sh -------------------------------------------------------------------------------- /tests/test-framework/tests/simpletest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/tests/simpletest.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/cdashreporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/cdashreporter.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/control.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/ftpsource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/ftpsource.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/guest.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/guestconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/guestconfig.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/reporter.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/result.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/run-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/run-test.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/run.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/source.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/testcase.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/utils.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/virtualmachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/virtualmachine.py -------------------------------------------------------------------------------- /tests/test-framework/vmware/xmlutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-framework/vmware/xmlutils.py -------------------------------------------------------------------------------- /tests/test-installer/BatchSubstitute.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-installer/BatchSubstitute.bat -------------------------------------------------------------------------------- /tests/test-installer/create-test-installer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-installer/create-test-installer.bat -------------------------------------------------------------------------------- /tests/test-installer/create-test-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/test-installer/create-test-installer.sh -------------------------------------------------------------------------------- /tests/testcases/result-example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/testcases/result-example.xml -------------------------------------------------------------------------------- /tests/testcases/testcase1/packagemanagement.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/testcases/testcase1/packagemanagement.qs -------------------------------------------------------------------------------- /tests/testcases/testcase1/test-uninstall.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/testcases/testcase1/test-uninstall.qs -------------------------------------------------------------------------------- /tests/testcases/testcase1/testcase1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/testcases/testcase1/testcase1.cfg -------------------------------------------------------------------------------- /tests/testcases/testcase1/testscript.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/testcases/testcase1/testscript.qs -------------------------------------------------------------------------------- /tests/testreturn/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/testreturn/main.cpp -------------------------------------------------------------------------------- /tests/testreturn/testreturn.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/testreturn/testreturn.pro -------------------------------------------------------------------------------- /tests/tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tests/tests.pro -------------------------------------------------------------------------------- /tools/archivegen/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/archivegen/archive.cpp -------------------------------------------------------------------------------- /tools/archivegen/archivegen.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/archivegen/archivegen.pro -------------------------------------------------------------------------------- /tools/binarycreator/binarycreator.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/binarycreator/binarycreator.pro -------------------------------------------------------------------------------- /tools/binarycreator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/binarycreator/main.cpp -------------------------------------------------------------------------------- /tools/build_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/build_installer.py -------------------------------------------------------------------------------- /tools/devtool/binarydump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/devtool/binarydump.cpp -------------------------------------------------------------------------------- /tools/devtool/binarydump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/devtool/binarydump.h -------------------------------------------------------------------------------- /tools/devtool/binaryreplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/devtool/binaryreplace.cpp -------------------------------------------------------------------------------- /tools/devtool/binaryreplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/devtool/binaryreplace.h -------------------------------------------------------------------------------- /tools/devtool/devtool.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/devtool/devtool.pro -------------------------------------------------------------------------------- /tools/devtool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/devtool/main.cpp -------------------------------------------------------------------------------- /tools/devtool/operationrunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/devtool/operationrunner.cpp -------------------------------------------------------------------------------- /tools/devtool/operationrunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/devtool/operationrunner.h -------------------------------------------------------------------------------- /tools/repocompare/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/repocompare/main.cpp -------------------------------------------------------------------------------- /tools/repocompare/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/repocompare/mainwindow.cpp -------------------------------------------------------------------------------- /tools/repocompare/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/repocompare/mainwindow.h -------------------------------------------------------------------------------- /tools/repocompare/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/repocompare/mainwindow.ui -------------------------------------------------------------------------------- /tools/repocompare/repocompare.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/repocompare/repocompare.pro -------------------------------------------------------------------------------- /tools/repocompare/repositorymanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/repocompare/repositorymanager.cpp -------------------------------------------------------------------------------- /tools/repocompare/repositorymanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/repocompare/repositorymanager.h -------------------------------------------------------------------------------- /tools/repogen/repogen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/repogen/repogen.cpp -------------------------------------------------------------------------------- /tools/repogen/repogen.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/repogen/repogen.pro -------------------------------------------------------------------------------- /tools/tools.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/installer-framework/HEAD/tools/tools.pro --------------------------------------------------------------------------------