Fix git ignore (bat was ignored!)

This commit is contained in:
Manfred Karrer 2017-06-28 00:54:58 +02:00
parent 4fafe3ce04
commit 4c46293373
6 changed files with 67 additions and 2 deletions

2
.gitignore vendored
View file

@ -25,8 +25,6 @@ build
/bisq*
/xchange
desktop.ini
*.bat
!package/windows/*bit*.bat
*/target/*
*.class
/gui/deploy/*

View file

@ -0,0 +1,34 @@
:: Invoke from bisq home directory
:: edit iss file -> AppVersion
:: edit -> -BappVersion and -srcfiles
:: 32 bit build
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
SET version=0.5.0
:: Private setup
SET outdir=\\VBOXSVR\vm_shared_windows_32bit
:: Others might use the following
:: SET outdir=.
call "%JAVA_HOME%\bin\javapackager.exe" -deploy ^
-BappVersion="%version%" ^
-native exe ^
-name Bisq ^
-title Bisq ^
-vendor Bisq ^
-outdir %outdir% ^
-appclass io.bisq.gui.app.BisqAppMain ^
-srcfiles %outdir%\Bisq.jar ^
-outfile Bisq ^
-Bicon=package\windows\Bisq.ico ^
-Bruntime="%JAVA_HOME%\jre"
:: when we have support for security manager we use that
:: -BjvmOptions=-Djava.security.manager ^
:: -BjvmOptions=-Djava.security.debug=failure ^
:: -BjvmOptions=-Djava.security.policy=file:bisq.policy ^
:: -srcfiles "core/src/main/resources/bisq.policy" ^

View file

@ -0,0 +1,33 @@
:: Invoke from bisq home directory
:: edit iss file -> AppVersion
:: edit -> -BappVersion and -srcfiles
:: 64 bit build
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
SET version=0.5.0
:: Private setup
SET outdir=\\VBOXSVR\vm_shared_windows
:: Others might use the following
:: SET outdir=.
call "%JAVA_HOME%\bin\javapackager.exe" -deploy ^
-BappVersion="%version%" ^
-native exe ^
-name Bisq ^
-title Bisq ^
-vendor Bisq ^
-outdir %outdir% ^
-appclass io.bisq.gui.app.BisqAppMain ^
-srcfiles %outdir%\Bisq.jar ^
-outfile Bisq ^
-Bicon=package\windows\Bisq.ico ^
-Bruntime="%JAVA_HOME%\jre"
:: when we have support for security manager we use that
:: -BjvmOptions=-Djava.security.manager ^
:: -BjvmOptions=-Djava.security.debug=failure ^
:: -BjvmOptions=-Djava.security.policy=file:bisq.policy ^
:: -srcfiles "core/src/main/resources/bisq.policy" ^

View file

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

View file

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB