parent
51a376ef4a
commit
c33bfb5f8c
@ -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.1.0</Version>
|
<Version>1.2.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>/Applications/PA Calculator</TargetDir>
|
<TargetDir>@ApplicationsDir@/PA Calculator</TargetDir>
|
||||||
</Installer>
|
</Installer>
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<Installer>
|
||||||
|
<Name>PA Calculator</Name>
|
||||||
|
<Version>1.2.0</Version>
|
||||||
|
<Title>PA Calculator Installer</Title>
|
||||||
|
<Publisher>DKM-Tech</Publisher>
|
||||||
|
<StartMenuDir>DKM-Tech</StartMenuDir>
|
||||||
|
<TargetDir>@ApplicationsDirX64@/PA Calculator</TargetDir>
|
||||||
|
</Installer>
|
||||||
@ -0,0 +1,20 @@
|
|||||||
|
@echo off
|
||||||
|
del /s /q setup64bit.exe
|
||||||
|
echo "Ändern Sie alle notwendigen Einstellungen!"
|
||||||
|
packages\com.dkmtech.pacalculator\meta\package.xml
|
||||||
|
cd ..
|
||||||
|
FOR /F "tokens=* USEBACKQ" %%F IN (`dir /b *-Release`) DO (
|
||||||
|
set releaseFolder=%%F
|
||||||
|
)
|
||||||
|
cd %releaseFolder%\Release
|
||||||
|
del /s /q ..\..\installer\packages\com.dkmtech.pacalculator\data\*
|
||||||
|
mkdir ..\..\installer\packages\com.dkmtech.pacalculator\data\setup
|
||||||
|
copy "PA Calculator.exe" "..\..\installer\packages\com.dkmtech.pacalculator\data\setup\PA Calculator.exe"
|
||||||
|
cd ..\..\installer\packages\com.dkmtech.pacalculator\data\setup
|
||||||
|
windeployqt --translations de,en "PA Calculator.exe"
|
||||||
|
7z a -r ../setup *
|
||||||
|
cd ..
|
||||||
|
rmdir /s /q setup
|
||||||
|
cd ..\..\..\
|
||||||
|
binarycreator -c config\config_win.xml -p packages setup64bit.exe
|
||||||
|
del /s packages\com.dkmtech.pacalculator\data\setup.7z
|
||||||
Loading…
Reference in New Issue