Skip to content

Commit 3b33260

Browse files
committed
capabilities: drop webp to only partial support
Signal doesn't animate webps
1 parent 4545def commit 3b33260

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pkg/connector/capabilities.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func supportedIfFFmpeg() event.CapabilitySupportLevel {
3838
}
3939

4040
func capID() string {
41-
base := "fi.mau.signal.capabilities.2025_12_09"
41+
base := "fi.mau.signal.capabilities.2026_05_12"
4242
if ffmpeg.Supported() {
4343
return base + "+ffmpeg"
4444
}
@@ -75,7 +75,7 @@ var signalCaps = &event.RoomFeatures{
7575
"image/gif": event.CapLevelFullySupported,
7676
"image/png": event.CapLevelFullySupported,
7777
"image/jpeg": event.CapLevelFullySupported,
78-
"image/webp": event.CapLevelFullySupported,
78+
"image/webp": event.CapLevelPartialSupport,
7979
"image/bmp": event.CapLevelFullySupported,
8080
},
8181
MaxWidth: 4096,
@@ -111,7 +111,7 @@ var signalCaps = &event.RoomFeatures{
111111
},
112112
event.CapMsgSticker: {
113113
MimeTypes: map[string]event.CapabilitySupportLevel{
114-
"image/webp": event.CapLevelFullySupported,
114+
"image/webp": event.CapLevelPartialSupport,
115115
"image/png": event.CapLevelFullySupported,
116116
"image/apng": event.CapLevelFullySupported,
117117
"image/gif": supportedIfFFmpeg(),

0 commit comments

Comments
 (0)