Add Travis CI configuration
[umurmur.git] / ChangeLog
1 0.2.16a:
2 [FIX] Crash in SHM API during update (doctaweeks)
3 [FIX] Failure to detect missing IPv6 support in FreeBSD jails (marcusball)
4 [FIX] Compile-time check for availability of version_get_string (fatbob313)
5
6 0.2.16:
7 [FIX] Reworked timestamping code (fatbob313)
8 [FIX] Banning works again when using IPv6 (fatbob313 and fmorgner)
9 [NEW] Sharedmemory API (snowblind)
10         to enable use:
11         - '--with-shmapi' with Autotools
12         - '-DENABLE_SHAREDMEMORY_API=on' with CMake
13         The shm API allows you to use/write tools that communicate directly with
14         umurmurd. For an example, see: http://github.com/umurmur/umurmur-monitor
15 [NEW] GnuTLS backend (fmorgner)
16 [NEW] SELinux type-enforcement rules for umurmur (fmorgner)
17         The SELinux rules can be found at http://github.com/umurmur/umurmur-selinux
18
19 0.2.15:
20 IPv6 dual-stack support (fmorgner).
21 CMake build system added alongside Autotools (fmorgner).
22 Update to use Protobuf-C 1.0.0.
23
24 0.2.14:
25 Add 'silent' option to channel configuration.
26 Add 'position' option to channel configuration.
27 Support PolarSSL 1.3.x.
28 Handle PolarSSL compiled with zlib-support.
29 Use CLOCK_MONOTONIC instead of gettimeofday() which can cause mayhem if
30         time changes dramatically, e.g. when synchronizing with time
31         server.
32 Add support for certificate chain delivery for OpenSSL via new option 'ca_path'.
33
34 0.2.13:
35 Fix Opus not working.
36 Add timestamp when logging to file.
37
38 0.2.12:
39 Fix crash at client disconnect using PolarSSL >= 1.2.6
40 Fix usage of /dev/urandom for random numbers (PolarSSL)
41
42 0.2.11:
43 Support Mumble protocol 1.2.4.
44 Support Opus codec.
45 Add config file option for 'Opus threshold'.
46 Support PolarSSL 1.2.x.
47 Remove support for PolarSSL versions prior to 1.0.0.
48 Fix disconnect when using PTT.
49 Fix possible crash when many clients disconnects simultaneously.
50 Fix error message at client disconnect when using OpenSSL.
51 Autoconf './configure' switches added:
52 --enable-polarssl-test-certificate - use and link the PolarSSL
53         test certificate. Not used by default, causing umurmurd to exit
54         with error if no certificate and/or key file is found.
55 --enable-polarssl-havege - use PolarSSL's HAVEGE random number
56         generator. Defaults to /dev/urandom.
57 + some other fixes.
58
59 0.2.10:
60 Update version string everywhere.
61 Better logging when connection fails.
62 Update Changelog!
63
64 0.2.9:
65 Fix compile on *BSD (J Sisson).
66 Fix building on OS X.
67 Support for PolarSSL 1.1.x.
68 Admin user via token password.
69 Mute/deafen/kick and optionally ban for admin user.
70 Optionally save banlist to file.
71 Bans via IP and user certificate.
72 Banlist editing in Mumble.
73 Option added to disallow text messages.
74 Release codename added.
75 Some other random fixes e.g. 'self deaf' also 'self mutes'.
76
77 0.2.8:
78 Add channel passwords support. 'password = "<password>";' in channel configuration.
79 Remove pointless CA cert handling with PolarSSL. Did not work anyway...
80 Add support for PolarSSL v1.x.x. v0.x.x is still supported.
81 Fix portability issues in configure script. Add poll.h to header checks.
82 Fix unneccesary fatal exit when client is disconnected due to SSL error.
83 Add configuration test flag to umurmurd (-t).
84
85 0.2.7:
86 Autotools build system implemented by Diaoul
87 Add configuration option to log to file.
88 Fix codec alpha/beta in message to client.
89 Some random cleanup.
90
91 0.2.6:
92 Privilege dropping support added. Enable in conf file. (from tilman2)
93 PID file fixes  + various other fixes by tilman2.
94 Configuration file errors now goes to the log instead of stderr.
95 BSD fixes by J Sisson.
96 Update Mumble protocol to 1.2.3.
97 Add support for UserStats message.
98 Add support for recording.
99
100 0.2.5:
101 Change error handling from fatal + exit to just warn when fail to set
102 TOS for UDP socket.
103 Fix mute/unmute status not showing up properly in GUI in the other
104 clients.
105 Fix false 'authenticated' status showing up for other clients.
106 Add bind IP and port to commandline parameters.
107 Update Protobuf-C to 0.14.
108
109 0.2.4:
110 Fsked up the 0.2.3 release with a bad Makefile... Fixed in this one.
111
112 0.2.3:
113 Fix byte order confusion which made uMurmur not work on big endian
114 platforms.
115
116 0.2.2:
117 Fix server crash when user adding an Access Token while connected to the
118 server.
119 Fix server crash when dragging the self user from a temporary channel and
120 dropping it back into the very same temporary channel.
121
122 0.2.1:
123 Just a version string update (accidentally was left at "0.2.0-beta2" in
124 release 0.2.0).
125
126
127 0.2.0:
128 Lots of changes. Highlights:
129
130 Uses Mumble protocol 1.2.x, meaning that clients 1.2.x are supported.
131 Support for PolarSSL as an alternative to OpenSSL.
132 Whisper target to channels, channel trees and linked channels.
133 Temporary channels can be created by users.
134 Channel links can be configured in the configuration file.
135 Channels can be configured non-enterable in configuration file.
136 Positional audio is stripped if users are not in the same plugin context
137 (playing the same game).
138
139 0.1.3:
140 Fix TCP-mode memory leak.
141 Add command-line switch to enable realtime priority
142
143 0.1.2:
144 Increase max string size
145 Force a close when inactivity timer triggers
146 Correct log levels
147
148 0.1.1:
149 Initial release