2019-05-13 00:36:05 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
2018-07-19 19:07:24 +02:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests.Responses
|
|
|
|
|
{
|
2019-05-21 13:34:35 +09:00
|
|
|
|
public class APIChangelogBuild : IEquatable<APIChangelogBuild>
|
2018-07-19 19:07:24 +02:00
|
|
|
|
{
|
|
|
|
|
[JsonProperty("id")]
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("version")]
|
|
|
|
|
public string Version { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("display_version")]
|
|
|
|
|
public string DisplayVersion { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("users")]
|
|
|
|
|
public long Users { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("created_at")]
|
2018-07-21 03:19:30 +02:00
|
|
|
|
public DateTimeOffset CreatedAt { get; set; }
|
2018-07-19 19:07:24 +02:00
|
|
|
|
|
|
|
|
|
[JsonProperty("update_stream")]
|
2019-05-13 17:24:33 +09:00
|
|
|
|
public APIUpdateStream UpdateStream { get; set; }
|
2018-07-19 19:07:24 +02:00
|
|
|
|
|
|
|
|
|
[JsonProperty("changelog_entries")]
|
2019-05-13 17:24:33 +09:00
|
|
|
|
public List<APIChangelogEntry> ChangelogEntries { get; set; }
|
2018-07-20 11:20:01 +02:00
|
|
|
|
|
|
|
|
|
[JsonProperty("versions")]
|
2019-06-17 16:32:38 +09:00
|
|
|
|
public VersionNavigation Versions { get; set; }
|
2019-05-13 16:24:32 +09:00
|
|
|
|
|
2019-07-04 16:16:17 +09:00
|
|
|
|
public string Url => $"https://osu.ppy.sh/home/changelog/{UpdateStream.Name}/{Version}";
|
2019-07-04 15:47:06 +09:00
|
|
|
|
|
2019-06-17 16:32:38 +09:00
|
|
|
|
public class VersionNavigation
|
2019-05-13 17:24:33 +09:00
|
|
|
|
{
|
|
|
|
|
[JsonProperty("next")]
|
|
|
|
|
public APIChangelogBuild Next { get; set; }
|
2019-05-13 16:24:32 +09:00
|
|
|
|
|
2019-05-13 17:24:33 +09:00
|
|
|
|
[JsonProperty("previous")]
|
|
|
|
|
public APIChangelogBuild Previous { get; set; }
|
|
|
|
|
}
|
2019-05-21 12:52:50 +09:00
|
|
|
|
|
2019-05-21 14:02:34 +09:00
|
|
|
|
public bool Equals(APIChangelogBuild other) => Id == other?.Id;
|
2019-05-21 13:34:35 +09:00
|
|
|
|
|
2019-05-21 12:52:50 +09:00
|
|
|
|
public override string ToString() => $"{UpdateStream.DisplayName} {DisplayVersion}";
|
2018-07-19 19:07:24 +02:00
|
|
|
|
}
|
|
|
|
|
}
|