[ANNOUNCE] VDR developer version 2.1.3

Forum principale per problemi di compilazione, installazione, configurazione etc.

Moderatori: ragno, tapino, alez, zulu, davidea

Rispondi
Avatar utente
von fritz
Messaggi: 1479
Iscritto il: 18 gen 2007, 23:33

[ANNOUNCE] VDR developer version 2.1.3

Messaggio da von fritz »

dalla mailinglist:
[vdr] [ANNOUNCE] VDR developer version 2.1.3
Klaus Schmidinger Klaus.Schmidinger at tvdr.de
Sun Jan 5 12:42:10 CET 2014


VDR developer version 2.1.3 is now available at

ftp://ftp.tvdr.de/vdr/Developer/vdr-2.1.3.tar.bz2

A 'diff' against the previous version is available at

ftp://ftp.tvdr.de/vdr/Developer/vdr-2.1.2-2.1.3.diff

MD5 checksums:

054f80e0045aa6fad118e9285b52f4f2 vdr-2.1.3.tar.bz2
3c5ab05d5c4d0b984b34e84190e80949 vdr-2.1.2-2.1.3.diff

WARNING:
========

This is a *developer* version. Even though *I* use it in my productive
environment, I strongly recommend that you only use it under controlled
conditions and for testing and debugging.


Originally I intended to release this version only after the new DiSEqC
configuration dialog was finished. But in the meantime quite a few other things
have come up, so I decided to postpone that dialog and first release what has
piled up so far.


The changes since version 2.1.2:

- Changed the return value of cPositioner::HorizonLongitude() to 0 in case the
latitude of the antenna location is beyond +/-81 degrees.
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
- Fixed some compiler warnings with gcc-4.6.3 (thanks to Rolf Ahrenberg).
- Changed the name of the SVDRP command RENR to MOVR (suggested by Rolf Ahrenberg).
- When cutting a recording it is now checked whether there is already an edited
version of this recording (with the same name, but starting with '%'), and the
user is prompted for confirmation to overwrite it (suggested by Rolf Ahrenberg).
- Revoked "Added maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P"
because it broke things for the "TechniSat AirStar 2" DVB-T card.
- The LIRC remote control now connects to the socket even if it doesn't yet exist when
VDR is started (thanks to Lars Hanisch).
- Changed the absolute latitude limit for visible satellites to 81.2 degrees.
- Added code for parsing LCN and AVC descriptors to libsi (thanks to Rolf Ahrenberg).
- In the "Select folder" menu pressing Ok now selects the folder, even if this is a
folder that contains sub folders (marked with "..."). To open such a folder you
can press the Red key.
- Fixed a possible access to uninitialized data in cEIT::cEIT() (reported by Dominik
Strasser).
- The new menu category mcRecordingEdit is now used to mark menus that edit recording
properties (suggested by Stefan Braun).
- Changes in the teletext PID no longer cause retuning (and thus interrupting a
recording).
- Removed '_' from the FileNameChars and CharMap translations in uk_UA.po.
- Updated the Italian OSD texts (thanks to Diego Pierotto).
- Fixed a missing initialization in the c'tor of cSkinLCARSDisplayChannel (thanks to
Marko Mäkelä).
- Simplified some conditional expressions in skinlcars.c and skinsttng.c (suggested
by Marko Mäkelä).
- Fixed uninitialized item area coordinates in cSkinLCARSDisplayMenu (reported by
Marko Mäkelä).
- Fixed a possible crash if the recordings list is updated externally while the
Recordings menu is open (reported by Lars Hanisch).
- Added a missing closing ')' in the help and man page entry of the --vfat option
(reported by Lars Hanisch).
- Fixed setting the name of the video directory to avoid a crash when using --genindex,
and also to use the correct directory with --edit (the latter reported by Marko
Mäkelä).
- The Recordings menu can now be called with a cRecordingFilter, which allows the
caller to have it display only a certain subset of the recordings (thanks to Lars
Hanisch).
- Added handling UTF-8 'umlaut' characters to cKbdRemote (thanks to Lars Hanisch).
- Made it clear that the Data parameter in cDevice::StillPicture() may point to a
series of packets, not just a single one (thanks to Thomas Reufer).
- cDevice::TrickSpeed() now has an additional parameter named Forward, which indicates
the direction in which replay is being done (suggested by Thomas Reufer). This
information may be necessary for some output devices in order to properly implement
trick modes. Authors of plugins that implement output devices will need to add this
parameter to their derived cDevice class, regardless of whether they will make use
of it or not.
- Added a note to ePlayMode in device.h that VDR itself always uses pmAudioVideo when
replaying a recording (suggested by Thomas Reufer).
- Fixed some spellings in positioner.h and Doxyfile (thanks to Ville Skyttä).
- Changed '%a' to the POSIX compliant '%m' in all scanf() calls (thanks to Ville
Skyttä).
- The new function cCamSlot::Decrypt() can be used by derived classes to implement a
CAM slot that can be freely assigned to any device, without being directly inserted
into the full TS data stream in hardware. A derived class that implements Decrypt()
will also need to set the new parameter ReceiveCaPids in the call to the cCamSlot
base class constructor to true, in order to receive the CA pid TS packets that
contain data necessary for decrypting.
- Many member functions of cCamSlot have been made virtual to allow for easier
implementation of derived classes.
- cTSBuffer now provides the number of available bytes in its Get() function.
- cDvbDevice::GetTSPacket() now calls CamSlot()->Decrypt() in order to allow CAM slots
that can be freely assigned to any device access to the TS data stream.
- Added a check to avoid a possible NULL pointer dereference in cCiSession::SendData()
(reported by Ville Skyttä).
- Deleted a superfluous assignment in cPipe::Open() (reported by Ville Skyttä).
- The script given to VDR with the '-r' option is now also called after the recording
process has actually started (thanks to Christian Kaiser).
- Avoiding unnecessary pkg-config warnings in plugin Makefiles (thanks to Ville Skyttä).
Plugin authors may want to apply the following change to their Makefile:
-PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc))
+PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
- Eliminated MAXDVBDEVICES (suggested by Oliver Endriss).
- Channels that are no longer contained in the current SDT of a transponder are now
marked with the keyword OBSOLETE in their name and provider fields. That way you can
identify obsolete channels when you switch to them, and you can get the complete
overview of all obsolete channels by sorting the Channels list by provider (by
pressing the 0 key twice). Automatic deletion of obsolete channels may follow later.

Have fun!

Klaus
Inviato da mio Laptop con un semplice copia incolla senza usare Tapatalk! :si:

:mrgreen:
VDRBOX-HD : in pensione!
ALTRO : freerunner (openmoko) ; nokia n900 ; 2 seagate dockstar, samsung ps64d8000, diversi dispositivi ARM (Allwinner, Amlogic) ;)
Don't feed the trolls non alimentate sistemi proprietari ;)

Linux rulez! :)
Avatar utente
jan23
Messaggi: 202
Iscritto il: 08 gen 2008, 21:23
Località: in giro...

Re: [ANNOUNCE] VDR developer version 2.1.3

Messaggio da jan23 »

Grazie @von fritz,
tra l'altro su vdrportal è addirittura partita una mezza discussione sulla complizione dell'oSCuor :shock: :D
ciao a tutti
VDR: vdr-2.0.5 (FHS) e 2.1.3 (LCLBLD) su Opensuse-13.1 (x86_64), TT S2-6400, LNB Inverto Twin Black Ultra, rotore Moteck SG-2100
Avatar utente
von fritz
Messaggi: 1479
Iscritto il: 18 gen 2007, 23:33

Re: [ANNOUNCE] VDR developer version 2.1.3

Messaggio da von fritz »

Gia' :roll:

per chi fosse interessato, si tratta di DI QUESTO
i 2 plugghi :culo: non compilano se non si sostituisce MAXDVBDEVICES con MAXDEVICES e si applica questa patch per il pluggo piu' "vecchio":
LINK PATCH

comunque io sono convinto che li usa anche Klaus (almeno 1 dei 2) :
:D

inviato dal mio portatile con un semplice browser(firefox) senza l' uso di Tapatalk :si:

:ciao:
VDRBOX-HD : in pensione!
ALTRO : freerunner (openmoko) ; nokia n900 ; 2 seagate dockstar, samsung ps64d8000, diversi dispositivi ARM (Allwinner, Amlogic) ;)
Don't feed the trolls non alimentate sistemi proprietari ;)

Linux rulez! :)
Avatar utente
jan23
Messaggi: 202
Iscritto il: 08 gen 2008, 21:23
Località: in giro...

Re: [ANNOUNCE] VDR developer version 2.1.3

Messaggio da jan23 »

...ma si può risolvere anche senza passare a libdvbcsa ;)

ciao a tutti
Allegati

[L’estensione diff è stata disattivata e non può essere visualizzata.]

VDR: vdr-2.0.5 (FHS) e 2.1.3 (LCLBLD) su Opensuse-13.1 (x86_64), TT S2-6400, LNB Inverto Twin Black Ultra, rotore Moteck SG-2100
Avatar utente
jan23
Messaggi: 202
Iscritto il: 08 gen 2008, 21:23
Località: in giro...

Re: [ANNOUNCE] VDR developer version 2.1.3

Messaggio da jan23 »

...e per chi volesse sperimentare un po', una cinquantina di plugin per vdr-2.1.3
  • chanman-0.0.10-git20121230
    channelswitcher-0.1.2
    devstatus-0.4.1
    dvbapi-1.0.5git-20140107
    dvbhddevice-2.1.3
    dvbsddevice-2.1.3
    epgsearch-1.0.1-git20130901
    externalplayer-0.3.2
    extrecmenu-1.2.2-git20131114
    favorites_0.0.2
    femon-2.0.0
    filebrowser-0.2.1
    image-0.3.3
    live-0.3.0git-20130504
    loadepg-0.2.6
    menuorg-0.5.1
    music-0.9.3
    osdteletext-0.9.4git-20130310
    radio-1.0.0
    radiolist-0.0.2-27
    reelchannellist-0.0.9
    reelchannelscan-0.6.1-vdr-2.0.0
    reelchannelscan-0.6.2-vdr-2.0.0
    remote-0.5.0
    sc-1.0pre-2.1.3
    skincurses-2.1.3
    skinelchi-0.2.8
    skinenigmang-0.1.2git-20130302
    skinflat-0.1.1
    skinflatplus-0.1.0
    skinnopacity-1.0.3
    skinsoppalusikka-2.0.2
    sleeptimer-0.8.3git-20130126
    status-2.0.4
    streamdev-0.6.0git-20131117
    streamplayer-0.2.0pre1
    submenu-0.0.2
    suspendoutput-1.0.1
    svdrposd-1.0.0
    systeminfo-0.1.3
    text2skin-1.3.2git-20130504
    ttxtsubs-0.3.0git-20131229
    tvguide-1.2.0git-20140103
    tvonscreen-1.1
    tvscraper-0.1.0git-20131007
    undelete-0.0.6git-20120902
    vdrmanager-0.11git-20140103
    vnsiserver3-0.9.1git-20130320
    wirbelscan-0.0.7-2
    xine-0.9.4
    xineliboutput-2.0.0git-20140107
    xmlt2vdr-0.2.0git-20130421
    xvdr-0.9.9git-20131104
    yaepghd-0.0.4
    zappilot-0.0.5
:ciao:
VDR: vdr-2.0.5 (FHS) e 2.1.3 (LCLBLD) su Opensuse-13.1 (x86_64), TT S2-6400, LNB Inverto Twin Black Ultra, rotore Moteck SG-2100
Rispondi