mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-06-12 05:07:46 +02:00
feat(updater) select valid asset
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
36
launcher/updater/prismupdater/GitHubRelease.cpp
Normal file
36
launcher/updater/prismupdater/GitHubRelease.cpp
Normal file
@ -0,0 +1,36 @@
|
||||
#include "GitHubRelease.h"
|
||||
|
||||
QDebug operator<<(QDebug debug, const GitHubReleaseAsset& asset)
|
||||
{
|
||||
QDebugStateSaver saver(debug);
|
||||
debug.nospace() << "GitHubReleaseAsset( "
|
||||
"id: " << asset.id << ", "
|
||||
"name " << asset.name << ", "
|
||||
"label: " << asset.label << ", "
|
||||
"content_type: " << asset.content_type << ", "
|
||||
"size: " << asset.size << ", "
|
||||
"created_at: " << asset.created_at << ", "
|
||||
"updated_at: " << asset.updated_at << ", "
|
||||
"browser_download_url: " << asset.browser_download_url << " "
|
||||
")";
|
||||
return debug;
|
||||
}
|
||||
|
||||
QDebug operator<<(QDebug debug, const GitHubRelease& rls)
|
||||
{
|
||||
QDebugStateSaver saver(debug);
|
||||
debug.nospace() << "GitHubRelease( "
|
||||
"id: " << rls.id << ", "
|
||||
"name " << rls.name << ", "
|
||||
"tag_name: " << rls.tag_name << ", "
|
||||
"created_at: " << rls.created_at << ", "
|
||||
"published_at: " << rls.published_at << ", "
|
||||
"prerelease: " << rls.prerelease << ", "
|
||||
"draft: " << rls.draft << ", "
|
||||
"version" << rls.version << ", "
|
||||
"body: " << rls.body << ", "
|
||||
"assets: " << rls.assets << " "
|
||||
")";
|
||||
return debug;
|
||||
}
|
||||
|
Reference in New Issue
Block a user