PRUSA 2.7.0

This commit is contained in:
sunsets
2023-12-27 18:02:35 +08:00
parent b33112327f
commit 0a3c63dcb1
488 changed files with 92371 additions and 29443 deletions

View File

@@ -95,12 +95,14 @@ public:
Semver version;
std::string comment;
std::string changelog_url;
std::string new_printers;
Update(std::string vendor, Semver version, std::string comment, std::string changelog_url)
Update(std::string vendor, Semver version, std::string comment, std::string changelog_url, std::string new_printers)
: vendor(std::move(vendor))
, version(std::move(version))
, comment(std::move(comment))
, changelog_url(std::move(changelog_url))
, new_printers(std::move(new_printers))
{}
};
@@ -123,12 +125,14 @@ public:
Semver version;
std::string comment;
std::string changelog_url;
std::string new_printers;
Update(std::string vendor, Semver version, std::string comment, std::string changelog_url)
Update(std::string vendor, Semver version, std::string comment, std::string changelog_url, std::string new_printers)
: vendor(std::move(vendor))
, version(std::move(version))
, comment(std::move(comment))
, changelog_url(std::move(changelog_url))
, new_printers(std::move(new_printers))
{}
};