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