[education/rkward] rkward/settings: Reapply "Do not force use of binary packages on Windows and Mac"
Thomas Friedrichsmeier
null at kde.org
Wed Sep 24 14:33:37 BST 2025
Git commit 34f4c9f8b85fdbc4a66dcaadae9e484d22ce2bf7 by Thomas Friedrichsmeier.
Committed on 24/09/2025 at 13:20.
Pushed by tfry into branch 'master'.
Reapply "Do not force use of binary packages on Windows and Mac"
Now works after removing extra (double) caching from
.rk.get.package.installation.state()
This reverts commit 4905261d9bd1a084de8398096ed5d29c3b2ca710.
M +1 -1 rkward/settings/rksettingsmoduler.cpp
https://invent.kde.org/education/rkward/-/commit/34f4c9f8b85fdbc4a66dcaadae9e484d22ce2bf7
diff --git a/rkward/settings/rksettingsmoduler.cpp b/rkward/settings/rksettingsmoduler.cpp
index dd04d4ff5..3cbf7f915 100644
--- a/rkward/settings/rksettingsmoduler.cpp
+++ b/rkward/settings/rksettingsmoduler.cpp
@@ -519,7 +519,7 @@ QString RKSettingsModuleRPackages::pkgTypeOption() {
#if defined Q_OS_WIN || defined Q_OS_MACOS
ret.append(u"options (pkgType=\""_s);
if (source_packages) ret.append(u"source"_s);
- else ret.append(u"binary"_s); // "automatically select appropriate binary"
+ else ret.append(u"both"_s); // "automatically select appropriate binary, if available, else consider source package"
ret.append(u"\")\n"_s);
#endif
return ret;
More information about the rkward-tracker
mailing list