-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
9d7b672
commit 7e769f2
Showing
13 changed files
with
93 additions
and
9 deletions.
There are no files selected for viewing
Binary file not shown.
File renamed without changes.
Binary file not shown.
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
Binary file not shown.
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
Binary file not shown.
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,4 @@ | ||
./netkan.exe KWRocketryRedux.netkan | ||
./netkan.exe KWRocketryRedux-GraduatedPwr.netkan | ||
./netkan.exe KWRocketryRedux-InstantPwr.netkan | ||
|
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,32 @@ | ||
rem @echo off | ||
set DEFHOMEDRIVE=d: | ||
set DEFHOMEDIR=%DEFHOMEDRIVE%%HOMEPATH% | ||
set HOMEDIR= | ||
set HOMEDRIVE=%CD:~0,2% | ||
|
||
set RELEASEDIR=d:\Users\jbb\release | ||
set ZIP="c:\Program Files\7-zip\7z.exe" | ||
echo Default homedir: %DEFHOMEDIR% | ||
|
||
set /p HOMEDIR= "Enter Home directory, or <CR> for default: " | ||
|
||
if "%HOMEDIR%" == "" ( | ||
set HOMEDIR=%DEFHOMEDIR% | ||
) | ||
echo %HOMEDIR% | ||
|
||
SET _test=%HOMEDIR:~1,1% | ||
if "%_test%" == ":" ( | ||
set HOMEDRIVE=%HOMEDIR:~0,2% | ||
) | ||
|
||
|
||
|
||
type KWRocketry\GameData\KWRocketry\KWRocketryRedux.version | ||
set /p VERSION= "Enter version: " | ||
|
||
|
||
set FILE="%RELEASEDIR%\KWRocketryRedux-%VERSION%.zip" | ||
IF EXIST %FILE% del /F %FILE% | ||
%ZIP% a -tzip %FILE% KWRocketry | ||
|
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,32 @@ | ||
rem @echo off | ||
set DEFHOMEDRIVE=d: | ||
set DEFHOMEDIR=%DEFHOMEDRIVE%%HOMEPATH% | ||
set HOMEDIR= | ||
set HOMEDRIVE=%CD:~0,2% | ||
|
||
set RELEASEDIR=d:\Users\jbb\release | ||
set ZIP="c:\Program Files\7-zip\7z.exe" | ||
echo Default homedir: %DEFHOMEDIR% | ||
|
||
set /p HOMEDIR= "Enter Home directory, or <CR> for default: " | ||
|
||
if "%HOMEDIR%" == "" ( | ||
set HOMEDIR=%DEFHOMEDIR% | ||
) | ||
echo %HOMEDIR% | ||
|
||
SET _test=%HOMEDIR:~1,1% | ||
if "%_test%" == ":" ( | ||
set HOMEDRIVE=%HOMEDIR:~0,2% | ||
) | ||
|
||
|
||
|
||
type KWRocketry/GameData/KWRocketry/KWRocketryRedux.version | ||
set /p VERSION= "Enter version: " | ||
|
||
|
||
set FILE="%RELEASEDIR%\KWRocketryRedux-%VERSION%.zip" | ||
IF EXIST %FILE% del /F %FILE% | ||
%ZIP% a -tzip %FILE% KWRocketry | ||
|
Binary file not shown.