Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
AgustinSRG committed Jun 18, 2022
1 parent 04d53c8 commit 3dab3ba
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">

<!-- Use * to generate product ID on every build -->
<Product Id="a3cf4f9c-0c30-46da-ac54-b4c84977680a" Name="ImageToMapMC" Language="1033" Version="1.2.1.0" Manufacturer="asanrom" UpgradeCode="1a73ad10-cffe-462a-ab4e-aefc9a2bd53b">
<Product Id="a3cf4f9c-0c30-46da-ac54-b4c84977680a" Name="ImageToMapMC" Language="1033" Version="1.2.2.0" Manufacturer="asanrom" UpgradeCode="1a73ad10-cffe-462a-ab4e-aefc9a2bd53b">

<Package Compressed="yes" InstallScope="perMachine" Manufacturer="AgustinSRG" Description="Converts images to Minecraft maps." Platform="x64" />

Expand Down
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ call cmake -DCMAKE_BUILD_TYPE=Release -A x64 -Ssrc -Brelease

call cmake --build release --config Release

call zip -r release/ImageToMapMC-1.2.1-Windows-x64.zip release/Release
call zip -r release/ImageToMapMC-1.2.2-Windows-x64.zip release/Release
6 changes: 3 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ cmake --build release --config Release

rm -rf release/bin || true

rm -rf release/ImageToMapMC-1.2.1-linux-x64.tar.gz || true
rm -rf release/ImageToMapMC-1.2.2-linux-x64.tar.gz || true

mkdir release/bin

cp release/mcmap release/bin/mcmap
cp release/mcmap-gui release/bin/mcmap-gui

tar -cvzf release/ImageToMapMC-1.2.1-linux-x64.tar.gz release/bin
tar -cvzf release/ImageToMapMC-1.2.2-linux-x64.tar.gz release/bin

echo "DONE: Created release ImageToMapMC-1.2.1-linux-x64.tar.gz"
echo "DONE: Created release ImageToMapMC-1.2.2-linux-x64.tar.gz"
2 changes: 1 addition & 1 deletion build32.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ call cmake -DCMAKE_BUILD_TYPE=Release -A Win32 -Ssrc -Brelease32

call cmake --build release32 --config Release

call zip -r release32/ImageToMapMC-1.2.1-Windows-Win32.zip release32/Release
call zip -r release32/ImageToMapMC-1.2.2-Windows-Win32.zip release32/Release
2 changes: 1 addition & 1 deletion make-wix-installer.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

call candle -ext WixUIExtension -ext WixUtilExtension -arch x64 Product.wxs -o release\Product.wixobj

call light release\Product.wixobj -o release\ImageToMapMC-1.2.1-x64.msi -ext WixUIExtension -ext WixUtilExtension
call light release\Product.wixobj -o release\ImageToMapMC-1.2.2-x64.msi -ext WixUIExtension -ext WixUtilExtension

0 comments on commit 3dab3ba

Please sign in to comment.