fix release notes wallpaper

This commit is contained in:
kate-signal 2026-06-08 09:04:22 -04:00 committed by GitHub
parent b957357516
commit 08a3e32943
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{
"images" : [
{
"filename" : "official_wallpaper_reduced.pdf",
"filename" : "official-wallpaper.pdf",
"idiom" : "universal"
}
],

View File

@ -147,7 +147,7 @@ public class WallpaperView {
}
return imageView
case .releaseNotesView:
let image = UIImage(named: "official_wallpaper_reduced")
let image = UIImage(named: "official-wallpaper")
let imageView = UIImageView(image: image)
if Theme.isDarkThemeEnabled {
imageView.tintColor = UIColor(rgbHex: 0x272C3C)
@ -156,6 +156,8 @@ public class WallpaperView {
imageView.tintColor = UIColor(rgbHex: 0xE3E4E9)
imageView.backgroundColor = UIColor(rgbHex: 0xE8EAF8).withAlphaComponent(0.4)
}
imageView.contentMode = .scaleAspectFill
imageView.clipsToBounds = true
return imageView
}
}()