v1.15.3: change copy only exe to: copy release folder and default: disabled
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Installer>
|
||||
<Name>ProjektManager</Name>
|
||||
<Version>1.15.2</Version>
|
||||
<Version>1.15.3</Version>
|
||||
<Title><Name>ProjektManager</Name> Installer</Title>
|
||||
<InstallerApplicationIcon>installerIcon1</InstallerApplicationIcon>
|
||||
<InstallerWindowIcon>installerIcon2</InstallerWindowIcon>
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Package>
|
||||
<DisplayName>ProjektManager 1.15.2</DisplayName>
|
||||
<DisplayName>ProjektManager 1.15.3</DisplayName>
|
||||
<Description>A Program to manage my Qt Projects</Description>
|
||||
<Version>1.15.2</Version>
|
||||
<Version>1.15.3</Version>
|
||||
<Default>true</Default>
|
||||
<ReleaseDate>2024-04-09</ReleaseDate>
|
||||
<Licenses>
|
||||
|
@@ -276,10 +276,10 @@
|
||||
</font>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Nur Executable austauschen ! [release] > [debug] !</string>
|
||||
<string>Ganzen Exe-Ordner austauschen ? ! [release] > [debug] !</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
#include <QApplication>
|
||||
#include "wakeuplistener.h"
|
||||
|
||||
QString MainWindow::version = "1.15.2";
|
||||
QString MainWindow::version = "1.15.3";
|
||||
QString MainWindow::appName = "ProjektManager";
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
|
@@ -724,7 +724,7 @@ bool Worker::createInstaller()
|
||||
|
||||
|
||||
//SCHRITT 2: Copy Exe / Copy cleaned Folder
|
||||
if(extraData.updater && (!extraData.copyRelease || !dataDir.exists())) {
|
||||
if(extraData.updater && (extraData.copyRelease || !dataDir.exists())) {
|
||||
emit newOutput(" > Copy Programm Data...");
|
||||
|
||||
if(dataDir.exists()) {
|
||||
|
Reference in New Issue
Block a user