aboutsummaryrefslogtreecommitdiffstats
path: root/UPGRADE.txt
AgeCommit message (Collapse)AuthorFilesLines
2008-06-05Add the UPGRADE.txt file from Asterisk 1.2, for handy reference.russell1-1/+6
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@120731 f38db490-d61c-443f-a65b-d21fe96a405b
2008-03-26Merged revisions 111125 via svnmerge from kpfleming1-12/+5
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r111125 | kpfleming | 2008-03-26 14:49:30 -0500 (Wed, 26 Mar 2008) | 2 lines update UPGRADE notes to document usage of the script ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@111126 f38db490-d61c-443f-a65b-d21fe96a405b
2008-03-26add note that the user will need to enable codec_ilbc to get it to buildkpfleming1-1/+3
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@110962 f38db490-d61c-443f-a65b-d21fe96a405b
2008-03-26Merged revisions 110869 via svnmerge from kpfleming1-0/+17
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r110869 | kpfleming | 2008-03-26 08:53:46 -0700 (Wed, 26 Mar 2008) | 2 lines due to licensing restrictions, we cannot distribute the source code for iLBC encoding and decoding... so remove it, and add instructions on how the user can obtain it themselves ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@110880 f38db490-d61c-443f-a65b-d21fe96a405b
2008-01-28Undoing the deprecation of chan_vpb. It is alive and well.mmichelson1-5/+0
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@100673 f38db490-d61c-443f-a65b-d21fe96a405b
2008-01-25Deprecating chan_vpb. It is now preferred that users of Voicetronix productsmmichelson1-0/+5
use chan_zap in combination with their zaptel drivers. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@100418 f38db490-d61c-443f-a65b-d21fe96a405b
2007-10-16Updating UPGRADE.txt to reflect the deprecation of the monitor-joinmmichelson1-0/+5
queue option git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@86031 f38db490-d61c-443f-a65b-d21fe96a405b
2007-08-24Make the deprecation warning inline with the code, instead of only in ↵tilghman1-1/+3
documentation (closes issue #10549) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@80747 f38db490-d61c-443f-a65b-d21fe96a405b
2007-08-22Merge changes from team/russell/iax_refcount.russell1-0/+15
This set of changes fixes problems with the handling of iax2_user and iax2_peer objects. It was very possible for a thread to still hold a reference to one of these objects while a reload operation tries to delete them. The fix here is to ensure that all references to these objects are tracked so that they can't go away while still in use. To accomplish this, I used the astobj2 reference counted object model. This code has been in one of Luigi Rizzo's branches for a long time and was primarily developed by one of his students, Marta Carbone. I wanted to go ahead and bring this in to 1.4 because there are other problems similar to the ones fixed by these changes, so we might as well go ahead and use the new astobj if we're going to go through all of the work necessary to fix the problems. As a nice side benefit of these changes, peer and user handling got more efficient. Using astobj2 lets us not hold the container lock for peers or users nearly as long while iterating. Also, by changing a define at the top of chan_iax2.c, the objects will be distributed in a hash table, drastically increasing lookup speed in these containers, which will have a very big impact on systems that have a large number of users or peers. The use of the hash table will be made the default in trunk. It is not the default in 1.4 because it changes the behavior slightly. Previously, since peers and users were stored in memory in the same order they were specified in the configuration file, you could influence peer and user matching order based on the order they are specified in the configuration. The hash table does not guarantee any order in the container, so this behavior will be going away. It just means that you have to be a little more careful ensuring that peers and users are matched explicitly and not forcing chan_iax2 to have to guess which user is the right one based on secret, host, and access list settings, instead of simply using the username. If you have any questions, feel free to ask on the asterisk-dev list. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@80362 f38db490-d61c-443f-a65b-d21fe96a405b
2007-07-11further reversion of previously applied floating point stuff for expr2murf1-6/+0
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@74628 f38db490-d61c-443f-a65b-d21fe96a405b
2007-07-02support for floating point numbers added to ast_expr2 $\[...\] exprs. Fixes ↵murf1-0/+6
bug 9508, where the expr code fails with fp numbers. The MATH function returns fp numbers by default, so this fix is considered necessary. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@72933 f38db490-d61c-443f-a65b-d21fe96a405b
2007-04-06clarified a sentence in the format_wav sectiondhubbard1-2/+2
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@60572 f38db490-d61c-443f-a65b-d21fe96a405b
2007-04-06updated UPGRADE.txt with format_wav GAIN change and plan to remove GAIN code ↵dhubbard1-0/+10
from trunk git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@60568 f38db490-d61c-443f-a65b-d21fe96a405b
2007-02-02 I'm baaaaaaaaaack. :)bweschke1-0/+17
Post a warning to the console that things might possibly be misconfigured when queue member's states are still 'Not in Use' when we're about to bridge them with a caller from queue. Also, put some documentation quoted from oej's queues.txt efforts started in /trunk today. This commit puts #7433 into feedback state for 1.4, and pending no further negative feedback, it will finally be closed. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@53129 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-07Here lies the fixes that killed bug 8423 -- OriginateSuccess and ↵murf1-0/+4
OriginateError incomplete channel name. May it rest in peace. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@48349 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-16Warn users about change in canreinviteoej1-0/+6
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@47736 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-20add a warning about name changes on some API callskpfleming1-0/+8
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43363 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-03 Changes/fixes to the app_waitforsilence app to make it behave more the way ↵bweschke1-0/+6
the author originally intended for it to function along with an option to keep backward compatible with "old-style" functionality in 1.2. (#6595 - davetroy reported and patched w/some very minor mods/corrections) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@41915 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-31Merge in VLDTMF support with Zaptel/Core done by the ever great Darumkilla ↵file1-0/+6
Russell Bryant and the RTP portion done by myself, Muffinlicious Joshua Colp. This has gone through so many discussions/revisions it's not funny but we finally have it! git-svn-id: http://svn.digium.com/svn/asterisk/trunk@41507 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-30change default setting for autofallthroughkpfleming1-0/+5
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@41475 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-30Mark ALERT_INFO as deprecated. This can now be done with the sipaddheader() ↵oej1-0/+4
application and does not need special code in chan_sip any more. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@41435 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-30add a note about behavior of the "clid" field in the CDRrussell1-0/+10
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@41434 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-24Deprecate USERAGENToej1-0/+4
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40988 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-21document Makefile target changeskpfleming1-0/+10
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40728 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-19deprecate chan_agent callback modekpfleming1-1/+8
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40521 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-16Remove the old ODBC_STORAGE and make EXTENDED_ODBC_STORAGE the one to use. ↵file1-0/+4
This means that if you're using this and upgrade to the revision where this was committed, you will need to update your table to the schema provided in doc/odbcstorage.txt git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40033 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-08Marking PRI_CAUSE as deprecated to be replaced by hangup(cause)oej1-0/+4
(Issue #7610) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@39316 f38db490-d61c-443f-a65b-d21fe96a405b
2006-07-19add notes on the changes to music on hold handlingrussell1-0/+39
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37999 f38db490-d61c-443f-a65b-d21fe96a405b
2006-07-13swap the G726-32 format numbers, so that IAX2 connections with prior ↵kpfleming1-1/+5
versions of Asterisk will still work properly git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37565 f38db490-d61c-443f-a65b-d21fe96a405b
2006-07-13actually make the non-standard G726-32 behavior available for SIP clientskpfleming1-0/+13
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37564 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-08document the new sound/moh file installation processkpfleming1-8/+33
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@33089 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-30officially deprecate the 'roundrobin' queue strategy in favor of 'rrmemory'kpfleming1-0/+5
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@30837 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-28Deprecate SetGlobalVar, replacing it with a dialplan functiontilghman1-0/+6
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@30677 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-27Notate that QUEUEAGENTCOUNT is deprecated, so it can be removed post-1.4tilghman1-0/+3
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@30654 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-26document the changes I made yesterday to the exit behavior of therussell1-0/+18
AGI applications git-svn-id: http://svn.digium.com/svn/asterisk/trunk@30580 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-26wrap test at 80 charactersrussell1-21/+28
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@30579 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-26add some more text about the build systemrussell1-2/+11
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@30578 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-26attended transfer use transferer context first and set who is transfering at ↵file1-1/+10
the beginning (issue #6752 reported by moy -- minor mods done by myself) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@30548 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-23 app_meetme Muting and Manager API enhancements #6731 (softins w/some minor ↵bweschke1-0/+12
mods to accomodate recent enum work) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@29705 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-20- add a UserEvent action that allows a manager client to "broadcast" an eventrussell1-0/+5
to all connected manager clients - update the UserEvent application to use the application argument parsing macros and to allow headers to be specified as pipe delimeted arguments (issue #5324, original patch by outtolunc, committed patch by Corydon) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@29017 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-19As requested by kpfleming, renaming messagecount to inboxcount and ↵tilghman1-0/+6
messagecount2 to messagecount. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@28745 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-05 Integrate the MixMonitor functionality (introduced in 1.2) as an option for ↵bweschke1-0/+4
recording queue member conversations with callers. #7084 git-svn-id: http://svn.digium.com/svn/asterisk/trunk@25076 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-05 Adding documentation about API change approved in order to fix bug(s).bweschke1-0/+10
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@25012 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-03 Fix autofill behavior in app_queue and document it's functionality in ↵bweschke1-0/+20
queues.conf.sample and UPGRADE.txt git-svn-id: http://svn.digium.com/svn/asterisk/trunk@24543 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-02Introducing the REALTIME() dialplan functionbweschke1-0/+5
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@24376 f38db490-d61c-443f-a65b-d21fe96a405b
2006-05-02 Record bridge channel unique id in "CONNECT" queue_log entry and the ↵bweschke1-0/+10
corresponding manager event. #6522 (nording) w/ documentation additions where appropriate git-svn-id: http://svn.digium.com/svn/asterisk/trunk@24293 f38db490-d61c-443f-a65b-d21fe96a405b
2006-04-30document the removal of MFC/R2 supportkpfleming1-0/+5
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@23671 f38db490-d61c-443f-a65b-d21fe96a405b
2006-04-24Thanks to the fine work of Russell Bryant and Dancho Lazarov, we now have ↵kpfleming1-0/+32
autoconf and menuselect tools for Asterisk! git-svn-id: http://svn.digium.com/svn/asterisk/trunk@22267 f38db490-d61c-443f-a65b-d21fe96a405b
2006-04-11Bug 6943 - transition away from using CallerID header, when we really mean ↵tilghman1-0/+9
CallerIDNum git-svn-id: http://svn.digium.com/svn/asterisk/trunk@19436 f38db490-d61c-443f-a65b-d21fe96a405b
2006-04-10remove support for BYEXTENSION (which nobody even knows about anymore)kpfleming1-0/+5
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@18977 f38db490-d61c-443f-a65b-d21fe96a405b