From 23ad19a756649ed9f6677b598e5361c5cce6847b Mon Sep 17 00:00:00 2001 From: Georgii Surkov <37121527+gsurkov@users.noreply.github.com> Date: Fri, 10 Nov 2023 09:24:27 +0300 Subject: [FL-3618] Support for button indices (#47) * Add index field to AppButtonPressRequest message * Update changelog --- Changelog | 4 ++++ application.proto | 1 + 2 files changed, 5 insertions(+) diff --git a/Changelog b/Changelog index a128698..be5fa9c 100644 --- a/Changelog +++ b/Changelog @@ -1,5 +1,9 @@ # Changelog +## [0.21] +### Added +- Application AppButtonPressRequest now supports button indices in addition to names. + ## [0.20] ### Added - Storage ListRequest message now has a file size filter. diff --git a/application.proto b/application.proto index b5cec9a..eae150d 100644 --- a/application.proto +++ b/application.proto @@ -24,6 +24,7 @@ message AppLoadFileRequest { message AppButtonPressRequest { string args = 1; + int32 index = 2; } message AppButtonReleaseRequest { -- cgit v1.2.3