mirror of
https://github.com/ppy/osu.git
synced 2024-12-13 08:32:57 +08:00
Use @2x
variant of profile badges
This commit is contained in:
parent
9b202b5f21
commit
5ee412cc9a
@ -134,14 +134,16 @@ namespace osu.Game.Tests.Visual.Online
|
|||||||
{
|
{
|
||||||
AwardedAt = DateTimeOffset.FromUnixTimeSeconds(1505741569),
|
AwardedAt = DateTimeOffset.FromUnixTimeSeconds(1505741569),
|
||||||
Description = "Outstanding help by being a voluntary test subject.",
|
Description = "Outstanding help by being a voluntary test subject.",
|
||||||
ImageUrl = "https://assets.ppy.sh/profile-badges/contributor.jpg",
|
ImageUrl = "https://assets.ppy.sh/profile-badges/contributor-new@2x.png",
|
||||||
|
ImageUrlLowRes = "https://assets.ppy.sh/profile-badges/contributor-new.png",
|
||||||
Url = "https://osu.ppy.sh/wiki/en/People/Community_Contributors",
|
Url = "https://osu.ppy.sh/wiki/en/People/Community_Contributors",
|
||||||
},
|
},
|
||||||
new Badge
|
new Badge
|
||||||
{
|
{
|
||||||
AwardedAt = DateTimeOffset.FromUnixTimeSeconds(1505741569),
|
AwardedAt = DateTimeOffset.FromUnixTimeSeconds(1505741569),
|
||||||
Description = "Badge without a url.",
|
Description = "Badge without a url.",
|
||||||
ImageUrl = "https://assets.ppy.sh/profile-badges/contributor.jpg",
|
ImageUrl = "https://assets.ppy.sh/profile-badges/contributor@2x.png",
|
||||||
|
ImageUrlLowRes = "https://assets.ppy.sh/profile-badges/contributor.png",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
Title = "osu!volunteer",
|
Title = "osu!volunteer",
|
||||||
|
@ -16,9 +16,12 @@ namespace osu.Game.Users
|
|||||||
[JsonProperty("description")]
|
[JsonProperty("description")]
|
||||||
public string Description;
|
public string Description;
|
||||||
|
|
||||||
[JsonProperty("image_url")]
|
[JsonProperty("image@2x_url")]
|
||||||
public string ImageUrl;
|
public string ImageUrl;
|
||||||
|
|
||||||
|
[JsonProperty("image_url")]
|
||||||
|
public string ImageUrlLowRes;
|
||||||
|
|
||||||
[JsonProperty("url")]
|
[JsonProperty("url")]
|
||||||
public string Url;
|
public string Url;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user