mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 19:53:01 +01:00
Bump to version 0.11.0
This commit is contained in:
parent
35aa6922d6
commit
93fb84206d
@ -55,9 +55,9 @@ author = 'Jakob Kreuze'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.10.1'
|
version = '0.11.0'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# 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
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Version
|
# Version
|
||||||
TOXIC_VERSION = 0.10.1
|
TOXIC_VERSION = 0.11.0
|
||||||
REV = $(shell git rev-list HEAD --count 2>/dev/null || echo -n "error")
|
REV = $(shell git rev-list HEAD --count 2>/dev/null || echo -n "error")
|
||||||
ifneq (, $(findstring error, $(REV)))
|
ifneq (, $(findstring error, $(REV)))
|
||||||
VERSION = $(TOXIC_VERSION)
|
VERSION = $(TOXIC_VERSION)
|
||||||
|
@ -82,6 +82,7 @@ static const char *chat_cmd_list[] = {
|
|||||||
"/conference",
|
"/conference",
|
||||||
#ifdef GAMES
|
#ifdef GAMES
|
||||||
"/game",
|
"/game",
|
||||||
|
"/play",
|
||||||
#endif
|
#endif
|
||||||
"/help",
|
"/help",
|
||||||
"/invite",
|
"/invite",
|
||||||
@ -94,7 +95,6 @@ static const char *chat_cmd_list[] = {
|
|||||||
"/nick",
|
"/nick",
|
||||||
"/note",
|
"/note",
|
||||||
"/nospam",
|
"/nospam",
|
||||||
"/play",
|
|
||||||
"/quit",
|
"/quit",
|
||||||
"/savefile",
|
"/savefile",
|
||||||
"/sendfile",
|
"/sendfile",
|
||||||
|
@ -88,7 +88,7 @@ static const char *conference_cmd_list[] = {
|
|||||||
"/decline",
|
"/decline",
|
||||||
"/exit",
|
"/exit",
|
||||||
"/conference",
|
"/conference",
|
||||||
#ifdef GAME
|
#ifdef GAMES
|
||||||
"/game",
|
"/game",
|
||||||
#endif
|
#endif
|
||||||
"/help",
|
"/help",
|
||||||
|
@ -1773,6 +1773,7 @@ void chess_cb_on_keypress(GameData *game, int key, void *cb_data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
case '\r':
|
case '\r':
|
||||||
|
|
||||||
/* Intentional fallthrough */
|
/* Intentional fallthrough */
|
||||||
case ' ': {
|
case ' ': {
|
||||||
chess_do_input(game, state);
|
chess_do_input(game, state);
|
||||||
|
@ -60,7 +60,7 @@ static const char *glob_cmd_list[] = {
|
|||||||
"/decline",
|
"/decline",
|
||||||
"/exit",
|
"/exit",
|
||||||
"/conference",
|
"/conference",
|
||||||
#ifdef GAME
|
#ifdef GAMES
|
||||||
"/game",
|
"/game",
|
||||||
#endif
|
#endif
|
||||||
"/help",
|
"/help",
|
||||||
|
Loading…
Reference in New Issue
Block a user