Project

General

Profile

Tvheadend-23 » History » Version 3

Adam Sutton, 2012-08-15 16:39

1 3 Adam Sutton
h1. Tvheadend v2.3
2
3 1 trac -
This release will focus on these things:
4
5 2 trac -
* Improve DVB configuration.
6
* Various web user interface fixes, cleanups, etc.
7 1 trac -
8
9 2 trac -
h2. Changelog
10 1 trac -
11
12 2 trac -
13
** A simple web interface has been added. To access it, visit
14
15 1 trac -
    http://host:9981/simple.html
16
17
    This web interface is designed to be really tiny with only
18
    a simple search field and options to record found shows.
19
    Preferably used from handheld devices.
20
21 2 trac -
** All sensitive information (passwords, etc) are hidden from display
22 1 trac -
    in the web ui. The text will still be displayed in cleartext when
23
    editing.
24
25 2 trac -
** Redesigned the DVB configuration tab in the web userinterface:
26 1 trac -
    - Each adapter have three (or four) tabs
27
      o General setup and information
28
      o Grid of multiplexes
29
      o Grid of services
30
      o For sattelite adapters, a sattelite configuration tab.
31
32 2 trac -
** Add support for disabling / enabling an entire DVB multiplex
33 1 trac -
34 2 trac -
** Add support for multiple [[DiSEqC]] switchports on a single adapter
35 1 trac -
36 2 trac -
** Add support for different sattelite LNBs
37 1 trac -
38 2 trac -
** Graceful handling of DVB adapters that does not support many
39 1 trac -
    table filters in hardware. Tvheadend will rotate among the available
40
    ones.
41
42 2 trac -
** Add support for enabling / disabling transports from the DVB configuration
43 1 trac -
44 2 trac -
** Make it possible to remove DVB multiplexes from the web ui
45 1 trac -
46 2 trac -
** Add 'Revert changes' button to all editable grids in the web ui
47 1 trac -
48 2 trac -
** Make it possible to disable the idle scan on per-DVB adapter basis.
49 1 trac -
    The idle scan is a process to cycles through all multiplex to check
50
    the quality for each mux continously.
51
52 2 trac -
** Hopefully fix some rounding errors in the EPG display. Ticket #69
53 1 trac -
54 2 trac -
** Use a _livegrid_ (http://www.ext-livegrid.com/) for displaying EPG.
55 1 trac -
56 2 trac -
** Remove configuration and settings (/home/hts/.hts/tvheadend) on a 
57 1 trac -
    deb package purge operation. Ticket #73
58
59 2 trac -
** If the Program Stream Information changes during a subscription,
60 1 trac -
    react and send a subscriptionStop + subscriptionStart.
61
    This happens on SVT (in sweden) when the transmission switches
62
    from local to nationwide broadcast (AC3 audio is only present
63
    in nationwide broadcast)
64
    Ticket #78
65
66 2 trac -
** Channel editor has been reworked a bit. It uses an editorGrid, similar
67 1 trac -
    to how other grids work in Tvheadend. Tags are mapped inline using
68
    a list-of-values combobox (http://lovcombo.extjs.eu/)
69
70 2 trac -
** Added a search IMDB direct link in the EPG window popup.
71 1 trac -
    Ticket #79
72
73 2 trac -
** Add support for configuring DVB multiplexes by entering
74 1 trac -
    all tuning parameters manually
75
    Ticket #37
76
77 2 trac -
** Fix a bug causing channel <> tags mapping not to be restored on load.
78 1 trac -
79 2 trac -
** Add exponential backoff for reconnect attempt in code word client.
80 1 trac -
    Ticket #80
81
82 2 trac -
** Try to detect duplicate EPG entries from the DVB feed and adjust
83 1 trac -
    EPG accordingly. The EPG code will search for events with the same
84
    DVB event ID +- 2 events from the current one. If the event id is
85
    equal, the prvious (old) entry will be removed in favor of the new one.
86
    Reason for not blindingly trusting the event id is that some networks
87
    seem to (incorrectly) reuse IDs.
88
    Ticket #65