diff options
author | Frank Schmirler <vdr@schmirler.de> | 2012-05-29 12:07:54 +0200 |
---|---|---|
committer | Frank Schmirler <vdr@schmirler.de> | 2012-05-29 12:07:54 +0200 |
commit | af48d11b1856f69da293ad7808771bd8f31f8ab3 (patch) | |
tree | f2225709f5a99e1d1181b652e3a5b05d89283135 | |
parent | 744dc6792ca41febf35982984cc4e79ee35a9ff6 (diff) | |
download | vdr-plugin-streamdev-af48d11b1856f69da293ad7808771bd8f31f8ab3.tar.gz vdr-plugin-streamdev-af48d11b1856f69da293ad7808771bd8f31f8ab3.tar.bz2 |
Release 0.6.0
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | README | 18 | ||||
-rw-r--r-- | common.c | 2 |
3 files changed, 21 insertions, 1 deletions
@@ -1,6 +1,8 @@ VDR Plugin 'streamdev' Revision History --------------------------------------- +2012-05-29: Version 0.6.0 + - Reimplemented some client device methods - Proper fix for "client sends ABRT after TUNE". Obsoletes many hacks in client - Added CLOCK_MONOTONIC timestamp and thread id to Dprintf @@ -129,6 +129,24 @@ If you are updating streamdev from an earlier release, you might have to perform some additional steps. Check which version you've been running before, then read below for the necessary changes. +* Priorities: +------------- +(Affected: 0.5.x and older) + +The server-side setting "Suspend behaviour" has been dropped in 0.6.0 in favour +of priority based precedence. A priority of 0 and above means that clients +have precedence. A negative priority gives precedence to local live TV on the +server. So if "Suspend behaviour" was previously set to "Client may suspend" or +"Never suspended", you will have to configure a negative priority. If the +"Suspend behaviour" was set to "Always suspended", the default values should do. + +Configure the desired priorities for HTTP and IGMP Multicast streaming in the +settings of streamdev-server. If you haven't updated all your streamdev-clients +to at least 0.5.2, configure "Legacy Client Priority", too. + +In streamdev-client, you should set "Minimum Priority" to -99. Adjust "Live TV +Priority" if necessary. + * Location of files: -------------------- (Affected: 0.3.x, 0.4.x, 0.4.0pre, 0.5.0pre) @@ -10,7 +10,7 @@ using namespace std; -const char *VERSION = "0.5.2-git"; +const char *VERSION = "0.6.0-git"; const char cMenuEditIpItem::IpCharacters[] = "0123456789."; |