Questions tagged [qt-installer]

The Qt Installer Framework provides a set of tools and utilities to create installers for the supported desktop Qt platforms: Linux, Microsoft Windows, and Mac OS X.

More information is available here

154 questions
1
vote
2 answers

Qt Installer Framework : Hide the Back button

How to Hide the Back Button in Qt installer framework? Please see attached image.
Romz Lat
  • 11
  • 4
1
vote
1 answer

Qt Installer Framework - Reading downloaded package version

Using QtIFW-1.5.0, so far I'm able to generate an online installer for my Qt application on Windows. The installer downloads the appropriate package from my web server and performs some operations defined in the control script installscript.qs, e.g.…
Laura
  • 193
  • 12
1
vote
1 answer

Creating set up for Qt Project

I have Qt application on Lnux. I want to create a executable/set up for this so as to distribute it on Windows and there is no need to install Qt. I have created the executable for this by including all the dlls but to run it user needs to go inside…
user3877872
  • 809
  • 2
  • 9
  • 16
1
vote
1 answer

Qt Installer framework - Customizing the UNINSTALLER

I am not able to get a hold of customizing the un-installation process, though I could succeed to some extent customizing the installation process. When I register for the signals “installationFinished” my functions in the installscript.qs gets…
Sandeep
  • 1,237
  • 1
  • 14
  • 29
0
votes
0 answers

How can I create a desktop shortcut or something similar with Qt Installer Framework on Linux?

I'm currently trying to deploy a small application for Linux using linuxdeploy and the Qt Installer Framework. Now the whole process of running linuxdeploy and creating my installer works fine and when I run the installer, it installs the following…
Nia
  • 1
  • 1
0
votes
0 answers

Unable to access Qt 6.2.4 archive

Unable to access an older version of qt software from qt windows installer in the custom installation process. I am trying to install Qt (6.2.4) from the qt windows installer to build Wireshark, but I am facing the issue of not being able to access…
0
votes
0 answers

Qt Installer Framework, add checkbox to ready for uninstallation page

Following the documentation, I was able to add a checkbox to the QInstaller.ReadyForInstallation page: installer.addWizardPageItem( component, "ReadMeCheckBoxForm", QInstaller.ReadyForInstallation) But QInstaller does not have a corresponding value…
0
votes
0 answers

How can I build/compile Qt installer fromwork from source?

I have to build Qt installer framework from source because of this problem that is mentioned here Qt Installer Framework - Removing the Maintenance Tool Based on this answer, this is the only way to solve my issue. Although I attempted to build…
Alireza_Armn
  • 37
  • 1
  • 9
0
votes
0 answers

QtInstaller framework how to hide a page

According to QtInstaller documentation , we can hide a default page , by setting their visibility to false: installer.setDefaultPageVisible(QInstaller.TargetDirectory, false); installer.setDefaultPageVisible(QInstaller.ComponentSelection,…
Mohammad Kanan
  • 4,452
  • 10
  • 23
  • 47
0
votes
0 answers

QHotKey compilation error - ubuntu, docker

I get the latest version from the https://github.com/Skycoder42/QHotkey I try to build with the command: cmake -B build -S . -DQT_DEFAULT_MAJOR_VERSION=6 I get those errors during the compilation CMake Error at CMakeLists.txt:16…
Elias
  • 1
  • 1
0
votes
0 answers

How can I add data to folders use Qt Installer Framework?

I want to install my program and add some data to other directories without deleting those directories, but installer, created by bynarycreator, wants to delete the directories before copying the new data. Manually, I just copy the directories to…
Papayaved
  • 103
  • 1
  • 1
  • 11
0
votes
0 answers

Qt6 Installer SDK and Online Installation source

I am trying to create an online installer for a Qt6 application. In this case, it is a Python base GUI app, compiled with Nuitka. After creating the repository and the installer itself repogen -p packages repository binarycreator --online-only -c…
Slesa
  • 245
  • 2
  • 11
0
votes
0 answers

Qt Installer Framework - Add a widget multiple times

I want to add a dynamic number of checkboxes to a page. Calling installer.addWizardPageItem() multiple times with the same widget name returns true, but only one is shown.
0
votes
1 answer

Run a batch script before uninstallation using QT Installer Framework

I have a batch script that does some clean up, which is installed along the main application. However, I cannot seem to execute the batch file before uninstallation. Here is my install script: function Component() { } function Controller() { …
Alp Erbil
  • 11
  • 2
0
votes
1 answer

QTIFW readFile(string filePath, string codecName), what codec?

On QTIFW I see there is a function to read a file string readFile(string filePath, string codecName) but what codec means? How to use this function? https://doc.qt.io/qtinstallerframework/scripting-installer.html#readFile-method
KcFnMi
  • 5,516
  • 10
  • 62
  • 136