From b1112f663b83cd745423e5dbef99461aed8dc329 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Thu, 8 Nov 2018 21:59:56 +0000 Subject: Content store: Add setting to filter non-free packages (#7766) Defaulting to hiding in order to help with Debian/etc distribution. This could be changed at a later date. --- src/script/lua_api/l_mainmenu.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/script/lua_api') diff --git a/src/script/lua_api/l_mainmenu.cpp b/src/script/lua_api/l_mainmenu.cpp index c2f0f6e3a..39a3f3a62 100644 --- a/src/script/lua_api/l_mainmenu.cpp +++ b/src/script/lua_api/l_mainmenu.cpp @@ -993,10 +993,12 @@ int ModApiMainMenu::l_get_screen_info(lua_State *L) int ModApiMainMenu::l_get_package_list(lua_State *L) { - std::string url = g_settings->get("contentdb_url"); + std::string url = g_settings->get("contentdb_url"); + bool show_nonfree = g_settings->getBool("show_nonfree_packages"); std::vector packages = getPackagesFromURL(url + "/api/packages/?type=mod&type=game&type=txp&protocol_version=" - LATEST_PROTOCOL_VERSION_STRING); + LATEST_PROTOCOL_VERSION_STRING "&nonfree=" + + (show_nonfree ? "true" : "false")); // Make table lua_newtable(L); -- cgit v1.2.3