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