mirror of
https://github.com/minetest/minetest.git
synced 2024-11-20 06:33:45 +01:00
Add setting to disable Content tab update indicator (#14827)
This commit is contained in:
parent
768fd4adee
commit
60f8c02e18
@ -280,7 +280,7 @@ end
|
||||
return {
|
||||
name = "content",
|
||||
caption = function()
|
||||
local update_count = update_detector.get_count()
|
||||
local update_count = core.settings:get_bool("contentdb_enable_updates_indicator") and update_detector.get_count() or 0
|
||||
if update_count == 0 then
|
||||
return fgettext("Content")
|
||||
else
|
||||
|
@ -764,6 +764,10 @@ chat_font_size (Chat font size) int 0 0 72
|
||||
# The URL for the content repository
|
||||
contentdb_url (ContentDB URL) string https://content.minetest.net
|
||||
|
||||
# If enabled and you have ContentDB packages installed, Minetest may contact ContentDB to
|
||||
# check for package updates when opening the mainmenu.
|
||||
contentdb_enable_updates_indicator (Enable updates available indicator on content tab) bool true
|
||||
|
||||
# Comma-separated list of flags to hide in the content repository.
|
||||
# "nonfree" can be used to hide packages which do not qualify as 'free software',
|
||||
# as defined by the Free Software Foundation.
|
||||
|
@ -402,6 +402,7 @@ void set_default_settings()
|
||||
|
||||
// ContentDB
|
||||
settings->setDefault("contentdb_url", "https://content.minetest.net");
|
||||
settings->setDefault("contentdb_enable_updates_indicator", "true");
|
||||
settings->setDefault("contentdb_max_concurrent_downloads", "3");
|
||||
|
||||
#ifdef __ANDROID__
|
||||
|
Loading…
Reference in New Issue
Block a user