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.
This commit is contained in:
smeredith%netscape.com 2002-05-22 00:46:11 +00:00
Родитель 38063b4020
Коммит c1577e6dfc
2 изменённых файлов: 13 добавлений и 0 удалений

Двоичные данные
cck/customcd/shell/bmps/Install.bmp

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 302 KiB

После

Ширина:  |  Высота:  |  Размер: 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);