
- The update definitions are now stored in the JSON format - The QSimpleUpdater now allows updating separate “modules” of the application, this can be useful if you are using a large application with several updatable plugins - You can now implement your own procedures to install the downloaded updates
17 lines
466 B
Prolog
17 lines
466 B
Prolog
#
|
|
# Copyright (c) 2014-2016 Alex Spataru <alex_spataru@outlook.com>
|
|
#
|
|
# This work is free. You can redistribute it and/or modify it under the
|
|
# terms of the Do What The Fuck You Want To Public License, Version 2,
|
|
# as published by Sam Hocevar. See the COPYING file for more details.
|
|
#
|
|
|
|
TEMPLATE = app
|
|
|
|
FORMS += $$PWD/src/Window.ui
|
|
HEADERS += $$PWD/src/Window.h
|
|
SOURCES += $$PWD/src/Window.cpp \
|
|
$$PWD/src/main.cpp
|
|
|
|
include ($$PWD/../QSimpleUpdater.pri)
|