From 514073cb7524e134d3ac4ea07b312f1f47b683e3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 11 Aug 2020 07:52:32 +0530 Subject: [PATCH] Fix #2911 --- docs/rc_protocol.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/rc_protocol.rst b/docs/rc_protocol.rst index 989e2866c..6cc229752 100644 --- a/docs/rc_protocol.rst +++ b/docs/rc_protocol.rst @@ -11,12 +11,12 @@ Where ```` is the byte ``0x1b``. The JSON object has the form:: { 'cmd': "command name", - 'version': "kitty version", + 'version': , 'no_response': Optional Boolean, 'payload': , } -The ``version`` above is a string of the form :code:`0.14.2`. If you are developing a +The ``version`` above is an array of the form :code:`[0, 14, 2]`. If you are developing a standalone client, use the kitty version that you are developing against. Using a version greater than the version of the kitty instance you are talking to, will cause a failure.