diff --git a/docs/ChangeLog b/docs/ChangeLog
index cde7753eb5..69ea7c354a 100644
--- a/docs/ChangeLog
+++ b/docs/ChangeLog
@@ -36,6 +36,15 @@ freeswitch (1.0.5)
build: add --disbale-cpp configure argument to disable the c++ build for the core (r:15717)
build: pass configure args/vars to sub-configure commands run from module makefiles (r:15718)
build: try to not insert -std=c99 into cflags passed to libs that are not ansi compliant (r:15739)
+ build: add -Wdeclaration-after-statement for supported compilers (r:15762)
+ build: add changes for sounds download to allow independent version specific selection (r:15777)
+ build: move sounds out to their own packages as they do not change revisions with freeswitch (r:15809)
+ build: fix setting of BASE passed to module makefiles when doing --srcdir builds (FSBUILD-211/r:15814)
+ build: Numerous --srcdir fixes (FSBUILD-211/r:15849)
+ build: compile by default on osx 10.6 and add --enable-64 support (with previous patch) for osx 10.6 (r:15862)
+ build: add --enable-64 support for os x 10.4 and 10.5 (r:15874)
+ build: add missing modules to modules.conf (FSBUILD-214/r:15879)
+ build: fix mod_managed build on gcc 4.4 (r:15897)
config: improvements to French language handling (MODASRTTS-20/r:14911)
config: Add valet_parking to default config (r:15124)
config: Add valet macros (r:15156)
@@ -45,6 +54,10 @@ freeswitch (1.0.5)
config: Fix default group calling so that the order is followed (FSCONFIG-12/r:15492)
config: add commented uuid param to mod_logfile's default config (r:15537)
config: add descriptions for broadvoice codecs (FSCORE-497/r:15626)
+ config: Add core-db-dsn (commented) to switch.conf.xml (r:15756)
+ config: Block intercepts after call has been answered (FSCONFIG-16/r:15828)
+ config: Move erlang module's default config file to be with all the others (r:15881)
+ config: Add confirm-key & -macro, tts-engine & -voice, confirm-attempts attributes, extra comments to ivr.conf.xml (r:15929)
core: Add per-call logging (r:14509)
core: Fix IVR menu timeout when caller presses no digits (DP-4/r:14548)
core: refactor node allocation and make a copy of userdata in case the session gets killed before the logger module gets the node (r:14555)
@@ -153,6 +166,33 @@ freeswitch (1.0.5)
core: add switch_caller_extension_add_application_printf() (r:15688)
core: Fix switch_poll timeout that causes bad audio in Windows (FSCORE-501/r:15722)
core: add switch_core_vsprintf (r:15737)
+ core: allow recursive broadcasting (r:15757)
+ core: Add support for coma-delimited lists in a user's auth-acl param (MODENDP-224/r:15760)
+ core: allow listeners to pre-bind to subclasses before the main subscriber is loaded and fix off by one issue in unbinding event handler functions (r:15790)
+ core: dont mix ptimes in the codec string lists, just discard conflicting ones (r:15797)
+ core: Fix 'uuid_bridge' kills both channels if one of them is executing java app (FSCORE-508/r:15799)
+ core: add io mutex to cache db for optional mutex protection (r:15800)
+ core: add chan name to log lines (r:15835)
+ core: fix caller_profile race in hangup that may cause some missing cdr data in certain cases (r:15839)
+ core: add priority queue for events so important broadcasts like hold music can take precedence over event-lock (r:15865)
+ core: Adding switch_mprintf (broken out from sqlite)
+ Adding new %w to mprintf to auto escape both single quote and backslashes
+ Improve the tab completion a tad and fix some sqlite/odbc compat with new mprintf opts
+ Change the default stream writer to use switch_vmprintf so %q/%w can be used there too (r:15875)
+ core: Fix choppy inband DTMF generation from FS (FSCORE-510/r:15896)
+ core: fix record size causing mysql table create failure (FSCORE-512/r:15938)
+ core: fix x-fer for SIP phones (FSCORE-513/r:15944)
+ core: cleanup tab completion more and introduce new callback based expansion functions to do real time tab completion in some areas (r:15952)
+ core: fix build without SWITCH_HAVE_LIBEDIT on Windows and perhaps others (r:15953)
+ core: switch_ivr_parse_event(): allow execute-app-args to be specified in event body (FSCORE-514/r:15970)
+ core: return true/false from sql tester incase you want to do more stuff when the table had to be created (r:15981)
+ core: add fsctl flush_db_handles to expire any unused db handles (r:15982)
+ core: allow mod_say to use more than nine digits (MODAPP-380/r:15984)
+ core: reset audio level on mute/unmute (r:15991)
+ core: Add tab complete to windows (r:16000)
+ core: Fix playback during a record session causing invalid wav file (FSCORE-517/r:16003)
+ core: don't restart runtime functions when shutting down (r:16008)
+ core: Add tab complete to windows (ESL-24/r:16010)
docs: Add large Doxygen update (thanks Muhammed Shahzad) (r:14973)
docs: update es phrase file (MODAPP-317/r:15575)
embedded_languages: Prevent unloading of embedded languages modules (also fixes MODLANG-121/r:14491)
@@ -169,6 +209,8 @@ freeswitch (1.0.5)
libesl: add logger.pl a FS debug tool using ESL.pm (r:15377)
libesl: Add send_info example (r:15613)
libesl: use event_clone type internally to not confuse people who think they are getting events in response to commands (r:15660)
+ libesl: hook new complete api up to FSAPI and export tab completion down to fs_cli (r:15956)
+ libesl: change execute and executeAsync to return the last event instead of status since it will almost always be 0 (r:15973)
libjs: pass ldflags to dso builds for libjs and nspr (r:16549)
libportaudio: Dither code in mod_portaudio doesn't properly compile on 64 bit systems (r:15422)
libsofiasip: fix sofia build with new openssl (r:15426)
@@ -208,6 +250,12 @@ freeswitch (1.0.5)
mod_commands: Fix group_call returns nothing if one endpoint on the group is not registered (MODAPP-368/r:15530)
mod_commands: fix parsing in time_test to prevent a few edge cases (r:15549)
mod_commands: add db_cache API - shows db cache status (FSCORE-503/r:15697)
+ mod_commands: add escape API to escape a string (r:15764)
+ mod_commands: add uuid_recv_dtmf (r:15840)
+ mod_commands: change name of 'key' field due to reserved name in sql (r:15842)
+ mod_commands: add console_complete_xml api (r:15967)
+ mod_commands: fix db_cache's auto-complete (r:15969)
+ mod_commands: add uuid_audio cli cmd (r:15989)
mod_conference: Fix conference floor ownership being ceded too easily (MODAPP-323/r:14703)
mod_conference: Display callers' rates (r:14992)
mod_conference: Don't start conf auto record until a second party arrives (MODAPP-348/r:15029)
@@ -216,6 +264,8 @@ freeswitch (1.0.5)
mod_conference: take pin from x header (MODAPP-333/r:15415)
mod_conference: add more mutexes to video thread (r:15551)
mod_conference: fix video thread (r:15590)
+ mod_conference: add mute on/mute off actions in addition to toggle mute action (MODAPP-370/r:15845)
+ mod_conference: add conference member data into the play-file-member-done event (r:15909)
mod_console: Improved tab completions, and more description usage informations (LOGGER-2/r:15103)
mod_curl: don't include response code in response data as it has its own var (MODAPP-369/r:15591)
mod_dialplan_xml: Fix anti-action not being supported for time-based conditions (DP-6/r:14901)
@@ -234,11 +284,14 @@ freeswitch (1.0.5)
mod_dptools: Add Campon feature. (r:15201)
mod_dptools: Add campon_stop_key and campon_announce_sound to tell the user how to force it to the end of the waiting period (r:15220)
mod_dptools: Remove attended transfer from reasons for continue_on_fail (FSCORE-367/r:15367)
+ mod_dptools: add dp apps for setting audio level and muting (r:15993)
+ mod_dptools: make cn optional for mute 1 means absolute silence > 1 means generate cn level (r:15996)
mod_erlang_event: Add support for simply sending an arbitrary message to an arbitrary registered process at a node (r:14875)
mod_erlang_event: Deprecate new_pid message in favor of get_pid which has an extra element, the call's UUID (r:14877)
mod_erlang_event: optionally allow compatability with nodes running older OTP releases (R7 through current) (r:15189)
mod_esf: Add ability to adjust multicast packet TTL with the config (MODAPP-338/r:14927)
mod_esf: fix compile error on windows (r:14934)
+ mod_event_multicast: clean up mod_event_multicast to use blocking recvfrom and better error checking (r:15791)
mod_event_socket: add unique-id check to sendevent to send and event to a session instead of the system (r:14874)
mod_event_socket: fix mem leak (MODEVENT-54/r:14891)
mod_event_socket: fix CHANNEL_HANGUP_COMPLETE missing under myevents (MODEVENT-56/r:15011)
@@ -250,9 +303,17 @@ freeswitch (1.0.5)
mod_fifo: add API: fifo_add_outbound to add outbound members to a FIFO (r:14809)
mod_fifo: allow to call outbound member on on-the-fly fifo, also add a settings params to delete or keep all dynamic fifo entry (MODAPP-332/r:14989)
mod_fifo: skip setting callerid when it's already set (r:15071)
+ mod_fifo: convert mod_fifo to cache_db (r:15971)
mod_h323: initial commit (r:15223)
mod_h323: fix faststart in progress handling (r:15352)
mod_h323: remove SWITCH_RTP_FLAG_AUTOADJ because its not work correctly and not do anything reliable in our cases (r:15374)
+ mod_h323: fix rtp timer initialisation.
+ implement alerting-indication option and channel variable.
+ implement progress-indication option and channel variable. (r:15905)
+ mod_h323: move faststart to callproceeding due to some broken hardware not anderstand correclty faststart in progress. (r:15906)
+ mod_h323: fix slow start handling (r:15935)
+ mod_h323: add PI handling in alerting (r:15936)
+ mod_h323: add PI handling in Call Proceeding (r:15397)
mod_fifo: gracefully fail on missing config file (r:15106)
mod_iax: avoiding buffer overflow in silly iax lib (r:14910)
mod_lang: Change mod_lua so that it registers as a dialplan (MODLANG-140/r:15400)
@@ -264,6 +325,8 @@ freeswitch (1.0.5)
mod_limit: add limit_execute (like limit_hash_execute); allow -#s to act as counter only; add INFO level logs to limit similar to limit_hash (r:14870)
mod_limit: make limit work with neg count like limit_hash (r:14920)
mod_limit: move mod_limit to cache_db and clean up vm legacy code (r:15677)
+ mod_limit: remove memcache version, it never worked right and is unworkable w/out a lot
+ of effort. will revisit when pluggable limit implemented (r:15908)
mod_local_stream: add chime-list to local_stream (r:14966)
mod_local_stream: Fix memory leak at mod_local_stream (MODFORM-36/r:15431)
mod_logfile: add uuid parameter to prefix log files by the call's uuid (r:15502)
@@ -283,6 +346,7 @@ freeswitch (1.0.5)
mod_portaudio: fix compilation failure in mod_portaudio_stream (MODFORM-35/r:14531)
mod_portaudio: add context param (r:14737)
mod_portaudio: make the ringfile configurable via new API command 'pa ringfile' (r:15633)
+ mod_portaudio: fix mod_portaudio linux build with alsa (MODAPP-377/r:15899)
mod_python: Fix segfault on multiple calls to Python (MODLANG-133/r:14847)
mod_python: Fix infinite recursion in python script causing crash (MODLANG-134/r:14898)
mod_python: fix memory leak (MODLANG-136/r:15432)
@@ -376,8 +440,22 @@ freeswitch (1.0.5)
mod_sofia: Fix call not hanging up after hold (FSCORE-481/r:15657)
mod_sofia: add separate inbound/outound codec prefs params to sofia profile original codec-prefs sets both to the same value for back-compat (r:15658)
mod_sofia: reset the remote_media ip/port vars more often (r:15676)
+ mod_sofia: retry reg faster on dns timeouts (r:15763)
+ mod_sofia: huge sonus infection (FSRTP-8/r:15781)
+ mod_sofia: fix runaway ptime mismatch with xlite and bv (r:15788)
+ mod_sofia: set sip_copy_custom_headers=false to avoid custom sip headers to be copied on the b-leg (r:15789)
+ mod_sofia: send bye instead of cancel after invalid 200 OK (MODENDP-270/r:15808)
+ mod_sofia: don't set auto-nat on ipv6 profiles (r:15829)
+ mod_sofia: Fix att_xfer origination_cancel not working and b has no chance to talk with c in an A-B-C scenario (MODAPP-376/r:15838)
+ mod_sofia: add disable_q850_reason chan var to disable sending Reason header in sip BYE messages (MODSOFIA-44/r:15850)
+ mod_sofia: Fix UPDATE being sent to session creator without crypto (MODENDP-273/r:15851)
+ mod_sofia: add shutdown-on-fail param to sofia profiles (MODSOFIA-45/r:15854)
+ mod_sofia: fix send-message-query-on-register set to 'false' (MODSOFIA-42/r:15857)
+ mod_sofia: move NUTAG_MIN_SE to sofia_glue_do_invite so it only appears on requests. (MODSOFIA-47/r:15943)
+ mod_sofia: Fix redirect contacts not set correctly on 300 Mutliple Choices (SFSIP-190/r:15994)
+ mod_sofia: Add fix for silly endpoints who use G729a improperly (MODSOFIA-48/r:16004)
mod_spidermonkey: allow inline javascript, use a ~ as first script character (r:15598)
- mod_spidermonkey: fix mod_spidermonkey on osX 10.6 (lets see if this breaks any other platforms) (r:15650)
+ mod_spidermonkey: fix mod_spidermonkey on OSX 10.6 (lets see if this breaks any other platforms) (r:15650)
mod_spidermonkey_core_db: Allow to bind value to parameters in prepared statements (MODLANG-139/r:15632)
mod_syslog: Enable mod_syslog to log to a specific facility (LOGGER-3/r:15162)
mod_syslog: mod_syslog does not respect facility setting, always logs to user.* (LOGGER-4/r:15447)
@@ -406,6 +484,7 @@ freeswitch (1.0.5)
mod_valet_parking: enforce arg checking (r:15176)
mod_valet_parking: Add mod_valet_parking to the windows build (r:15185)
mod_vmd: fix glaring rwdeadlock in mod_vmd (r:14994)
+ mod_vmd: make MIN_TIME configurable via channel variables(MODAPP-372/r:15825)
mod_voicemail: fix operator-ext/operator-extension duplicate config declaration (r:14498)
mod_voicemail: allow profile to be specified sep from domain user@domain.com@myprofile (r:14756)
mod_voicemail: announce number of saved messages when there are no new messages (r:14964)
@@ -420,11 +499,14 @@ freeswitch (1.0.5)
mod_voicemail: decrease sql queries for message counts (MODAPP-359/r:15636)
mod_voicemail: Fix r15636 so New are New, and Old are Old messages (r:15639)
mod_voicemail: mod_voicemail: Change so total_new_messages and total_saved_messages include the count of new/saved urgent messages (Issue caused by MODAPP-359) (r:15670)
+ mod_voicemail: Fix segfault (FSCORE-511/r:15876)
mod_voipcodecs: move mod_voipcodecs to use spandsp instead of libvoipcodecs - windows (r:15088)
mod_xml_curl: Fix crash when using use-dynamic-url (XML-10/r:14850)
mod_xml_curl: Allow choice between HTTP Basic and Digest authentication (r:15107)
+ mod_xml_curl: Don't use signals when a timeout is specified (XMLINT-13/r:15997)
mod_xml_rpc: Fix auth issue (XMLINT-54/r:14580)
phrases: Add Recursive phrases support (FSCORE-458/r:15101)
+ scripts: Fix Freeswitch gentls_cert script so the remove option works (FSBUILD-216/r:15965)
support: add fscore_pb script for dumping core info directly to pastebin (r:14904)
switch_utils: add a host lookup func (r:14653)
mod_zeroconf: Move to unsupported (r:15429)
diff --git a/docs/phrase/phrase_en.xml b/docs/phrase/phrase_en.xml
index 602369fcb6..d2b6994f99 100644
--- a/docs/phrase/phrase_en.xml
+++ b/docs/phrase/phrase_en.xml
@@ -338,6 +338,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+