diff options
author | louis <louis.braun@gmx.de> | 2015-06-26 16:52:35 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-06-26 16:52:35 +0200 |
commit | b83e4f51eb5f51fca2d20c1383b4c26b046d8e26 (patch) | |
tree | 48a1fdd2a26ed8d5d2d1c5f27e0ece2236a2289b | |
parent | 2f58d8adc659348f8d3b52b4d2ebb1c7f7ce5d19 (diff) | |
download | vdr-plugin-tvguideng-b83e4f51eb5f51fca2d20c1383b4c26b046d8e26.tar.gz vdr-plugin-tvguideng-b83e4f51eb5f51fca2d20c1383b4c26b046d8e26.tar.bz2 |
Version 0.1.50.1.5
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | detailview.c | 4 | ||||
-rw-r--r-- | tvguideng.c | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -42,3 +42,7 @@ Version 0.1.3 Version 0.1.4 +- added year and day token in time in detailview + +Version 0.1.5 + diff --git a/detailview.c b/detailview.c index 8095a42..2ed44c0 100644 --- a/detailview.c +++ b/detailview.c @@ -272,6 +272,8 @@ bool cDetailView::DrawTime(void) { watch->AddIntToken("min", min);
watch->AddIntToken("hour", hour);
watch->AddIntToken("hmins", hourMinutes);
+ watch->AddIntToken("year", now->tm_year + 1900);
+ watch->AddIntToken("day", now->tm_mday);
watch->AddStringToken("time", *TimeString(t));
watch->AddStringToken("monthname", monthname);
watch->AddStringToken("monthnameshort", monthshort);
@@ -630,4 +632,4 @@ void cDetailView::SetEpgPictures(int eventId) { tabs->AddStringToken(path.str(), "");
}
}
-}
\ No newline at end of file +}
diff --git a/tvguideng.c b/tvguideng.c index 25d9dfd..091b720 100644 --- a/tvguideng.c +++ b/tvguideng.c @@ -13,7 +13,7 @@ #include "setup.h" #include "tvguidengosd.h" -static const char *VERSION = "0.1.4"; +static const char *VERSION = "0.1.5"; static const char *DESCRIPTION = "TV Guide for Skindesigner Skins"; static const char *MAINMENUENTRY = "TV Guide NG"; |