1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-26 20:27:47 +02:00

Bump to version 0.11.0

This commit is contained in:
jfreegman 2021-04-22 17:05:04 -04:00
parent 35aa6922d6
commit 93fb84206d
No known key found for this signature in database
GPG Key ID: 3627F3144076AE63
6 changed files with 7 additions and 6 deletions

View File

@ -55,9 +55,9 @@ author = 'Jakob Kreuze'
# built documents.
#
# The short X.Y version.
version = '0.10.1'
version = '0.11.0'
# The full version, including alpha/beta/rc tags.
release = '0.10.1'
release = '0.11.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -1,5 +1,5 @@
# Version
TOXIC_VERSION = 0.10.1
TOXIC_VERSION = 0.11.0
REV = $(shell git rev-list HEAD --count 2>/dev/null || echo -n "error")
ifneq (, $(findstring error, $(REV)))
VERSION = $(TOXIC_VERSION)

View File

@ -82,6 +82,7 @@ static const char *chat_cmd_list[] = {
"/conference",
#ifdef GAMES
"/game",
"/play",
#endif
"/help",
"/invite",
@ -94,7 +95,6 @@ static const char *chat_cmd_list[] = {
"/nick",
"/note",
"/nospam",
"/play",
"/quit",
"/savefile",
"/sendfile",

View File

@ -88,7 +88,7 @@ static const char *conference_cmd_list[] = {
"/decline",
"/exit",
"/conference",
#ifdef GAME
#ifdef GAMES
"/game",
#endif
"/help",

View File

@ -1773,6 +1773,7 @@ void chess_cb_on_keypress(GameData *game, int key, void *cb_data)
}
case '\r':
/* Intentional fallthrough */
case ' ': {
chess_do_input(game, state);

View File

@ -60,7 +60,7 @@ static const char *glob_cmd_list[] = {
"/decline",
"/exit",
"/conference",
#ifdef GAME
#ifdef GAMES
"/game",
#endif
"/help",