Small Corrections for Windows Installer

pull/4/head v1.1
Alexander Diamadis 4 years ago
parent 67fd78c75b
commit cf2319decc

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<Installer> <Installer>
<Name>PA Calculator</Name> <Name>PA Calculator</Name>
<Version>1.0</Version> <Version>1.1.0</Version>
<Title>PA Calculator Installer</Title> <Title>PA Calculator Installer</Title>
<Publisher>DKM-Tech</Publisher> <Publisher>DKM-Tech</Publisher>
<StartMenuDir>DKM-Tech</StartMenuDir> <StartMenuDir>DKM-Tech</StartMenuDir>
<TargetDir>@ApplicationsDir@/PA Calculator</TargetDir> <TargetDir>@ApplicationsDirX64@/PA Calculator</TargetDir>
</Installer> </Installer>

@ -2,8 +2,8 @@
<Package> <Package>
<DisplayName>PA-Calculator</DisplayName> <DisplayName>PA-Calculator</DisplayName>
<Description>Install PA-Calculator</Description> <Description>Install PA-Calculator</Description>
<Version>1.0</Version> <Version>1.1</Version>
<ReleaseDate>2021-11-07</ReleaseDate> <ReleaseDate>2022-02-06</ReleaseDate>
<Licenses> <Licenses>
<License name="GNU GENERAL PUBLIC LICENSE" file="license.txt" /> <License name="GNU GENERAL PUBLIC LICENSE" file="license.txt" />
</Licenses> </Licenses>

@ -2,6 +2,10 @@
#include <QApplication> #include <QApplication>
#ifdef Q_OS_WIN
#pragma comment(linker, "/SUBSYSTEM:windows /ENTRY:mainCRTStartup")
#endif
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
QApplication a(argc, argv); QApplication a(argc, argv);

Loading…
Cancel
Save