Project

General

Profile

Tvheadend-23 » History » Version 1

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

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