-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add mod packaging info and update icons
- Loading branch information
Showing
6 changed files
with
40 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
@echo off | ||
setlocal | ||
|
||
REM /* this initializes the values for the different variables referenced in compatible_games */ | ||
call "%~dp0..\ModPackaging\utilities\ie_games.bat" | ||
|
||
REM /* MODIFY: set the values of the 3 variables below to reflect the current mod version */ | ||
set "mod_name=Spell Revisions" | ||
set mod_version=v3.1.03 | ||
set mod_folder=spell_rev | ||
|
||
REM /* MODIFY: list here which IE games the mod is compatible with, from this list of possibilities: */ | ||
REM /* %bg1%, %bg2%, %bgt%, %tutu%, %bgee%, %bgiiee%, %iwd1%, %iwdee%, %iwd2%, %iwd2ee%, %iwd-in-bg2%, %pst%, %pstee% */ | ||
set "compatible_games=%bg2%, %bgt%, %tutu%, %bgee%, or %bgiiee%" | ||
|
||
REM /* MODIFY: these variables have sensible default values but they may need to be tweaked to match your particular mod */ | ||
REM /* the ico_folder is where your .ico files are stored, which is usually the mod's backup or style folder */ | ||
REM /* the audio_folder is where your sox and oggdec.exe utilities are stored (leave alone if you have no audio) */ | ||
REM /* the tispack_folder is the root directory that contains the win32, osx, and unix subfolders where your tisunpack utilities are stored (leave alone if you have no tilesets) */ | ||
REM /* the iconv_folder is where your iconv.exe utility is stored (leave alone if you are not converting charsets for BGEE) */ | ||
REM /* the mod_readme link should point to the online readme and work fine as-is if the mod uses the standard G3 naming scheme */ | ||
set ico_folder=%mod_folder%\backup | ||
set audio_folder=%mod_folder%\audio | ||
set tispack_folder=%mod_folder%\tiz | ||
set iconv_folder=%mod_folder%\languages\iconv | ||
set mod_readme=http://www.gibberlings3.net/readmes/readme-%mod_folder%.html | ||
|
||
REM /* MODIFY: if you don't need to build a specific package, you can disable it by setting the appropriate variable below to 0 */ | ||
set build_windows=1 | ||
set build_osx=1 | ||
set build_linux=1 | ||
|
||
REM /* MODIFY: if you want to avoid making filenames lowercase, you can disable that by setting the variable below to 0 */ | ||
set lowercase_filenames=0 | ||
|
||
REM /* this performs the actual packaging */ | ||
call "%~dp0..\ModPackaging\utilities\complete_packaging.bat" | ||
|
||
endlocal |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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