updater: Update manifest struct for use in UI

This commit is contained in:
derrod 2023-07-23 07:40:36 +02:00
parent edf2c8210c
commit 8ec0d7fd1b

View file

@ -53,17 +53,17 @@ struct Manifest {
uint8_t version_patch = 0;
uint8_t beta = 0;
uint8_t rc = 0;
std::string commit;
/* Hash of VC redist file */
std::string vc2019_redist_x64;
/* Unused until UI is migrated to nlohmann_json */
// std::string commit;
// std::string notes;
/* Release notes in HTML format */
std::string notes;
NLOHMANN_DEFINE_TYPE_INTRUSIVE(Manifest, packages, version_major,
version_minor, version_patch, beta, rc,
vc2019_redist_x64)
commit, vc2019_redist_x64, notes)
};
struct PatchRequest {