feat(updater) select valid asset

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers
2023-06-03 18:41:54 -07:00
parent 98174b7a37
commit bee88b1c7f
7 changed files with 243 additions and 36 deletions

View File

@ -3,6 +3,8 @@
#include <QList>
#include <QString>
#include <QDebug>
#include "Version.h"
struct GitHubReleaseAsset {
@ -32,3 +34,7 @@ struct GitHubRelease {
bool isValid() const { return id > 0; }
};
QDebug operator<<(QDebug debug, const GitHubReleaseAsset& rls);
QDebug operator<<(QDebug debug, const GitHubRelease& rls);