mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
vdr: update to 2.6.6
log: - https://github.com/vdr-projects/vdr/compare/2.6.5...2.6.6 release notes: 2024-01-24: Version 2.6.6 - Changed installing config files to handle potentially broken 'cp -n'. - Fixed height calculation in progress display (thanks to Matthias Senzel). - Fixed a possible crash in cDevice::StopSectionHandler() (thanks to Markus Ehrnsperger). - Using a dummy OSD if no OSD provider is available is not considered an error any more (thanks to Markus Ehrnsperger). - Implemented scaling images (thanks to Andreas Baierl). - Removed syslog calls in child process after fork() (thanks to Markus Ehrnsperger). - Fixed an unnecessary double display of the current menu item in page up/down (thanks to Matthias Senzel). - Fixed an unnecessary double display of menu items in the Recordings menu (thanks to Matthias Senzel). - Added the move constructor to cString for better performance (thanks to Markus Ehrnsperger). - Added the total number of errors when logging new recording errors. - Added '/' to the list of fuzzy characters for pattern timers. - Fixed handling primary device on headless systems (thanks to Markus Ehrnsperger). - Workaround in detecting frame height for channels with wrong crop parameters (thanks to Christoph Haubrich). - Fixed possible duplicate component entries in the info of an ongoing recording (reported by Christoph Haubrich).
This commit is contained in:
parent
9fb28c4af4
commit
284152782a
@ -4,8 +4,8 @@
|
||||
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="vdr"
|
||||
PKG_VERSION="2.6.5"
|
||||
PKG_SHA256="dbf7f79e02b6028380e19d89ec0755981f5230e93f1e3c9e3283d22c3dac6c10"
|
||||
PKG_VERSION="2.6.6"
|
||||
PKG_SHA256="41334beed94bf3e4c222b354ae7d2241154845238d1fdd5accfa9d5f103d545b"
|
||||
PKG_LICENSE="GPL"
|
||||
PKG_SITE="http://www.tvdr.de"
|
||||
PKG_URL="http://git.tvdr.de/?p=vdr.git;a=snapshot;h=refs/tags/${PKG_VERSION};sf=tbz2"
|
||||
|
@ -3,7 +3,7 @@ Subject: [PATCH] decrease channels.conf autosave delay
|
||||
|
||||
--- a/vdr.c
|
||||
+++ b/vdr.c
|
||||
@@ -80,7 +80,7 @@
|
||||
@@ -82,7 +82,7 @@
|
||||
#define SHUTDOWNCANCELPROMPT 5 // seconds to wait in user prompt to allow canceling shutdown
|
||||
#define RESTARTCANCELPROMPT 5 // seconds to wait in user prompt before restarting on SIGHUP
|
||||
#define MANUALSTART 600 // seconds the next timer must be in the future to assume manual start
|
||||
|
@ -3,20 +3,20 @@ ERROR: no OSD provider available - using dummy OSD!
|
||||
|
||||
--- a/osd.c
|
||||
+++ b/osd.c
|
||||
@@ -2029,8 +2029,6 @@ cOsd *cOsdProvider::NewOsd(int Left, int Top, uint Level)
|
||||
@@ -2302,8 +2302,6 @@ cOsd *cOsdProvider::NewOsd(int Left, int Top, uint Level)
|
||||
}
|
||||
return Osd;
|
||||
}
|
||||
- else
|
||||
- esyslog("ERROR: no OSD provider available - using dummy OSD!");
|
||||
- isyslog("no OSD provider available - using dummy OSD!");
|
||||
return new cOsd(Left, Top, 999); // create a dummy cOsd, so that access won't result in a segfault
|
||||
}
|
||||
|
||||
--- a/vdr.c
|
||||
+++ b/vdr.c
|
||||
@@ -784,11 +784,6 @@ int main(int argc, char *argv[])
|
||||
Folders.Load(AddDirectory(ConfigDirectory, "folders.conf"));
|
||||
@@ -777,11 +777,6 @@ int main(int argc, char *argv[])
|
||||
CamResponsesLoad(AddDirectory(ConfigDirectory, "camresponses.conf"), true);
|
||||
DoneRecordingsPattern.Load(AddDirectory(CacheDirectory, "donerecs.data"));
|
||||
|
||||
- if (!*cFont::GetFontFileName(Setup.FontOsd)) {
|
||||
- const char *msg = "no fonts available - OSD will not show any text!";
|
||||
|
Loading…
x
Reference in New Issue
Block a user