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:
authorhedger <hedger@users.noreply.github.com>2022-07-04 16:11:56 +0300
committerGitHub <noreply@github.com>2022-07-04 16:11:56 +0300
commit6c1b8ae66a85bcd7e79e993a0b5573c38c302db5 (patch)
tree155d5a6aacd917ece4b4a091a9fe12d1c90a2bcb
parente3d9cdb66ce789f84f6f8e0bdd6d022187964425 (diff)
Updater: new status codes (#32)0.9
-rw-r--r--Changelog5
-rw-r--r--system.proto3
2 files changed, 8 insertions, 0 deletions
diff --git a/Changelog b/Changelog
index 7f933ba..d2d30ab 100644
--- a/Changelog
+++ b/Changelog
@@ -1,5 +1,10 @@
# Changelog
+## [0.9]
+### Added
+- System message: UpdateResponse, enum UpdateResultCode: new entries
+ OutdatedManifestVersion, IntFull, UnspecifiedError
+
## [0.8]
### Added
- App messages: AppExitRequest, AppLoadFileRequest, AppButtonPressRequest, AppButtonReleaseRequest
diff --git a/system.proto b/system.proto
index 0e626c2..90238e8 100644
--- a/system.proto
+++ b/system.proto
@@ -79,6 +79,9 @@ message UpdateResponse {
StageIntegrityError = 5;
ManifestPointerError = 6;
TargetMismatch = 7;
+ OutdatedManifestVersion = 8;
+ IntFull = 9;
+ UnspecifiedError = 10;
}
UpdateResultCode code = 1;
}