зеркало из https://github.com/mozilla/pjs.git
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:
Родитель
38063b4020
Коммит
c1577e6dfc
Двоичные данные
cck/customcd/shell/bmps/Install.bmp
Двоичные данные
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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче