Project

General

Profile

Tvheadend-23 » History » Version 2

trac -, 2011-01-01 20:52
Milestone

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