diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2010-06-08 14:52:03 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2010-06-08 14:52:03 +0000 |
| commit | 2309d6d1e14c843250e4efa7cfac019e63d620ac (patch) | |
| tree | 9dbfd76a50febf7ee92a14439c97622f6b011ab7 /utils | |
| parent | c4fbb07a762e6c64514b8742ac0d091718d4f237 (diff) | |
| download | rockbox-2309d6d1e14c843250e4efa7cfac019e63d620ac.zip rockbox-2309d6d1e14c843250e4efa7cfac019e63d620ac.tar.gz rockbox-2309d6d1e14c843250e4efa7cfac019e63d620ac.tar.bz2 rockbox-2309d6d1e14c843250e4efa7cfac019e63d620ac.tar.xz | |
change to %Cd to display albumart (instead of %C to make it more consistant with %Vd/%Vl and %xd/%xl)
Also assume ; in skins are for sublines.. this means if you want ; in text you need to manually escape it (%;) far less false positives then
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26693 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/skinupdater/skinupdater.c | 8 | ||||
| -rw-r--r-- | utils/themeeditor/tag_table.c | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/utils/skinupdater/skinupdater.c b/utils/skinupdater/skinupdater.c index f724232..d2fbc9c 100644 --- a/utils/skinupdater/skinupdater.c +++ b/utils/skinupdater/skinupdater.c @@ -190,6 +190,10 @@ int parse_tag(FILE* out, const char* start, bool in_conditional) PUTCH(out, '('); len += 1+dump_arg(out, start+1, 2, true); } + else if (MATCH("C")) + { + fprintf(out, "%%Cd"); + } else if (MATCH("Cl")) { int read; @@ -395,6 +399,10 @@ top: PUTCH(out, *in++); } } + else if (*in == ';') + { + PUTCH(out, *in++); + } else { if (find_escape_character(*in)) diff --git a/utils/themeeditor/tag_table.c b/utils/themeeditor/tag_table.c index 91d1b0b..f579ce9 100644 --- a/utils/themeeditor/tag_table.c +++ b/utils/themeeditor/tag_table.c @@ -173,7 +173,7 @@ struct tag_info legal_tags[] = { SKIN_TOKEN_LOAD_FONT, "Fl" , "IF"}, { SKIN_TOKEN_ALBUMART_LOAD, "Cl" , "IIII|ss"}, - { SKIN_TOKEN_ALBUMART_DISPLAY, "C" , ""}, + { SKIN_TOKEN_ALBUMART_DISPLAY, "Cd" , ""}, { SKIN_TOKEN_VIEWPORT_ENABLE, "Vd" , "S"}, { SKIN_TOKEN_UIVIEWPORT_ENABLE, "VI" , "S"}, |