1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 18:45:10 +00:00

Initialize music_player_interval so built-in .conkyrc actual works.

Lower timed_thread minimum timing interval from 50 usecs to 10 usecs.



git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@978 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Philip Kovacs 2007-10-21 18:04:53 +00:00
parent fed57b7a50
commit 03d011678b
3 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,10 @@
# $Id$
2008-10-21
* Initialize music_player_interval so built-in .conkyrc actual works.
* Lower timed_thread minimum timing interval from 50 usecs to 10 usecs.
* Separate timed thread asserts for clarity.
2008-10-18
* Conky 1.4.8 released.

View File

@ -7044,6 +7044,7 @@ static void set_default_configurations(void)
no_buffers = 1;
update_interval = 10.0;
info.music_player_interval = 1.0;
stuff_in_upper_case = 0;
#ifdef TCP_PORT_MONITOR

View File

@ -25,7 +25,7 @@
#ifndef _TIMED_THREAD_H_
#define _TIMED_THREAD_H_
#define MINIMUM_INTERVAL_USECS 50000 /* 50000 microseconds = 50 ms = 0.05 sec */
#define MINIMUM_INTERVAL_USECS 10000 /* 10000 microseconds = 10 ms = 0.01 sec */
/* opaque structure for clients */
typedef struct _timed_thread timed_thread;