mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-24 02:39:55 +01:00
Add support for persisting wallpaper selection.
This commit is contained in:
@@ -90,4 +90,26 @@ message DeviceLastResetTime {
|
||||
}
|
||||
|
||||
repeated Pair resetTime = 1;
|
||||
}
|
||||
|
||||
message Wallpaper {
|
||||
message SingleColor {
|
||||
int32 color = 1;
|
||||
}
|
||||
message LinearGradient {
|
||||
float rotation = 1;
|
||||
repeated int32 colors = 2;
|
||||
repeated float positions = 3;
|
||||
}
|
||||
message File {
|
||||
string uri = 1;
|
||||
}
|
||||
|
||||
oneof wallpaper {
|
||||
SingleColor singleColor = 1;
|
||||
LinearGradient linearGradient = 2;
|
||||
File file = 3;
|
||||
}
|
||||
|
||||
float dimLevelInDarkMode = 4;
|
||||
}
|
||||
Reference in New Issue
Block a user