diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2007-03-06 09:26:11 +0100 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2007-03-06 09:26:11 +0100 |
commit | de39678a54ab87364a3c8c5e3b058d313451db5b (patch) | |
tree | 46ea3b911b6fb0982d910e5bcd398d373f86a887 /Makefile | |
parent | b1fa489fdbd06712add00390966defbe9a96232a (diff) | |
download | vdr-plugin-skinenigmang-de39678a54ab87364a3c8c5e3b058d313451db5b.tar.gz vdr-plugin-skinenigmang-de39678a54ab87364a3c8c5e3b058d313451db5b.tar.bz2 |
2007-03-06: Version 0.0.3v0.0.3
- New command line option "-l" to set the logo path.
- Added support for epgsearch's timer check auxiliary info in a recording's info.
- Reorganized setup menu.
- Don't use small font in a recording's replay info.
- Show channel name and number in recording's info.
- Don't use small font for description in event and recording info.
- Added setup options for epgsearch features.
- Use location set at "Channel info position" to display channel info.
- Fixed transparent group titles in menus. (Reported by several users)
- New (temporary) compile time option SKINENIGMA_FULL_CHANNELINFO_TITLE.
- Fixed duration and elapsed/remaining time displaying in channel info.
- Enhanced setup option "Show remaining/elapsed time".
- Enhanced setup option "Show Symbols".
- Changed alignment in bottom line of channel info.
- New setup option to hide language flags; shows language name in channel info. (Suggested by balta @vdr-portal.de)
- Redraw date in main menu and channel info only if time changed. (Based on suggestion by Hanspeter)
- Changed detection for main menu; it now must start with "VDR - ". (Based on patch by triple955 @vdr-portal.de)
- Fixed problems with floating text. (Patch by triple955 @vdr-portal.de)
- Localized full weekday name.
- Added new setup option for 8bpp or 4bpp single area.
- Added Russian translation (Submitted by SergArb @vdr-portal.de).
- Log "LOGO NOT FOUND" errors to syslog (Requested by Der_Pit).
- Changed a false 4bpp area to 2bpp.
- Corrected brackets (Reported by Sebastian Werner).
- Many other fixes and graphical changes.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.2 2007/02/15 13:37:17 amair Exp $ +# $Id: Makefile,v 1.4 2007/03/06 07:02:27 amair Exp $ # If you are using the epgsearch plugin and want to see the number of # timer conflicts in the main menu's info area. @@ -14,6 +14,10 @@ # Debugging on/off #SKINENIGMA_DEBUG = 1 +# If set the top and bottom borders are drawn around the channel logo +# in the channel info. TEMPORARY OPTION?!? +#SKINENIGMA_FULL_CHANNELINFO_TITLE = 1 + # Strip debug symbols? Set eg. to /bin/true if not #STRIP = strip STRIP = /bin/true @@ -70,6 +74,10 @@ ifdef SKINENIGMA_NO_MENULOGO DEFINES += -DSKINENIGMA_NO_MENULOGO endif +ifdef SKINENIGMA_FULL_CHANNELINFO_TITLE +DEFINES += -DSKINENIGMA_FULL_CHANNELINFO_TITLE +endif + ### The object files (add further files here): OBJS = $(PLUGIN).o enigma.o config.o logo.o i18n.o tools.o status.o |