ghdl: display timestamp for each release and asset

This commit is contained in:
ITotalJustice
2025-07-21 12:24:28 +01:00
parent a9d3734117
commit ecb470b938
3 changed files with 23 additions and 11 deletions

View File

@@ -32,12 +32,15 @@ struct GhApiAsset {
std::string content_type{};
u64 size{};
u64 download_count{};
std::string updated_at{};
std::string browser_download_url{};
};
struct GhApiEntry {
std::string tag_name{};
std::string name{};
std::string published_at{};
bool prerelease{};
std::vector<GhApiAsset> assets{};
};