Skip to content

Commit af7dd39

Browse files
committed
add mod packaging info and update icons
1 parent 591db84 commit af7dd39

File tree

6 files changed

+40
-1
lines changed

6 files changed

+40
-1
lines changed

package_mod.bat

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
@echo off
2+
setlocal
3+
4+
REM /* this initializes the values for the different variables referenced in compatible_games */
5+
call "%~dp0..\ModPackaging\utilities\ie_games.bat"
6+
7+
REM /* MODIFY: set the values of the 3 variables below to reflect the current mod version */
8+
set "mod_name=Spell Revisions"
9+
set mod_version=v3.1.03
10+
set mod_folder=spell_rev
11+
12+
REM /* MODIFY: list here which IE games the mod is compatible with, from this list of possibilities: */
13+
REM /* %bg1%, %bg2%, %bgt%, %tutu%, %bgee%, %bgiiee%, %iwd1%, %iwdee%, %iwd2%, %iwd2ee%, %iwd-in-bg2%, %pst%, %pstee% */
14+
set "compatible_games=%bg2%, %bgt%, %tutu%, %bgee%, or %bgiiee%"
15+
16+
REM /* MODIFY: these variables have sensible default values but they may need to be tweaked to match your particular mod */
17+
REM /* the ico_folder is where your .ico files are stored, which is usually the mod's backup or style folder */
18+
REM /* the audio_folder is where your sox and oggdec.exe utilities are stored (leave alone if you have no audio) */
19+
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) */
20+
REM /* the iconv_folder is where your iconv.exe utility is stored (leave alone if you are not converting charsets for BGEE) */
21+
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 */
22+
set ico_folder=%mod_folder%\backup
23+
set audio_folder=%mod_folder%\audio
24+
set tispack_folder=%mod_folder%\tiz
25+
set iconv_folder=%mod_folder%\languages\iconv
26+
set mod_readme=http://www.gibberlings3.net/readmes/readme-%mod_folder%.html
27+
28+
REM /* MODIFY: if you don't need to build a specific package, you can disable it by setting the appropriate variable below to 0 */
29+
set build_windows=1
30+
set build_osx=1
31+
set build_linux=1
32+
33+
REM /* MODIFY: if you want to avoid making filenames lowercase, you can disable that by setting the variable below to 0 */
34+
set lowercase_filenames=0
35+
36+
REM /* this performs the actual packaging */
37+
call "%~dp0..\ModPackaging\utilities\complete_packaging.bat"
38+
39+
endlocal

spell_rev/backup/g3.ico

48.1 KB
Binary file not shown.

spell_rev/backup/g3_sfx.ico

-29.3 KB
Binary file not shown.

spell_rev/backup/g3banner.bmp

28.1 KB
Binary file not shown.

spell_rev/backup/g3icon.ico

60.5 KB
Binary file not shown.

spell_rev/readme-spell_rev.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title>Spell Revisions</title>
55
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
66
<link rel="stylesheet" href="backup/g3readme.css" type="text/css" />
7-
<link href="backup/g3.ico" rel="icon" type="image/bmp" />
7+
<link href="backup/g3icon.ico" rel="icon" type="image/bmp" />
88
<style type="text/css">
99
.red {color: #ff0000}
1010
li.spaced_item {margin-bottom: 15px}

0 commit comments

Comments
 (0)