Updated TODO.txt; New methods to change VersionInformation, this time is completed customizable by the script, default code page and language retrieved from OS, but can be changed by script too; fixed problem with some chars like ©

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2625 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
ramon18 2003-06-10 04:35:09 +00:00
parent 0b9f44233c
commit 397234a5bd
8 changed files with 163 additions and 112 deletions

View file

@ -230,13 +230,10 @@ static tokenType tokenlist[TOK__LAST] =
// Added by ramon 3 jun 2003
{TOK_DEFVAR,"dim",1,0,"VarName"},
// Added by ramon 6 jun 2003
{TOK_VI_PRODUCTVERSION,"VIProductVersion", 1, 0, "product version"},
{TOK_VI_PRODUCTNAME,"VIProductName", 1, 0, "product name"},
{TOK_VI_COMPANY,"VICompanyName", 1, 0, "company name"},
{TOK_VI_COMMENTS,"VIComments", 1, 0, "comments"},
{TOK_VI_LEGALTRADEMARKS,"VILegalTrademarks", 1, 0, "legal trademarks"},
{TOK_VI_LEGALCOPYRIGHTS,"VILegalCopyrights", 1, 0, "legal copyrights"},
{TOK_VI_DESCRIPTION, "VIDescription", 1, 0, "description text"},
{TOK_VI_ADDKEY,"VIAddVersionKey", 2, 0, "[keyname] [value]"},
{TOK_VI_ADDTRANSLATION,"VIAddTranslation", 2, 0, "[short language id] [short codepage id]"},
{TOK_VI_SETVERSIONLANGUAGE,"VISetVersionLanguage", 2, 0, "[short language id] [short codepage id]"},
{TOK_VI_SETPRODUCTVERSION,"VIProductVersion", 1, 0, "[version string X.X.X.X]"},
};
void CEXEBuild::print_help(char *commandname)