From 93fb84206decba30e6a2f8f378d2044ab02cb8dd Mon Sep 17 00:00:00 2001 From: jfreegman Date: Thu, 22 Apr 2021 17:05:04 -0400 Subject: [PATCH] Bump to version 0.11.0 --- apidoc/python/source/conf.py | 4 ++-- cfg/global_vars.mk | 2 +- src/chat.c | 2 +- src/conference.c | 2 +- src/game_chess.c | 1 + src/prompt.c | 2 +- 6 files changed, 7 insertions(+), 6 deletions(-) diff --git a/apidoc/python/source/conf.py b/apidoc/python/source/conf.py index ce59973..7439b8d 100644 --- a/apidoc/python/source/conf.py +++ b/apidoc/python/source/conf.py @@ -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. diff --git a/cfg/global_vars.mk b/cfg/global_vars.mk index 15d040b..7d27297 100644 --- a/cfg/global_vars.mk +++ b/cfg/global_vars.mk @@ -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) diff --git a/src/chat.c b/src/chat.c index c6365eb..a14bb27 100644 --- a/src/chat.c +++ b/src/chat.c @@ -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", diff --git a/src/conference.c b/src/conference.c index 6af6afb..de61670 100644 --- a/src/conference.c +++ b/src/conference.c @@ -88,7 +88,7 @@ static const char *conference_cmd_list[] = { "/decline", "/exit", "/conference", -#ifdef GAME +#ifdef GAMES "/game", #endif "/help", diff --git a/src/game_chess.c b/src/game_chess.c index 942c0cf..40c32d1 100644 --- a/src/game_chess.c +++ b/src/game_chess.c @@ -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); diff --git a/src/prompt.c b/src/prompt.c index 7957fc7..fcec4c9 100644 --- a/src/prompt.c +++ b/src/prompt.c @@ -60,7 +60,7 @@ static const char *glob_cmd_list[] = { "/decline", "/exit", "/conference", -#ifdef GAME +#ifdef GAMES "/game", #endif "/help",