From b09fbdf9ba1ff2daea2abfa8d13244cbbe7ad38a Mon Sep 17 00:00:00 2001 From: Juan Pablo Pino Bravo Date: Tue, 2 Dec 2025 09:34:13 +0100 Subject: [PATCH] Add STATUS_UNPLUGGED to RemovableStorageDevice::Status --- protobuf_definitions/message_formats.proto | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/protobuf_definitions/message_formats.proto b/protobuf_definitions/message_formats.proto index f7cb70e8..9f0172a9 100644 --- a/protobuf_definitions/message_formats.proto +++ b/protobuf_definitions/message_formats.proto @@ -657,8 +657,9 @@ message RemovableStorageDevice { enum Status { STATUS_UNSPECIFIED = 0; // Unspecified. STATUS_READY = 1; // The storage device is valid and ready for use. - STATUS_FORMATTING = 2; // The storage device is being formatted + STATUS_FORMATTING = 2; // The storage device is being formatted. STATUS_ERROR = 3; // The storage device is in an error state. + STATUS_UNPLUGGED = 4; // The storage device is not present. } string vendor_name = 1; // USB vendor name. string model_name = 2; // Model name of the USB storage device.