Hi,
we have start a poll at http://www.nmsweb.de/vdr/patch.php where you have the possibility to vote for your favorite VDR patches.
The result should show the most used ones to give Klaus an overview about our burning desires.
In the hope of intense attendance Marc
On Fri, Feb 27, 2009 at 2:25 PM, zulu@zulu-entertainment.de wrote:
we have start a poll at http://www.nmsweb.de/vdr/patch.php where you have the possibility to vote for your favorite VDR patches.
How about the voting text in English....
we have start a poll at http://www.nmsweb.de/vdr/patch.php where you have the possibility to vote for your favorite VDR patches.
I think one important patch is missing for DVB subtitles users, which makes old vdr-subtitles -plugin's recorded subtitles visible also for new subtitles by Klaus.
With this means that if I have a recording made prior vdr 1.6.0 the indixes on info.vdr is different and vdr does not show dvb subtitles on >1.6.0. So you needed to edit info.vdr files or run a patch. I did the later.
http://www.mail-archive.com/vdr@linuxtv.org/msg06453.html
And on my setup I would give it a importance of 5 :)
- Jori
Is this included in liemikuutio?
I don't know as I don't use liemikuutio. But I downloaded the liemikuutio- patch and saw the above patch for device.c which is the same. So the answer is yes, it is included.
diff -Nru vdr-1.6.0-vanilla/device.c vdr-1.6.0-liemikuutio/device.c --- vdr-1.6.0-vanilla/device.c 2008-03-09 12:03:34.000000000 +0200 +++ vdr-1.6.0-liemikuutio/device.c 2009-02-27 23:06:59.000000000 +0200 @@ -1100,7 +1100,8 @@ int LanguagePreference = INT_MAX; // higher than the maximum possible value for (int i = ttSubtitleFirst; i <= ttSubtitleLast; i++) { const tTrackId *TrackId = GetTrack(eTrackType(i)); - if (TrackId && TrackId->id && I18nIsPreferredLanguage(Setup.SubtitleLanguages, TrackId->language, LanguagePreference)) + if (TrackId && TrackId->id && (I18nIsPreferredLanguage(Setup.SubtitleLanguages, TrackId->language, LanguagePreference) || + ((i == ttSubtitleFirst + 8) && !(*TrackId->language) && (LanguagePreference == INT_MAX)))) PreferredTrack = eTrackType(i); } // Make sure we're set to an available subtitle track: