Merge pull request #102 from evelynmarie/qt6

Update LOOT to 0.19.3.
This commit is contained in:
Al
2023-04-07 17:24:23 +02:00
committed by GitHub
2 changed files with 4 additions and 24 deletions
+1 -3
View File
@@ -99,9 +99,7 @@ boost = 1.80.0
boost_vs = 14.3
fmt = 8.1.1
gtest = main
libloot = 0.18.1
libloot_hash = gc4cdfbb
libloot_branch = 0.18.1
libloot = 0.19.3
lz4 = v1.9.4
nmm = 0.71.2
openssl = 1.1.1q
+3 -21
View File
@@ -9,17 +9,9 @@ namespace
std::string release_name()
{
// the naming convention is `libloot-version-commit_branch-win64.7z`,
// such as:
//
// libloot-0.14.6-0-g8fed4b0_dev-win64.7z
// libloot-0.15.1-0-gf725dd7_0.15.1-win64.7z
// libloot-0.15.2-0-g3baa0e8_master-win64.7z
return
"libloot-" + libloot::version() + "-" + "0-" +
libloot::hash() + "_" + libloot::branch() + "-" +
"win64";
// the naming convention is `libloot-version-win64.7z`,
// such as libloot-0.19.3-win64.7z.
return "libloot-" + libloot::version() + "-" + "win64";
}
url source_url()
@@ -42,16 +34,6 @@ std::string libloot::version()
return conf().version().get("libloot");
}
std::string libloot::hash()
{
return conf().version().get("libloot_hash");
}
std::string libloot::branch()
{
return conf().version().get("libloot_branch");
}
bool libloot::prebuilt()
{
return false;