diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2022-05-21 13:42:15 +0200 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2022-05-21 13:42:15 +0200 |
commit | 40e8d51a27f85dc7cac8c685add574d48a997180 (patch) | |
tree | 6d7b46b6723cad4c43afd12a63bc55ec93dd0ae2 | |
parent | 18916eadbf15261b7462f7da95eaeea4a8a94e21 (diff) |
Bump version to 0.20
-rwxr-xr-x | vchat-client.sgml | 2 | ||||
-rwxr-xr-x | vchat-config.h | 2 | ||||
-rwxr-xr-x | vchat-ui.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/vchat-client.sgml b/vchat-client.sgml index 3d6fbc7..7e96b28 100755 --- a/vchat-client.sgml +++ b/vchat-client.sgml | |||
@@ -101,7 +101,7 @@ overridden in the configfile.</para></listitem> | |||
101 | 101 | ||
102 | <varlistentry> | 102 | <varlistentry> |
103 | <term><option>-f</option> <replaceable>from</replaceable></term> | 103 | <term><option>-f</option> <replaceable>from</replaceable></term> |
104 | <listitem><para>set from (default "vc-alpha-0.19")</para></listitem> | 104 | <listitem><para>set from (default "vc-alpha-0.20")</para></listitem> |
105 | </varlistentry> | 105 | </varlistentry> |
106 | 106 | ||
107 | <varlistentry> | 107 | <varlistentry> |
diff --git a/vchat-config.h b/vchat-config.h index 954a029..89cf231 100755 --- a/vchat-config.h +++ b/vchat-config.h | |||
@@ -29,7 +29,7 @@ extern unsigned int hscroll; | |||
29 | static volatile configoption configoptions[] = { | 29 | static volatile configoption configoptions[] = { |
30 | /* config-option type name in file default value value localvar */ | 30 | /* config-option type name in file default value value localvar */ |
31 | {CF_NICK, CO_STR, "nick", NULL, NULL, { NULL } }, | 31 | {CF_NICK, CO_STR, "nick", NULL, NULL, { NULL } }, |
32 | {CF_FROM, CO_STR, "from", "vc-alpha-0.19", NULL, { NULL } }, | 32 | {CF_FROM, CO_STR, "from", "vc-alpha-0.20", NULL, { NULL } }, |
33 | {CF_SERVERHOST, CO_STR, "host", "localhost", NULL, { NULL } }, | 33 | {CF_SERVERHOST, CO_STR, "host", "localhost", NULL, { NULL } }, |
34 | {CF_SERVERPORT, CO_STR, "port", "2325", NULL, { NULL } }, | 34 | {CF_SERVERPORT, CO_STR, "port", "2325", NULL, { NULL } }, |
35 | {CF_CIPHERSUITE, CO_STR, "ciphers", NULL, NULL, { NULL } }, | 35 | {CF_CIPHERSUITE, CO_STR, "ciphers", NULL, NULL, { NULL } }, |
@@ -39,7 +39,7 @@ const char *vchat_ui_version = "vchat-ui.c $Id$"; | |||
39 | 39 | ||
40 | /* externally used variables */ | 40 | /* externally used variables */ |
41 | /* current string in topic window */ | 41 | /* current string in topic window */ |
42 | char topicstr[TOPICSTRSIZE] = "[] VChat 0.19"; | 42 | char topicstr[TOPICSTRSIZE] = "[] VChat 0.20"; |
43 | /* current string in console window */ | 43 | /* current string in console window */ |
44 | char consolestr[CONSOLESTRSIZE] = "[ Get help: .h for server /h for client commands"; | 44 | char consolestr[CONSOLESTRSIZE] = "[ Get help: .h for server /h for client commands"; |
45 | 45 | ||