Fix #85
[jelmer/ctrlproxy.git] / NEWS
1  Otherwise indicated differently, all changes made by 
2         Jelmer Vernooij.
3
4 Ctrlproxy 3.0.1 2007-01-04
5
6   BUG FIXES
7
8     * Logging for network state information has been simplified and been 
9           made less verbose.
10
11         * 324 and 329 replies are now cached.
12
13         * 352 and 315 replies are now (optionally) cached. The "max_who_age" 
14           setting can be set to the number of seconds that results should be cached.
15           This prevents "Excess Flood" errors when connecting using several xchat clients
16           at once. Can be disabled by setting max_who_age=0 (the default).
17
18     * Fixed bug in administration command (reported by Daniel Poelzleithner)
19
20     * Fix invalid assert in auto-away (reported by Daniel Poelzleithner)
21
22         * Fix rejoining parted channels on restart (#78)
23
24         * Fix erroneus toggling of "report-time" setting (#77)
25         
26         * Fix endless loop in logging system when debug level is 
27           set to 5 (reported by _static_).
28         
29         * listener configuration is no longer truncated at exit.
30
31         * Fix channel information not being replicated for the administration 
32           network.
33
34         * Allow ports different than 6680 in ctrlproxy --init. (#85)
35
36   PORTABILITY
37   
38     * Added replacement functions for g_file_{set,get}_contents, for those 
39       with GLib < 2.8
40     
41   DOCUMENTATION UPDATES
42
43     * Updated command documentation (thanks, Korbinian Rosenegger)
44
45     * Updated requirements
46
47   MINOR CHANGES
48
49     * Fixed several compiler warnings
50
51 Ctrlproxy 3.0   2006-12-08
52
53   This list is not complete. Several subsystems in ctrlproxy have been 
54   rewritten.
55
56   BUG FIXES
57
58     * NetBSD portability fixes. (Adrian Portelli)
59
60     * Properly support strict-rfc1459 comparisons.
61
62         * No longer depend on specific order of USER and NICK commands.
63
64         * Fixed 100% CPU usage bug.
65
66         * Fix large number of memory leaks.
67
68         * Fix crash bug in log_custom (Korbinian Rosenegger)
69
70         * Support 'true' RFC1459 string comparison.
71
72         * Respect CASEMAPPING sent by server.
73
74         * Support different NICK sent by client in replication.
75
76         * Make repl_* work when NICK sent by client differs from current NICK.
77
78         * Support mIRC and ksirc.
79
80         * Fix bug with setting PRIVATE too often.
81
82         * Fix issue with NickServ IDENTIFY'ing when connecting to server.
83         
84         * Fix problems with incorrectly added colons.
85
86   INTERNALS
87
88         * Reduce number of files generated by configure.
89
90         * Moved source control system to Bazaar (http://www.bazaar-vcs.org/)
91
92         * Use separate include files rather than one large one.
93
94         * Get rid of complicated filter class system.
95
96         * Several modules have been integrated into the ControlProxy binary 
97           to avoid (engineering) overhead.
98
99         * There now is a testsuite that tests some of the internal functions.
100
101         * Add 'debug' module for easier debugging.
102
103   NEW FEATURES
104
105         * Removed dependency on popt and libxml.
106
107     * Enhance custom_log (Alexander Wild).
108
109         * Add support for %B, %e and %Y in log_custom (Korbinian Rosenegger)
110
111         * Support CONNECT proxy command as used by irssi and other clients.
112
113         * Use new CtrlProxy-specific logging system. 
114           Logs go to ~/.ctrlproxy/log by default now when in daemon mode.
115
116         * nickserv is now "self-learning".
117
118         * Add socks module to allow connecting using SOCKS.
119
120         * Install default configuration that is used when the user 
121           does not have a local configuration.
122
123         * Support autogenerating a configuration using `ctrlproxy --init'.
124
125         * Uses GNUTLS now rather than OpenSSL.
126
127         * Remove linestack_memory and make linestack_file the default.
128
129         * Admin module can now also work as a seperate ('virtual') network.
130
131         * Make reconnect_timeout changeable (Alexander Wild)
132
133         * Add inetd-style client support.
134
135         * Support non-blocking connects. (Daniel Poelzleithner)
136
137         * Parse 005 line sent by server for PREFIX, CHANTYPES, NETWORK.
138
139         * Add ability to change NICK when away.
140
141         * Add help support in admin module (Daniel Poelzleithner).
142
143         * Allows connecting to networks on ~/.ctrlproxy/socket using 
144           unix domain sockets.
145
146         * Write out PID file.
147
148         * lots of other small improvements