diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2007-10-14 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2007-10-14 18:00:00 +0200 |
commit | dbf38b7c68911187b6a48688b738c31612d35984 (patch) | |
tree | 4cc72f28e78f4a8dd63a63c5236bcbb77502073b /CONTRIBUTORS | |
parent | 46c882c04d5200cc97262b15db2e4841b305664d (diff) | |
download | vdr-patch-lnbsharing-dbf38b7c68911187b6a48688b738c31612d35984.tar.gz vdr-patch-lnbsharing-dbf38b7c68911187b6a48688b738c31612d35984.tar.bz2 |
Version 1.5.10vdr-1.5.10
- Implemented handling DVB subtitles (thanks to Marco Schlüßler, and also to
Pekka Virtanen for writing the subtitle plugin, which helped in implementing
subtitle handling in VDR).
- The new remote control key "Subtitles" can be used to bring up the list
of available subtitles.
- The new setup option "DVB/Subtitle languages" can be used to define the
preferred languages for subtitles.
- Fixed selecting the audio track when pressing Ok in the Audio menu (thanks
to Marco Schlüßler).
- Implemented display of DVB subtitles in live viewing mode.
- Implemented subtitle track selection.
- Implemented bitmap color reduction and shrinking to display subtitles even
on devices that can't display the necessary number of colors.
- Added compatibility mode for playback of recordings made with the subtitles
plugin (with some help from Rolf Ahrenberg).
- The new setup option "DVB/Subtitle offset" can be used to shift the location
of the subtitles in the vertical direction.
- The new setup options "DVB/Subtitle foreground/background transparency"
define an additional level of transparency for the foreground and background
color of subtitles.
- Existing recordings made with the subtitle plugin can be given an 'X' record
in their info.vdr file, so that subtitles can be automatically selected upon
replay, according to the preferred language setup, as in
X 3 03 ger deutsch
(see vdr.5). Note that these entries need to be added in the proper sequence,
so that they correspond with the actual track languages in the recording.
- Now generating translation files without line numbers to avoid unnecessarily
large diffs. Plugin authors may want to replace the -F option with
--no-location in the xgettext and msgmerge calls in their Makefiles.
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
- Added a missing Channels.SetModified(true) call when deleting or moving a
channel in the Channels menu (reported by Halim Sahin).
- Fixed a missing '-' at the next to last line of SVDRP help texts (reported by
Denis Knauf).
- Added a missing SetVolumeDevice() call in cDevice::SetPrimaryDevice() (reported
by Reinhard Nissl).
- Fixed a crash when pressing Left while at the first character of a cMenuEditStrItem
(thanks to Christian Wieninger).
- Only creating a new cDvbOsdProvider in cDvbDevice::MakePrimaryDevice() if 'On'
is true (i.e. this device is being made the primary device).
- Updated the Italian OSD texts (thanks to Diego Pierotto).
- Fixed handling reallocated memory in cCharSetConv::Convert() (reported by Udo
Richter).
- Fixed a new[]/delete mismatch in cMenuEditStrItem::LeaveEditMode() (thanks to
Udo Richter).
- Implemented sending all frames to devices that can handle them in fast forward
trick speeds (thanks to Timo Eskola).
- Updated the Hungarian language texts (thanks to Thomas Günther).
- Fixed description of DeviceSetAvailableTrack() and cReceiver(), and added an
example ~cMyReceiver() in PLUGINS.html (thanks to Marco Schlüßler).
- Improved the description of where logging goes in the INSTALL file (thanks to
Elias Luttinen).
- Added a note about how to initiate internationalization support to the
README.i18n file. The Makefile generated by the 'newplugin' script now has the
'i18n' target automatically create an initial 'po/pluginname.pot' file.
Plugin authors may want to add the '$(I18Npot)' dependency to the 'i18n'
target in their Makefiles, as in
i18n: $(I18Npot) $(I18Nmo)
(based on a suggestion by Torsten Kunkel).
- Removed a duplicate ',' from the ca_ES.po file (thanks to Thomas Günther).
- Added the 'ß' character to the "allowed characters" in the de_DE.po file
(suggested by Thomas Günther).
- Made the default copy ctor of cRecording private (thanks to Markus Hahn).
Same for the assign operator.
- Added cRecording::Undelete() (based on a patch from Markus Hahn).
- Added cDevice::CloseFilter() to allow a device to have complete control over
both opening and closing section filters (thanks to Rolf Ahrenberg).
- Some fixes to PLUGINS.html (thanks to Rolf Ahrenberg).
Diffstat (limited to 'CONTRIBUTORS')
-rw-r--r-- | CONTRIBUTORS | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index bddbeed..34b4803 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1024,6 +1024,10 @@ Rolf Ahrenberg <rahrenbe@cc.hut.fi> for improving cControl::Launch() to keep 'control' from pointing to uninitialized memory for adding internationalization to the "skincurses" plugin + for helping with adding compatibility mode for playback of recordings made with + the subtitles plugin + for implementing cDevice::CloseFilter() + for some fixes to PLUGINS.html Ralf Klueber <ralf.klueber@vodafone.com> for reporting a bug in cutting a recording if there is only a single editing mark @@ -1138,6 +1142,7 @@ Reinhard Nissl <rnissl@gmx.de> for fixing a busy loop in fast forward if the next video data file is missing for adding a debug error message to cReceiver::~cReceiver() in case it is still attached to a device + for reporting a missing SetVolumeDevice() call in cDevice::SetPrimaryDevice() Richard Robson <richard_robson@beeb.net> for reporting freezing replay if a timer starts while in Transfer Mode from the @@ -1293,6 +1298,8 @@ Marcus Mönnig <minibbjd@gmx.de> Pekka Virtanen <pekka.virtanen@sci.fi> for adding language code handling to the subtitling descriptor in 'libsi' for adding missing NULL checks when accessing sectionHandler in device.c + for writing the subtitle plugin, which helped in implementing subtitle handling + in VDR John Kennedy <rkennedy@ix.netcom.com> for publishing "A Fast Bresenham Algorithm For Drawing Ellipses" (found at @@ -1419,6 +1426,10 @@ Marco Schlüßler <marco@lordzodiac.de> for fixing a problem with characters >0x7F in the modified version of skipspace() for reporting a faulty comment in Make.config.template for fixing checking for ttDolbyLast in cDevice::SetCurrentAudioTrack() + for fixing selecting the audio track when pressing Ok in the Audio menu + for implementing handling DVB subtitles + for fixing the description of DeviceSetAvailableTrack() and cReceiver(), and adding + an example ~cMyReceiver() in PLUGINS.html (thanks to Marco Schlüßler). Jürgen Schmitz <j.schmitz@web.de> for reporting a bug in displaying the current channel when switching via the SVDRP @@ -1522,6 +1533,8 @@ Udo Richter <udo_richter@gmx.de> for fixing handling single byte characters >0x7F in Utf8ToArray() for fixing clearing color buttons in the 'curses' skin for adding a missing error report to cCuttingThread::Action() + for reporting a problem in handling reallocated memory in cCharSetConv::Convert() + for fixing a new[]/delete mismatch in cMenuEditStrItem::LeaveEditMode() Sven Kreiensen <svenk@kammer.uni-hannover.de> for his help in keeping 'channels.conf.terr' up to date @@ -1772,6 +1785,9 @@ Thomas Günther <tom1@toms-cafe.de> show the current APIVERSION for fixing i18n characters for the Hungarian texts for implementing using nl_langinfo(CODESET) to determine the local codeset to use + for removing a duplicate ',' from the ca_ES.po file + for suggesting to add the 'ß' character to the "allowed characters" in the + de_DE.po file David Woodhouse <dwmw2@infradead.org> for his help in replacing the get/put_unaligned() macros from asm/unaligned.h with @@ -1878,6 +1894,8 @@ Christian Wieninger <cwieninger@gmx.de> for reporting a problem with the device selection in case of timer conflicts for a patch that fixed part of a crash in i18n character set conversion for reporting a bug in stripping the context in I18nTranslate() + for fixing a crash when pressing Left while at the first character of a + cMenuEditStrItem Thiemo Gehrke <tgehrke@reel-multimedia.com> for suggesting to add a setup option to turn off the automatic timeout of the @@ -1949,6 +1967,8 @@ Markus Hahn <mhahn@reel-multimedia.com> for suggesting that the "Back" key should restore the original string when pressed while editing a string item for fixing detection of Premiere NVOD channel links + for making the default copy ctor of cRecording private + for a patch that was used to implement cRecording::Undelete() Jaroslaw Swierczynski <swiergot@gmail.com> for updating the Polish OSD texts and the fontosd-iso8859-2.c file @@ -2169,3 +2189,24 @@ Bruno Roussel <bruno.roussel@free.fr> Matthias Becker <becker.matthias@gmail.com> for suggesting to add a new i18n macro that can be used by plugins to mark texts they want to reuse from VDR's core translations + +Halim Sahin <halim.sahin@t-online.de> + for reporting that the channels.conf file was not written when stopping VDR after + deleting or moving a channel in the Channels menu + +Denis Knauf <denis.knauf@gmail.com> + for reporting a missing '-' at the next to last line of SVDRP help texts + +Diego Pierotto <vdr-italian@tiscali.it> + for translating OSD texts to the Italian language + +Timo Eskola <timo@tolleri.net> + for implementing sending all frames to devices that can handle them in fast forward + trick speeds + +Elias Luttinen <el@iki.fi> + for improving the description of where logging goes in the INSTALL file + +Torsten Kunkel <vdrml@tkunkel.de> + for pointing out that it was not obvious how to initiate internationalization + support for a plugin |