Try to hide news in GUI using time conditions.

Might save on a tiny little bit of CPU time... I guess?
develop
Icedream 2015-10-16 08:23:15 +02:00
parent 4b258b8ff4
commit 47fa3e798c
1 changed files with 3 additions and 1 deletions

View File

@ -224,6 +224,9 @@ module.exports = class TS3ClientService extends services.Service
[ "Misc", "LastShownNewsBrowserVersion", "4" ] [ "Misc", "LastShownNewsBrowserVersion", "4" ]
[ "News", "NewsClosed", "1" ] [ "News", "NewsClosed", "1" ]
[ "News", "Language", "en" ] [ "News", "Language", "en" ]
[ "News", "LastModified", (new Date()).toISOString() ]
[ "News", "NextCheck", (new Date() + 1000 * 60 * 60 * 24 * 360).toISOString() ]
[ "Notifications", "SoundPack", "nosounds" ]
[ "Plugins", "teamspeak_control_plugin", "false" ] [ "Plugins", "teamspeak_control_plugin", "false" ]
[ "Plugins", "clientquery_plugin", "false" ] [ "Plugins", "clientquery_plugin", "false" ]
[ "Plugins", "lua_plugin", "false" ] [ "Plugins", "lua_plugin", "false" ]
@ -260,7 +263,6 @@ module.exports = class TS3ClientService extends services.Service
agc: if config.get("ts3-agc") then "true" else "false" agc: if config.get("ts3-agc") then "true" else "false"
echo_reduction_db: 10 echo_reduction_db: 10
} ] } ]
[ "Notifications", "SoundPack", "nosounds" ]
[ "Statistics", "ParticipateStatistics", "0" ] [ "Statistics", "ParticipateStatistics", "0" ]
[ "Statistics", "ConfirmedParticipation", "1" ] [ "Statistics", "ConfirmedParticipation", "1" ]
], defer() ], defer()