Release 0.8.1
This commit is contained in:
parent
5d640092f2
commit
3a597343c5
@ -1,5 +1,6 @@
|
||||
0.8.1
|
||||
=====
|
||||
10-Jul-2011: - Released 0.8.1
|
||||
20-Jun-2011: - removed obsolete files: addrcache.[ch]
|
||||
19-Jun-2011: - new plugin_regex: apply an extended regular expression
|
||||
to the SIP 'To' URI and rewrite the target (outgoing
|
||||
|
||||
35
RELNOTES
35
RELNOTES
@ -2,10 +2,15 @@ Release Notes for siproxd-0.8.1
|
||||
===============================
|
||||
|
||||
Major changes since 0.8.0:
|
||||
-
|
||||
- new Plugins:
|
||||
plugin_prefix: add a prefix on outgoing calls
|
||||
plugin_regex: regular expression rewriting (To header) for outgoing calls
|
||||
- adjustable pthrad stack size (smaller memory footprint on small
|
||||
embedded systems like OpenWRT routers)
|
||||
- plus various bugfixes
|
||||
|
||||
Upgrade Notes 0.8.0 to 0.8.1:
|
||||
-
|
||||
- merge your configuration file siproxd.conf (new config options)
|
||||
|
||||
General Overview:
|
||||
- SIP (RFC3261) Proxy for SIP based softphones hidden behind a
|
||||
@ -19,10 +24,8 @@ General Overview:
|
||||
- Access control (IP based) for incoming traffic
|
||||
- Proxy Authentication for registration of local clients (User Agents)
|
||||
with individual passwords for each user
|
||||
- May be used as pure Outbound proxy (registration of local UAs
|
||||
- May be used as pure outbound proxy (registration of local UAs
|
||||
to a 3rd party registrar)
|
||||
- Fli4l OPT_SIP (still experimental) available, check
|
||||
http://home.arcor.de/jsffm/fli4l/
|
||||
- runs on various operating systems (see below)
|
||||
- Full duplex RTP data stream proxy for *incoming* and *outgoing*
|
||||
audio data - no firewall masquerading entries needed
|
||||
@ -51,12 +54,11 @@ Requirements:
|
||||
|
||||
Mainly tested on:
|
||||
- CentOS 5, 32bit Linux
|
||||
This is my main development and testing environment. Other platforms
|
||||
This is the main development and testing environment. Other platforms
|
||||
are not extensively tested.
|
||||
|
||||
Builds on (tested by dev-team or reported to build):
|
||||
- Linux: Fedora
|
||||
CentOS/RedHat
|
||||
- Linux: CentOS/RedHat EL
|
||||
( Fedora 64bit )*
|
||||
( WRT54g (133mhz mipsel router))*
|
||||
(- FreeBSD: FreeBSD 4.10-BETA )*
|
||||
@ -67,9 +69,9 @@ Builds on (tested by dev-team or reported to build):
|
||||
* Note: As the compile farm of sourceforge.net has been discontinued our
|
||||
building test possibilities are now very limited. Currently
|
||||
no explicit testing for systems/distributions other than
|
||||
Fedora/CentOS (x86 architecture) is made. We'll be looking into
|
||||
CentOS/RHEL (x86 architecture) is made. We'll be looking into
|
||||
possibilities to perform some broader testing in future.
|
||||
Of course, external help will be welcome :-)
|
||||
Of course, external testers are welcome :-)
|
||||
|
||||
Reported interoperability with softphones:
|
||||
- Grandstream BudgeTone-100 series
|
||||
@ -83,12 +85,10 @@ Reported interoperability with softphones:
|
||||
- FreePBX
|
||||
|
||||
Reported interoperability with SIP service providers:
|
||||
- Sipphone (http://www.sipphone.com)
|
||||
- Sipgate (http://www.sipgate.de)
|
||||
- Stanaphone (SIP Gateway to PSTN)
|
||||
- Sipcall.ch (Swiss VoIP provider)
|
||||
- Ekiga
|
||||
- Gizmo (actually sipphone.com)
|
||||
|
||||
|
||||
If you have siproxd successfully running with another SIP phone
|
||||
@ -127,10 +127,17 @@ distribution I'd be happy to get a short notice.
|
||||
|
||||
-----
|
||||
Signatures for siproxd-0.8.1.tar.gz archive:
|
||||
MD5 Hash:
|
||||
SHA-256 Hash:
|
||||
MD5 Hash: 1a6f9d13aeb2d650375c9a346ac6cbaf
|
||||
SHA-256 Hash: df2df04faf5bdb4980cbdfd5516a47898fc47ca1ebc2c628aa48305b20a09dad
|
||||
|
||||
GnuPG signature:
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.4.5 (GNU/Linux)
|
||||
|
||||
iD8DBQBOGgSbB2xLpFxU+GURAt/gAJ9uWS01n7Tr7G7HlX8Zp8+W33OYZACfX69S
|
||||
mTpcbCWOxuoKDp5R3GWZ+zg=
|
||||
=BFqD
|
||||
-----END PGP SIGNATURE-----
|
||||
|
||||
|
||||
GnuPG: pub 1024D/87BCDC94 2000-03-19 Thomas Ries (tries at gmx.net)
|
||||
|
||||
@ -64,7 +64,7 @@ dnl Release Version
|
||||
dnl
|
||||
SPD_MAJOR_VERSION=0
|
||||
SPD_MINOR_VERSION=8
|
||||
SPD_MICRO_VERSION=1dev
|
||||
SPD_MICRO_VERSION=1
|
||||
|
||||
SPD_VERSION=$SPD_MAJOR_VERSION.$SPD_MINOR_VERSION.$SPD_MICRO_VERSION
|
||||
|
||||
|
||||
@ -2,6 +2,7 @@ The following procedure shall be used to make a new release (siproxd-stable):
|
||||
|
||||
Make the release:
|
||||
- check in all tested changes
|
||||
- update configure.in (version number)
|
||||
- update ChangeLog
|
||||
- update RELNOTES
|
||||
Changes since last version
|
||||
@ -15,7 +16,7 @@ Make the release:
|
||||
- Linux 64bit
|
||||
- $ make dist
|
||||
- calculate MD5 checksum, sha256 (shasum -a256) & GPG
|
||||
- update RELNOTES
|
||||
- update RELNOTES with checksums
|
||||
- check in outstanding changes
|
||||
- create CVS tag (e.g. $ cvs rtag rel_0_5_7 siproxd)
|
||||
- publish on SF.net
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user