add thread for determining free hdd (recording dir) space, enable hdd usage icons on vfd (untested)

Conflicts:
	data/locale/deutsch.locale
	data/locale/english.locale
	src/driver/simple_display.cpp
	src/gui/hdd_menu.cpp
	src/gui/infoviewer_bb.cpp
	src/gui/infoviewer_bb.h
	src/gui/moviebrowser.cpp
	src/gui/record_setup.cpp
	src/neutrino.cpp
	src/system/ytcache.h


Origin commit data
------------------
Branch: ni/coolstream
Commit: 7c15db185f
Author: martii <m4rtii@gmx.de>
Date: 2013-11-27 (Wed, 27 Nov 2013)



------------------
This commit was generated by Migit
This commit is contained in:
martii
2013-11-27 20:08:32 +01:00
committed by [CST] Focus
parent 866bb6ecfc
commit 14f4b12384
15 changed files with 231 additions and 38 deletions

View File

@@ -421,6 +421,7 @@ int CNeutrinoApp::loadSetup(const char * fname)
g_settings.hdd_fs = configfile.getInt32( "hdd_fs", 0);
g_settings.hdd_sleep = configfile.getInt32( "hdd_sleep", 120);
g_settings.hdd_noise = configfile.getInt32( "hdd_noise", 254);
g_settings.hdd_statfs_mode = configfile.getInt32( "hdd_statfs_mode", SNeutrinoSettings::HDD_STATFS_RECORDING);
g_settings.shutdown_real = configfile.getBool("shutdown_real" , false );
g_settings.shutdown_real_rcdelay = configfile.getBool("shutdown_real_rcdelay", false );
@@ -987,6 +988,7 @@ void CNeutrinoApp::saveSetup(const char * fname)
configfile.setInt32( "hdd_fs", g_settings.hdd_fs);
configfile.setInt32( "hdd_sleep", g_settings.hdd_sleep);
configfile.setInt32( "hdd_noise", g_settings.hdd_noise);
configfile.setInt32( "hdd_statfs_mode", g_settings.hdd_statfs_mode);
configfile.setBool("shutdown_real" , g_settings.shutdown_real );
configfile.setBool("shutdown_real_rcdelay", g_settings.shutdown_real_rcdelay);
configfile.setInt32("shutdown_count" , g_settings.shutdown_count);
@@ -2121,6 +2123,7 @@ TIMER_START();
delete hintBox;
cSysLoad::getInstance();
cHddStat::getInstance();
TIMER_STOP("################################## after all ##################################");
RealRun(personalize.getWidget(0)/**main**/);