add minimal installation type
This commit is contained in:
parent
41c46911d1
commit
c205b14721
|
@ -28,10 +28,11 @@ ArchitecturesInstallIn64BitMode=x64
|
||||||
[Types]
|
[Types]
|
||||||
Name: "normal"; Description: "Normal Installation"
|
Name: "normal"; Description: "Normal Installation"
|
||||||
Name: "full"; Description: "Full Installation"
|
Name: "full"; Description: "Full Installation"
|
||||||
|
Name: "minimal"; Description: "Minimal Installation"
|
||||||
Name: "custom"; Description: "Custom Installation"; Flags: iscustom
|
Name: "custom"; Description: "Custom Installation"; Flags: iscustom
|
||||||
|
|
||||||
[Components]
|
[Components]
|
||||||
Name: "libs"; Description: "XChat-WDK"; Types: normal full custom; Flags: fixed
|
Name: "libs"; Description: "XChat-WDK"; Types: normal full minimal custom; Flags: fixed
|
||||||
Name: "translations"; Description: "Translations"; Types: normal full custom; Flags: disablenouninstallwarning
|
Name: "translations"; Description: "Translations"; Types: normal full custom; Flags: disablenouninstallwarning
|
||||||
Name: "spelling"; Description: "Spelling Dictionaries"; Types: full custom; Flags: disablenouninstallwarning
|
Name: "spelling"; Description: "Spelling Dictionaries"; Types: full custom; Flags: disablenouninstallwarning
|
||||||
Name: "plugins"; Description: "Plugins"; Types: full custom; Flags: disablenouninstallwarning
|
Name: "plugins"; Description: "Plugins"; Types: full custom; Flags: disablenouninstallwarning
|
||||||
|
|
|
@ -44,7 +44,7 @@ sha256_hash_string (unsigned char hash[SHA256_DIGEST_LENGTH], char outputBuffer[
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < SHA256_DIGEST_LENGTH; i++)
|
for (i = 0; i < SHA256_DIGEST_LENGTH; i++)
|
||||||
{
|
{
|
||||||
sprintf(outputBuffer + (i * 2), "%02x", hash[i]);
|
sprintf (outputBuffer + (i * 2), "%02x", hash[i]);
|
||||||
}
|
}
|
||||||
outputBuffer[64] = 0;
|
outputBuffer[64] = 0;
|
||||||
}
|
}
|
||||||
|
@ -104,7 +104,7 @@ sha256_file (char *path, char outputBuffer[65])
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
dccrecv_cb(char *word[], void *userdata)
|
dccrecv_cb (char *word[], void *userdata)
|
||||||
{
|
{
|
||||||
char sum[65];
|
char sum[65];
|
||||||
|
|
||||||
|
@ -117,7 +117,7 @@ dccrecv_cb(char *word[], void *userdata)
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
dccoffer_cb(char *word[], void *userdata)
|
dccoffer_cb (char *word[], void *userdata)
|
||||||
{
|
{
|
||||||
char sum[65];
|
char sum[65];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue