diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2010-06-07 03:44:11 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2010-06-07 03:44:11 +0000 |
commit | 5b0521c9aadee11886e2c92df7d768d5e76063a6 (patch) | |
tree | a6fc72ca29627bb53276c05a5606a559f78bae83 /wps/wpsbuild.pl | |
parent | 53b619c6e80c9efc6993c23ff7b1035e8e101834 (diff) |
Changeover to the new skin format. SkinBreakingChange in the wiki has the runown of the changes.
Major changes are paramerterised tags now use %tag(param,param), colours are removed from the %V() tag, %Vi gets a required (but can be -) label as its first param).
utils/skinupdater/ has a program to update individual skins, and a perl script to update a whole zip.
Themesite will be unusable for the time being (you should be able to upload new themes once it updates checkwps though).
I obviously havnt tested every updated wps in this change so let me know if one doesnt load
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26641 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'wps/wpsbuild.pl')
-rwxr-xr-x | wps/wpsbuild.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wps/wpsbuild.pl b/wps/wpsbuild.pl index 57dc3de283..f07ad6dc01 100755 --- a/wps/wpsbuild.pl +++ b/wps/wpsbuild.pl @@ -226,7 +226,7 @@ sub copywps open(WPSFILE, "$dir/$req_g_wps"); while (<WPSFILE>) { - $filelist[$#filelist + 1] = $1 if (/\|([^|]*?.bmp)\|/); + $filelist[$#filelist + 1] = $1 if (/[\(,]([^,]*?.bmp)[\),]/); } close(WPSFILE); |