Index: apps/gui/gwps-common.c
===================================================================
--- apps/gui/gwps-common.c	(Revision 13033)
+++ apps/gui/gwps-common.c	(Arbeitskopie)
@@ -1186,6 +1186,13 @@
             snprintf(buf, buf_size, "%d", id3->rating);
             return buf;
 
+        case WPS_TOKEN_DATABASE_SCORE:
+            if (intval) {
+                *intval = id3->score + 1;
+            }
+            snprintf(buf, buf_size, "%d", id3->score);
+            return buf;
+
 #if (CONFIG_CODEC == SWCODEC)
         case WPS_TOKEN_REPLAYGAIN:
         {
Index: apps/gui/gwps.h
===================================================================
--- apps/gui/gwps.h	(Revision 13033)
+++ apps/gui/gwps.h	(Arbeitskopie)
@@ -161,6 +161,7 @@
     /* Database */
     WPS_TOKEN_DATABASE_PLAYCOUNT,
     WPS_TOKEN_DATABASE_RATING,
+    WPS_TOKEN_DATABASE_SCORE,
 
     /* File */
     WPS_TOKEN_FILE_BITRATE,
Index: apps/gui/wps_parser.c
===================================================================
--- apps/gui/wps_parser.c	(Revision 13033)
+++ apps/gui/wps_parser.c	(Arbeitskopie)
@@ -223,6 +223,7 @@
 
     { WPS_TOKEN_DATABASE_PLAYCOUNT,       "rp",  WPS_REFRESH_DYNAMIC, NULL },
     { WPS_TOKEN_DATABASE_RATING,          "rr",  WPS_REFRESH_DYNAMIC, NULL },
+    { WPS_TOKEN_DATABASE_SCORE,           "rs",  WPS_REFRESH_DYNAMIC, NULL },
 #if CONFIG_CODEC == SWCODEC
     { WPS_TOKEN_REPLAYGAIN,               "rg",  WPS_REFRESH_STATIC,  NULL },
 #endif
