News:

Latest versions:
Server plugin: 0.5.1
MVP dongle: 0.5.2
Raspberry Pi client: 0.5.2
Windows client: 0.5.2-1

Main Menu

one just can't keep up with Klaus ;)

Started by Harry, January 17, 2006, 07:46:49

Previous topic - Next topic

Harry




Schnurps


Harry


Chris

#5



Schnurps

VDR developer version 1.3.47 is now available at

ftp://ftp.cadsoft.de/vdr/Developer/vdr-1.3.47.tar.bz2

Except for a few version numbers in the man pages etc., this
is pretty much what will become the final version 1.4.

MartenR

And the new VDR version introduces an interesting feature
Quote- The new function cPlugin::Active() can be used by a plugin to indicate that it
is still busy and the system should not shut down or restart (based on a patch
from Peter Dittmann). See PLUGINS.html for details.
I think this is something that should be used by vompserver.

Chris

I will implement this for the next plugin version, since this ability has been requested before on here.

davep

One more. This should be the last before 1.4.

ftp://ftp.cadsoft.de/vdr/Developer/vdr-1.3.48.tar.bz2

This one needs a patch to the VOMP server plugin:

--- Makefile.old        2006-02-27 16:39:10.000000000 +0000
+++ Makefile    2006-04-23 15:36:57.000000000 +0100
@@ -32,6 +32,10 @@
### The version number of VDR (taken from VDR's "config.h"):

VDRVERSION = $(shell grep 'define VDRVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g')
+APIVERSION = $(shell grep 'define APIVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g')
+ifeq ($(strip $(APIVERSION)),)
+   APIVERSION = $(VDRVERSION)
+endif

### The name of the distribution archive:

@@ -75,7 +79,7 @@

libvdr-$(PLUGIN).so: $(OBJS) libdvbmpeg/libdvbmpegtools.a
        $(CXX) $(CXXFLAGS) -shared $(OBJS) libdvbmpeg/libdvbmpegtools.a -o $@
-       @cp $@ $(LIBDIR)/$@.$(VDRVERSION)
+       @cp $@ $(LIBDIR)/$@.$(APIVERSION)

dist: clean
        @-rm -rf $(TMPDIR)/$(ARCHIVE)

The patched Makefile is compatible with pre-1.3.48 vdr (tested on both 1.3.47 and 1.3.48).

Schnurps

VDR developer version 1.3.49 is now available at

ftp://ftp.cadsoft.de/vdr/Developer/vdr-1.3.49.tar.bz2

A 'diff' against the previous version is available at

ftp://ftp.cadsoft.de/vdr/Developer/vdr-1.3.48-49.diff


Well, it's an unusual time for a new developer version of VDR,
but since there have been a few last minute fixes, and I really
want to make version 1.4.0 happen this sunday, I'm releasing
this hopefully last release candidate today.

Please take a thorough look at the changes - especially the ones
to the actual program code files - to help avoid any stupid last
minute bugs.

If there are no more serious bugs, this will become the final
version 1.4.0 this sunday :-)

Schnurps

VDR version 1.4.0 is now available at

ftp://ftp.cadsoft.de/vdr/vdr-1.4.0.tar.bz2

A summary of all the major changes since the last stable version 1.2.6 can be found at

http://www.cadsoft.de/vdr/changelog.htm

When updating from version 1.2.6 please make sure you read the INSTALL
and MANUAL files that come with the VDR source _before_ doing so!
Please make sure you have backup copies of all your configuration files,
and verify carefully that your timers will be set to the correct channels
after switching to this new version.

Harry

QuoteVDR maintenance patch 1.4.0-2 is now available at

ftp://ftp.cadsoft.de/vdr/Developer/vdr-1.4.0-2.diff

This is a 'diff' against the official version 1.4.0 plus all
previous 1.4.0-X maintenance patches.


Small fixes to the officially released VDR versions will be first
made available as "maintenance patches" in the Developer directory,
so that they can be reviewed and tested before a new official
release is published.

So please apply the patches

ftp://ftp.cadsoft.de/vdr/Developer/vdr-1.4.0-1.diff
ftp://ftp.cadsoft.de/vdr/Developer/vdr-1.4.0-2.diff
[...]