0.3.3 release candidate.
This commit is contained in:
parent
25c03f5c96
commit
0190c38c32
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
0.3.3:
|
||||||
|
- Fix SSL/TLS related memory leak.
|
||||||
|
- Fix 100% CPU issue with SSL connections.
|
||||||
|
- Added option to redirect from adc:// to adcs:// if tls is required.
|
||||||
|
- Added more informative error messages for the configuration file parser.
|
||||||
|
- Made sure logs can be rotated by sending a SIGHUP to the hub
|
||||||
|
- Fix bug #139: Unable to use TLS - due to not handling quotes around configuration strings.
|
||||||
|
- Fix bug #136 - !broadcast does not report status back to to sender.
|
||||||
|
|
||||||
|
|
||||||
0.3.2:
|
0.3.2:
|
||||||
- Fixed bugs in the kqueue network backend (OSX/BSD)
|
- Fixed bugs in the kqueue network backend (OSX/BSD)
|
||||||
- Rewrote the configuration backend code.
|
- Rewrote the configuration backend code.
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
uhub (0.3.3-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* Updated upstream version.
|
||||||
|
|
||||||
|
-- Jan Vidar Krey <janvidar@extatic.org> Tue 24 Aug 2010 18:00:00 +0200
|
||||||
|
|
||||||
uhub (0.3.2-1) unstable; urgency=low
|
uhub (0.3.2-1) unstable; urgency=low
|
||||||
|
|
||||||
* Updated upstream version.
|
* Updated upstream version.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Summary: High performance ADC p2p hub.
|
Summary: High performance ADC p2p hub.
|
||||||
Name: uhub
|
Name: uhub
|
||||||
Version: 0.3.2
|
Version: 0.3.3
|
||||||
Release: 3
|
Release: 3
|
||||||
License: GPLv3
|
License: GPLv3
|
||||||
Group: Networking/File transfer
|
Group: Networking/File transfer
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef VERSION
|
#ifndef VERSION
|
||||||
#define VERSION "0.3.2"
|
#define VERSION "0.3.3"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef GIT_REVISION
|
#ifndef GIT_REVISION
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
#else
|
#else
|
||||||
#define REVISION "(git: " GIT_REVISION ")"
|
#define REVISION "(git: " GIT_REVISION ")"
|
||||||
#ifdef GIT_VERSION
|
#ifdef GIT_VERSION
|
||||||
#define PRODUCT_STRING PRODUCT "/" GIT_VERSION
|
#define PRODUCT_STRING PRODUCT "/" VERSION " (" GIT_VERSION ")"
|
||||||
#else
|
#else
|
||||||
#define PRODUCT_STRING PRODUCT "/" VERSION " " REVISION
|
#define PRODUCT_STRING PRODUCT "/" VERSION " " REVISION
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue