Change to the install.bmp. Temp for beta until we get real artwork (like,
from an artist.) Change to make variable substiution in cfg version output. git-svn-id: svn://10.0.0.236/trunk@121992 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 302 KiB After Width: | Height: | Size: 302 KiB |
@@ -1437,6 +1437,19 @@ int interpret(char *cmd)
|
||||
char *filename = strtok(NULL, ",)");
|
||||
char *versiontxt = strtok(NULL, ",)");
|
||||
|
||||
// make a substitution if the text is a variable
|
||||
if (versiontxt[0] == '%')
|
||||
{
|
||||
versiontxt++;
|
||||
char *t = strchr(versiontxt, '%');
|
||||
if (t)
|
||||
{
|
||||
*t = '\0';
|
||||
versiontxt = (char *)(LPCTSTR) GetGlobal(versiontxt);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// pull the cfg file out of the XPI
|
||||
//
|
||||
ExtractXPIFile(xpiname, filename);
|
||||
|
||||
Reference in New Issue
Block a user