Mercurial > audlegacy-plugins
changeset 570:9774ac406bde trunk
[svn] - aosd: do not try to save skin_file, not implemented yet
author | giacomo |
---|---|
date | Mon, 29 Jan 2007 07:00:45 -0800 |
parents | d401f87f89f7 |
children | 5e9019d528d5 |
files | ChangeLog src/aosd/aosd_cfg.c |
diffstat | 2 files changed, 29 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Jan 29 06:40:04 2007 -0800 +++ b/ChangeLog Mon Jan 29 07:00:45 2007 -0800 @@ -1,3 +1,30 @@ +2007-01-29 14:40:04 +0000 Giacomo Lozito <james@develia.org> + revision [1224] + - added Audacious OSD, yet-another-written-from-scratch plugin to display OSD, based on Ghosd library; currently untied from configure, to compile it you have to run make in its directory; will be added to configure after some testing + trunk/src/aosd/Makefile | 18 + trunk/src/aosd/aosd.c | 140 +++++ + trunk/src/aosd/aosd.h | 45 + + trunk/src/aosd/aosd_cfg.c | 386 ++++++++++++++++ + trunk/src/aosd/aosd_cfg.h | 125 +++++ + trunk/src/aosd/aosd_common.h | 35 + + trunk/src/aosd/aosd_osd.c | 344 ++++++++++++++ + trunk/src/aosd/aosd_osd.h | 32 + + trunk/src/aosd/aosd_style.c | 332 +++++++++++++ + trunk/src/aosd/aosd_style.h | 39 + + trunk/src/aosd/aosd_style_private.h | 71 ++ + trunk/src/aosd/aosd_ui.c | 867 ++++++++++++++++++++++++++++++++++++ + trunk/src/aosd/aosd_ui.c.old | 159 ++++++ + trunk/src/aosd/aosd_ui.h | 32 + + trunk/src/aosd/ghosd-internal.h | 25 + + trunk/src/aosd/ghosd-license | 20 + trunk/src/aosd/ghosd-main.c | 171 +++++++ + trunk/src/aosd/ghosd-text.c | 53 ++ + trunk/src/aosd/ghosd-text.h | 14 + trunk/src/aosd/ghosd.c | 248 ++++++++++ + trunk/src/aosd/ghosd.h | 38 + + 21 files changed, 3194 insertions(+) + + 2007-01-29 11:34:57 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [1222] - fix seek() routine for InputPlayback API.
--- a/src/aosd/aosd_cfg.c Mon Jan 29 06:40:04 2007 -0800 +++ b/src/aosd/aosd_cfg.c Mon Jan 29 07:00:45 2007 -0800 @@ -362,8 +362,9 @@ bmp_cfg_db_set_int( cfgfile , "aosd" , "decoration_code" , cfg->osd->decoration.code ); + /* TODO skip this since it's not implemented yet bmp_cfg_db_set_string( cfgfile , "aosd" , - "decoration_skin_file" , cfg->osd->decoration.skin_file ); + "decoration_skin_file" , cfg->osd->decoration.skin_file ); */ /* decoration - colors */ max_numcol = aosd_deco_style_get_max_numcol();