The Qt auto updater library is a library to automatically check for updates and install them based on various backends. This repository includes:
The library was recently updated to version 3.0. That release differes strongly from 2.1. Use the Porting Guide to get your application from 2.1 to 3.0!
Here some random sample screenshots of the gui (The rocket of the information dialog is the "application icon" and depends on your application). These are various parts of the GUI in various different styles. The first row shows elements from the widgets module, the second from quick
Element | Widgets Screenshots | Quick Screenshots |
---|---|---|
Progress Dialog | ||
Information Dialog | ||
Update Button | ||
Install Wizard |
There are multiple ways to install the Qt module, sorted by preference:
qt5-autoupdater
brew tap Skycoder42/qt-modules
qtautoupdater
source /usr/local/opt/qtautoupdater/bashrc.sh
before you can use the module./path/to/MaintenanceTool --addRepository <url>
with one of the following urls (Alternatively you can add it via the GUI, as stated in the previously linked GUI):
Qt > Qt 5.13 > Skycoder42 Qt modules
)Qt Autoupdater
git clone
or download from the releases. If you choose the second option, you have to manually create a folder named .git
in the projects root directory, otherwise the build will fail.qmake
make
(If you want the tests/examples/etc. run make all
)make doxygen
to generate the documentationmake -j1 run-tests
to build and run all testsmake install
The autoupdater is provided as a Qt module. Thus, all you have to do is add the module, and then, in your project, add QT += autoupdatercore
or QT += autoupdaterwidgets
to your .pro file - depending on what you need! For QML, you can import the library as de.skycoder42.QtAutoUpdater.Core
and de.skycoder42.QtAutoUpdater.Quick
.
Note: When preparing an application for the release, the windeployqt
and macdeployqt
will not include the plugins! You have to manually copy matching libraries from <QT_PLUGIN_DIR>/updaters
. The d
suffix is used on windows and the _debug
suffix on macos for the debug version of the plugins.
The following examples assumes you are using the Qt Installer Framework as backend. The usage is similar for all backends, as you only have to adjust the configuration. This document expects you to already know the installation system you are using. If you are new to all of this, I can personally recommend you to use the Qt Installer Framework. It is relatively easy to use and works for Linux, Windows and macOs.
Here are some links that will explain how to create an online-installer using the QtIFW framework. Once you have figured out how to do that, it's only a small step to the updater library:
Since this library requires the maintenancetool that is deployed with every Qt Installer Framework installation, the examples cannot be tested without a maintenancetool! If you intend to recreate this example, set the path to the MaintenanceTool
that is deployed with the installation of Qt (or any other maintenancetool). So make shure to adjust the path if you try to run the examples.
The following example shows the basic usage of the updater. Only the core library is required for this example. It creates a new updater instance that is connected to the maintenancetool located at "C:/Qt/MaintenanceTool". As soon as the application starts, it will check for updates and print the update result. If updates are available, their details will be printed and the maintenancetool is scheduled to start on exit. In both cases, the application will quit afterwards.
This example will show you the full dialog flow of the update controller, which is used by the widgets library to control the update GUI flow. Since there is no mainwindow in this example, you will only see the controller dialogs. Please note that you can control how much of that dialogset will be shown to the user. This example is reduced! for a full example with all parts of the controller, check the examples/autoupdatergui/WidgetsUpdater
application.
Unlike the widgets variant, in quick you simply place all the components you want to be shown and attach the to an updater. The flow is created automatically, since all the components know when to show up. It was designed differently, as QML follows a declarative approach. The following shows a basic QML based GUI using simple dialogs. This example is reduced! for a full example with all parts of the controller, check the examples/autoupdaterquick/QuickUpdater
application.
The documentation is available on github pages. It was created using doxygen. The HTML-documentation and Qt-Help files are shipped together with the module for both the custom repository and the package on the release page. Please note that doxygen docs do not perfectly integrate with QtCreator/QtAssistant.
The core library does not need any translation, because it won't show anything to the user. The Gui library however does. The project is prepared for translation. Only a few translations are provided. However, you can easily create the translations yourself. The file src/translations/qtautoupdater_template.ts
is a ready-made TS file. Just rename it (e.g. to qtautoupdater_jp.ts
) and open it with the QtLinguist to create the translations.