]> git.sesse.net Git - cubemap/blob - NEWS
Fix an issue where access.log would have the wrong timestamp.
[cubemap] / NEWS
1 Cubemap 1.2.1, 2015-08-30
2
3   * Use libsystemd to inform systemd accurately about when the service is up
4     and running. Note that this means Cubemap now also depends on libsystemd.
5
6   * Add a simple HTTP endpoint that returns a very short string (gen204),
7     for timing purposes.
8
9   * Document config options better in cubemap.config.sample.
10  
11
12 Cubemap 1.2.0, 2015-07-24
13
14   * Add support for server-side prebuffering (force_prebuffering=NNN
15     on a stream to prebuffer that amount of bytes), where Cubemap doesn't
16     send any data before it knows it can send a certain number of
17     bytes without waiting for more from the input (either through
18     giving out old data, waiting for new data, or a combination).
19
20     This is useful when using jwPlayer or <video> in browsers, where
21     the client typically does not wait to fill up its buffer before it
22     starts playing, and thus will stay perenially in a low-buffer state.
23     Effectively it is forcing a certain amount of buffering on the client.
24
25   * Log the client's Referer: and User-Agent: header in the stats file and
26     access log.
27
28   * Time out clients that go more than 60 seconds without sending a request;
29     they could hang in that state for days and months before.
30
31
32 Cubemap 1.1.2, 2014-07-07
33
34   * Remove some leftover debug code that would cause compile errors.
35
36
37 Cubemap 1.1.1, 2014-07-06
38
39   * Fix parsing of IPv6 SSM URLs. Also add an example to the
40     configuration file.
41
42   * Change the default backlog size to 10 MB.
43
44
45 Cubemap 1.1.0, 2014-04-30
46
47   * Multicast support, both for sending and receiving;
48     both IPv4 and IPv6, both ASM and SSM.
49
50   * Drop support for fwmark, since it is obsolete with sch_fq
51     around.
52
53   * Many smaller bugfixes.
54
55
56 Cubemap 1.0.4, 2014-03-23
57
58   * Fix a segfault on reload that was introduced in 1.0.2.
59
60   * Remove the Metacube VLC patch, as it is now upstream.
61
62   * Always compile with large file support, which works around
63     a blocking issue with 32-bit x86.
64
65
66 Cubemap 1.0.3, 2014-02-06
67
68   * Fix a compilation error with newer glibc.
69
70
71 Cubemap 1.0.2, 2014-02-04
72
73  * Support SO_MAX_PACING_RATE (Linux 3.13 and above).
74
75  * Add a listen statement to listen only on specific IP addresses,
76    in addition to the port statement.
77
78  * Update the VLC Metacube patch to apply to current VLC git.
79
80  * Fix a crash bug on reload.
81
82  * Be more consistent about handling streams that have no data yet.
83    In particular, this could show itself as erratic behavior when
84    sending Metacube streams on to other Cubemap instances.
85
86
87 Cubemap 1.0.1, 2013-09-19
88
89  * Added NEWS file.
90
91  * Fix an issue where Cubemap could be slow when /tmp was slow
92    (ie., not on SSD and not on tmpfs), due to high mutex contention.
93
94  * Fix compilation on 32-bit systems.
95
96  * Various packaging fixes and a systemd service unit, contributed
97    by Philipp Kern.
98
99  * Use the new deleted-by-default temporary files if available
100    (Linux 3.11 and above).
101
102
103 Cubemap 1.0.0, 2013-08-24
104
105  * Initial release.