Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/flipperdevices/flipperzero-protobuf.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorgii Surkov <37121527+gsurkov@users.noreply.github.com>2023-11-10 09:24:27 +0300
committerGitHub <noreply@github.com>2023-11-10 09:24:27 +0300
commit23ad19a756649ed9f6677b598e5361c5cce6847b (patch)
treed9b09908699da9a82d6051faab4a0a927376fde6
parent327163d5867c7aa3051334c93ced718d15bfe4da (diff)
[FL-3618] Support for button indices (#47)0.21
* Add index field to AppButtonPressRequest message * Update changelog
-rw-r--r--Changelog4
-rw-r--r--application.proto1
2 files changed, 5 insertions, 0 deletions
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 {