-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5012fbf
commit 73db69a
Showing
14 changed files
with
73 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
C:\windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe projects\GEDKeeper2.mswin.sln /p:Configuration=Debug /p:Platform="x86" | ||
@echo off | ||
@%WINDIR%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe projects\GEDKeeper2.mswin.sln /p:Configuration=Debug /p:Platform="x86" | ||
|
||
set BUILD_STATUS=%ERRORLEVEL% | ||
if %BUILD_STATUS%==0 goto test | ||
if not %BUILD_STATUS%==0 goto fail | ||
|
||
:fail | ||
pause | ||
exit /b 1 | ||
|
||
:test | ||
"C:\Program Files (x86)\NUnit 2.6.4\bin\nunit-console-x86.exe" projects\GKTests\bin\Debug\GKTests.dll | ||
pause | ||
pause | ||
exit /b 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
gedkeeper (2.13.0-1~rc1) unstable; urgency=low | ||
gedkeeper (2.13.1-1~rc1) unstable; urgency=low | ||
|
||
* Initial Release. | ||
|
||
-- Sergey V. Zhdanovskih (aka Norseman) <[email protected]> Fri, 08 Jun 2018 19:00:00 +0300 | ||
-- Sergey V. Zhdanovskih (aka Norseman) <[email protected]> Tue, 28 Jun 2018 19:00:00 +0300 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Package: gedkeeper | ||
Version: 2.13.0-1 | ||
Version: 2.13.1-1 | ||
Architecture: all | ||
Depends: mono-runtime (>=5.12) | ||
Maintainer: Sergey V. Zhdanovskih (aka Norseman) <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
call .\clean.cmd | ||
call .\clean_all.cmd | ||
|
||
call .\build_all.mswin.x86.cmd | ||
|
||
set BUILD_STATUS=%ERRORLEVEL% | ||
if %BUILD_STATUS%==0 goto installer | ||
if not %BUILD_STATUS%==0 goto fail | ||
|
||
:fail | ||
pause | ||
exit /b 1 | ||
|
||
:installer | ||
"C:\Program Files (x86)\NSIS\makensis.exe" .\deploy\gk2_win_setup.nsi | ||
pause | ||
exit /b 0 |