diff -Nru minidlna-1.2.0+dfsg/debian/changelog minidlna-1.2.0+dfsg/debian/changelog --- minidlna-1.2.0+dfsg/debian/changelog 2017-08-04 19:50:21.000000000 +0000 +++ minidlna-1.2.0+dfsg/debian/changelog 2017-08-13 16:17:06.000000000 +0000 @@ -1,3 +1,15 @@ +minidlna (1.2.0+dfsg-2) unstable; urgency=medium + + * debian/minidlnad.1: Mention -r option. + * debian/minidlna.default: Add -r option. Thanks to Dirk Schmitt for + suggestion. (Closes: #870868). + * debian/NEWS: Mention -r option in defaults. + * debian/copyright: Fix avahi.? entry. + * minidlna.conf, minidlna.conf.5: Add new tivo_discovery option. + * debian/minidlna.conf.5: Small fixes. + + -- Alexander GQ Gerasiov Sun, 13 Aug 2017 19:17:06 +0300 + minidlna (1.2.0+dfsg-1) unstable; urgency=medium * 11-http-parse.patch removed: fixed upstream. diff -Nru minidlna-1.2.0+dfsg/debian/copyright minidlna-1.2.0+dfsg/debian/copyright --- minidlna-1.2.0+dfsg/debian/copyright 2017-07-29 22:32:29.000000000 +0000 +++ minidlna-1.2.0+dfsg/debian/copyright 2017-08-13 16:17:01.000000000 +0000 @@ -24,8 +24,14 @@ Copyright: 2013-2014, Justin Maggard License: GPL-2+ -Files: clients.? libav.h avahi.? -Copyright: 2013, NETGEAR +Files: clients.? libav.h +Copyright: 2013-2017, NETGEAR +License: GPL-2 + +Files: avahi.? +Copyright: Daniel Stonier + Daniel S. Haischt + 2017, NETGEAR License: GPL-2 Files: codelength.h getifaddr.? minidlnapath.h minidlnatypes.h minissdp.? diff -Nru minidlna-1.2.0+dfsg/debian/minidlna.conf minidlna-1.2.0+dfsg/debian/minidlna.conf --- minidlna-1.2.0+dfsg/debian/minidlna.conf 2017-07-25 08:55:08.000000000 +0000 +++ minidlna-1.2.0+dfsg/debian/minidlna.conf 2017-08-13 16:17:01.000000000 +0000 @@ -109,6 +109,10 @@ # Support for streaming .jpg and .mp3 files to a TiVo supporting HMO. #enable_tivo=no +# Which method to use for registering in TiVo: 'bonjour' (default) or +# legacy 'beacon' +#tivo_discovery=bonjour + # SSDP notify interval, in seconds. #notify_interval=895 diff -Nru minidlna-1.2.0+dfsg/debian/minidlna.conf.5 minidlna-1.2.0+dfsg/debian/minidlna.conf.5 --- minidlna-1.2.0+dfsg/debian/minidlna.conf.5 2017-07-25 08:55:08.000000000 +0000 +++ minidlna-1.2.0+dfsg/debian/minidlna.conf.5 2017-08-13 16:17:01.000000000 +0000 @@ -55,12 +55,12 @@ .Pa /var/lib/minidlna by default. .It Cm enable_tivo -Set to +Support for streaming .jpg and .mp3 files to a TiVo supporting HMO. Set to .Dq yes to enable support for streaming JPEG and mp3 files to a TiVo supporting HMO. Set to .Dq no -otherwise. +(default) otherwise. .It Cm friendly_name Customize the name that the .Nm minidlnad @@ -250,6 +250,12 @@ least) Sony DLNA products. Set to .Dq no otherwise. +.It Cm tivo_discovery +Which method to use for registering in TiVo. By default +.Dq bonjour +is used. You can switch to legacy +.Dq beacon +method. .It Cm user Specify the user name or UID to run as. Beware that if you are using the init script to start .Nm minidlnad , @@ -261,7 +267,11 @@ .It Cm uuid Specify device's UPnP UUID minidlna should use. By default MAC address is used to build uniq UUID. .It Cm wide_links -Set to 'yes' to allow symlinks that point outside user-defined media_dirs. By default, wide symlinks are not followed. +Set to +.Dq yes +to allow symlinks that point outside user-defined +.Cm media_dir. +By default, wide symlinks are not followed. .El .Sh FILES .Bl -tag -width Ds diff -Nru minidlna-1.2.0+dfsg/debian/minidlnad.1 minidlna-1.2.0+dfsg/debian/minidlnad.1 --- minidlna-1.2.0+dfsg/debian/minidlnad.1 2017-07-25 08:55:08.000000000 +0000 +++ minidlna-1.2.0+dfsg/debian/minidlnad.1 2017-08-12 12:31:29.000000000 +0000 @@ -80,7 +80,9 @@ .It Fl p Ar port Port number to listen on. .It Fl R -Forces a full rescan of the media files. +Forces a full rescan of the media files. First it will remove all cached data and database. Any bookmarks will be lost. +.It Fl r +Do a non-destructive rescan of the media files on start-up. .It Fl S Stay foreground. Can be used when .Nm diff -Nru minidlna-1.2.0+dfsg/debian/minidlna.default minidlna-1.2.0+dfsg/debian/minidlna.default --- minidlna-1.2.0+dfsg/debian/minidlna.default 2017-07-25 08:55:08.000000000 +0000 +++ minidlna-1.2.0+dfsg/debian/minidlna.default 2017-08-12 14:16:13.000000000 +0000 @@ -19,4 +19,6 @@ #GROUP="minidlna" # Additional options that are passed to the daemon -DAEMON_OPTS="" +# We pass -r option to do soft non-destructive rebuild on every start-up. +# If your systerm restarts often, you might want to remove this. +DAEMON_OPTS="-r" diff -Nru minidlna-1.2.0+dfsg/debian/NEWS minidlna-1.2.0+dfsg/debian/NEWS --- minidlna-1.2.0+dfsg/debian/NEWS 2017-07-25 08:55:08.000000000 +0000 +++ minidlna-1.2.0+dfsg/debian/NEWS 2017-08-13 15:25:08.000000000 +0000 @@ -1,3 +1,15 @@ +minidlna (1.2.0+dfsg-2) unstable; urgency=medium + + With 1.2.0 release new option -r was introduced. It forces minidlnad to do + soft rebuild of the database on startup. It helps in situations when data on + disk was changed, but minidlna daemon missed this for some reason and did not + update the database. + + I added -r option to default parameters. If your system restarts often and + you do not need this, feel free to remove it from /etc/default/minidlna. + + -- Alexander GQ Gerasiov Sun, 13 Aug 2017 18:18:12 +0300 + minidlna (1.1.6+dfsg-1) unstable; urgency=medium With this version of minidlna new config option appears: wide_links. By