Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2019-05-19 | Dump OpenSim 0.9.0.1 into it's own branch. | onefang | 1 | -76/+107 | |
2018-01-17 | remove more xml things no longer needed on .net >4.5.2 | UbitUmarov | 1 | -1/+0 | |
2018-01-17 | remove those xml things no longer needed on .net >4.5.2 | UbitUmarov | 1 | -3/+0 | |
2018-01-09 | give up on a property that old monos do compile, but then smore ok exec | UbitUmarov | 1 | -1/+0 | |
2018-01-08 | fall back to a obsolete property since several monos in use (include our ↵ | UbitUmarov | 1 | -1/+1 | |
own) do not suporte the proper .net4.0 one | |||||
2018-01-05 | a few more xml things | UbitUmarov | 1 | -1/+6 | |
2017-01-05 | Massive tab and trailing space cleanup | Melanie Thielker | 1 | -59/+59 | |
2016-11-03 | Initial update to OpenSim 0.8.2.1 source code. | David Walter Seikel | 1 | -33/+42 | |
2015-12-11 | change vivox url from https:// to http:// still another | UbitUmarov | 1 | -1/+1 | |
2015-12-11 | change vivox url from https:// to http:// missed several | UbitUmarov | 1 | -8/+8 | |
2015-12-11 | change vivox url from https:// to http:// (merge issue) | UbitUmarov | 1 | -2/+1 | |
2014-11-21 | Remove braindead "fix" that messed up intersim scripted giving. | Melanie Thielker | 1 | -0/+17 | |
2014-10-30 | Fix a potential nullref in Vivox | Melanie Thielker | 1 | -0/+4 | |
2014-04-23 | Eliminated many warnings | Oren Hurvitz | 1 | -2/+2 | |
2014-03-25 | Remove the spammy "voice not enabled" message some viewers trigger in non ↵ | Melanie Thielker | 1 | -4/+4 | |
voice parcels | |||||
2013-11-15 | refactor: replace verbose checks with String.IsNullOrEmpty where applicable. | Justin Clark-Casey (justincc) | 1 | -4/+4 | |
Thanks to Kira for this patch from http://opensimulator.org/mantis/view.php?id=6845 | |||||
2013-07-26 | Commented out ChatSessionRequest capability in Vivox and Freeswitch. We ↵ | Diva Canto | 1 | -9/+9 | |
aren't processing it in any meaningful way, and it seems to get invoked everytime someone types a message in group chat. | |||||
2013-05-30 | Fix passing of voice distance attenuation to the Vivox voice server. | Justin Clark-Casey (justincc) | 1 | -1/+1 | |
Because of a typo, this wasn't being done at all - now the 'default' value as described in OpenSimDefaults.ini of 10m is passed (vivox_channel_clamping_distance) Thanks to Ai Austin for spotting this. | |||||
2013-05-28 | First change in Vivox for ages! -- added a lock to serialize calls to vivox ↵ | Diva Canto | 1 | -14/+25 | |
servers. This may ameliorate things when lots of avies arrive in a sim at about the same time. Turns out that there are 4 http requests per avie to Vivox. | |||||
2013-02-27 | Make sure we dispose of WebResponse, StreamReader and Stream in various ↵ | Justin Clark-Casey (justincc) | 1 | -7/+5 | |
places where we were not already. | |||||
2013-02-24 | Revert "Output some additional data on Vivox connection errors", this logs ↵ | Melanie | 1 | -1/+1 | |
passwords! Bad! This reverts commit 79e477f6af09fae2d88a1bba45de6cb819e2800a. | |||||
2013-02-24 | Output some additional data on Vivox connection errors | Melanie | 1 | -1/+1 | |
2012-11-15 | Revert "Merge master into teravuswork", it should have been avination, not ↵ | teravus | 1 | -1/+1 | |
master. This reverts commit dfac269032300872c4d0dc507f4f9062d102b0f4, reversing changes made to 619c39e5144f15aca129d6d999bcc5c34133ee64. | |||||
2012-11-13 | All optional modules' directives moved out of addin.xml | Diva Canto | 1 | -0/+2 | |
2012-09-30 | Revert "Added request.Proxy=null everywhere, as discussed in ↵ | Diva Canto | 1 | -1/+0 | |
http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow." But the patch is here, in case anyone wants to try it. This reverts commit 531edd51d82ecd6a842a2611c99e9919634491ef. | |||||
2012-09-30 | Added request.Proxy=null everywhere, as discussed in ↵ | Diva Canto | 1 | -0/+1 | |
http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow. Thanks R.Gunther (rigun@rigutech.nl) https://lists.berlios.de/pipermail/opensim-users/2012-September/010986.html | |||||
2012-09-08 | refactoring to allow Scene.GetLandData to accept Vector3 as an argument. ↵ | SignpostMarv | 1 | -1/+1 | |
Note that the prior work on LSL_Vector implicit operators means one does not need to explicitly cast a LSL_Vector to Vector3 | |||||
2012-08-16 | Remove XML debug spam from vivox voice | Melanie | 1 | -12/+12 | |
2012-05-03 | Implement optional name and description on http stream handlers so that we ↵ | Justin Clark-Casey (justincc) | 1 | -24/+30 | |
can relate a slow request to what the handler actually does and the agent it serves, if applicable. This is most useful for capabilities where the url is not self-describing. | |||||
2012-03-27 | minor: clean up some code formatting in VivoxVoiceModule.cs | Justin Clark-Casey (justincc) | 1 | -54/+25 | |
2011-12-05 | Implement IOSHttpRequest and IOSHttpResponse http interfaces and use instead ↵ | Justin Clark-Casey (justincc) | 1 | -3/+3 | |
of OSHttpRequest/OSHttpResponse. This is required for the substitution of different HTTP servers or the newer HttpServer.dll without having to commit to a particular implementation. This is also required to write regression tests that involve the HTTP layer. If you need to recompile, all you need to do is replace OSHttpRequest/OSHttpResponse references with IOSHttpRequest/IOSHttpResponse. | |||||
2011-04-02 | Comment out some startup logging lines to make up for the one I added ↵ | Justin Clark-Casey (justincc) | 1 | -8/+0 | |
earlier on. Most of these are where the region modules are telling us they are disabled. Convention is only to log when enabled (even that is really noisy) | |||||
2011-03-25 | Switching vivox to https for production use | Melanie | 1 | -11/+11 | |
2011-03-18 | Revert "Switch Vivox voice module to https" | Melanie | 1 | -11/+11 | |
This reverts commit a8096b52cd28fbc18e115faa7fafd35899882673. | |||||
2011-03-18 | Switch Vivox voice module to https | Melanie | 1 | -11/+11 | |
2010-01-11 | OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted. | Diva Canto | 1 | -1/+1 | |
2009-10-01 | Formatting cleanup. | Jeff Ames | 1 | -2/+2 | |
2009-08-10 | Replace the Replaceable modules name | Melanie | 1 | -1/+1 | |
2009-07-25 | * Updates libOMV to version 0.7.0 | Teravus Ovares | 1 | -2/+2 | |
* Uses mantis #3811 as a base (thanks jhuliman) with changes. * E-mail regarding interface changes sent to the opensim-dev list * Archive: https://lists.berlios.de/pipermail/opensim-dev/2009-July/007219.html | |||||
2009-07-23 | Formatting cleanup. | Jeff Ames | 1 | -2/+2 | |
2009-07-12 | * Workaround for a bug in Vivox Server r2978, whereby ↵ | Adam Frisby | 1 | -2/+18 | |
channel-search.channels.count returns 0 instead of the actual channel count. Should not affect more recent versions of Vivox where this issue has been fixed. | |||||
2009-07-12 | * More Vivox Fiddling | Adam Frisby | 1 | -1/+5 | |
2009-07-12 | * Patch for previous revision. | Adam Frisby | 1 | -4/+1 | |
2009-07-12 | * More VivoxModule debugging. | Adam Frisby | 1 | -2/+20 | |
2009-07-12 | * Added some noisy debug information to VivoxModule to try debug why ↵ | Adam Frisby | 1 | -2/+9 | |
GetChannel fails on LBSA/Zaius Plaza. | |||||
2009-07-11 | fixing missing ReplacableInterface | Dr Scofield | 1 | -2/+7 | |
2009-07-11 | From: Dr Scofield <hud@zurich.ibm.com> & Alan Webb <alan_webb@us.ibm.com> | Dr Scofield | 1 | -0/+1301 | |
this commit finally adds the VivoxVoiceModule: it supports positional as well as conference call type voice (currently only per region server), region and parcel voice, speaker indication (LL client family), direct avtar-to-avatar voice chat. NOTE: you need to obtain an customer admin account from Vivox to be able to use this module --- DON'T ask me about how to about an admin account, i've NO clue, we just wrote this code. |