mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-10 07:50:19 +00:00
add minimal installation type
This commit is contained in:
@@ -28,10 +28,11 @@ ArchitecturesInstallIn64BitMode=x64
|
||||
[Types]
|
||||
Name: "normal"; Description: "Normal Installation"
|
||||
Name: "full"; Description: "Full Installation"
|
||||
Name: "minimal"; Description: "Minimal Installation"
|
||||
Name: "custom"; Description: "Custom Installation"; Flags: iscustom
|
||||
|
||||
[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: "spelling"; Description: "Spelling Dictionaries"; 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;
|
||||
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;
|
||||
}
|
||||
@@ -104,7 +104,7 @@ sha256_file (char *path, char outputBuffer[65])
|
||||
}
|
||||
|
||||
int
|
||||
dccrecv_cb(char *word[], void *userdata)
|
||||
dccrecv_cb (char *word[], void *userdata)
|
||||
{
|
||||
char sum[65];
|
||||
|
||||
@@ -117,7 +117,7 @@ dccrecv_cb(char *word[], void *userdata)
|
||||
}
|
||||
|
||||
int
|
||||
dccoffer_cb(char *word[], void *userdata)
|
||||
dccoffer_cb (char *word[], void *userdata)
|
||||
{
|
||||
char sum[65];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user