aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Client (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-1/+1
2012-10-25Fix script error messages not showing up in viewer 3 and associated viewers.Justin Clark-Casey (justincc)1-3/+4
Viewer 3 will discard such a message if the chat message owner does not match the avatar. We were filling the ownerID with the primID, so this never matched, hence viewer 3 did not see any script error messages. This commit fills the ownerID in with the prim ownerID so the script owner will receive script error messages. This does not affect viewer 1 and associated viewers which continue to process script errors as normal.
2012-03-28Start on Bulk inventory update via CAPS. Not functional yet. HG v2Melanie1-0/+2
2012-03-28Add a corresponding method for items. HG v2Melanie1-0/+1
2012-03-28Add SendRemoveInventoryFolders which allows to remove one or moreMelanie1-0/+37
folders from the viewer's inventory view. For HG v2.0. More to come
2009-10-01Formatting cleanup.Jeff Ames1-1/+1
2009-05-20Add copyright headers, formatting cleanup.Jeff Ames1-1/+28
2009-05-17Update svn properties.Jeff Ames1-12/+12
2009-05-11* Implements IP and DNS based ban facilities to OpenSim. Adam Frisby2-0/+21
* User interface is ... primitive at best right now. * Loads bans from bans.txt and region ban DB on startup, bans.txt is in the format of one per line. The following explains how they are read; DNS bans are in the form "somewhere.com" will block ANY matching domain (including "betasomewhere.com", "beta.somewhere.com", "somewhere.com.beta") - make sure to be reasonably specific in DNS bans. IP address bans match on first characters, so, "127.0.0.1" will ban only that address, "127.0.1" will ban "127.0.10.0" but "127.0.1." will ban only the "127.0.1.*" network
2009-03-29Change the client API to use GridInstantMessage for the "last mile" of IMMelanie Thielker1-7/+1
sending. With this change, all methods that handle IM now use GridInstantMessage rather than individual parameters.
2009-02-12* optimized usings.lbsa711-3/+0
2008-11-09Update svn properties. Add copyright headers. Minor formatting cleanup.Jeff Ames3-69/+150
2008-11-09Reintroduce transactionID to the parameter list for SendInstantMessage.Melanie Thielker1-1/+3
It is required by group IM and also for a proper implementation of item give, group notice attachments and offline IM.
2008-11-08* Missed a file from previous checkin.Adam Frisby1-0/+15
2008-11-08* Added IClientIM to IClientCore interfacesAdam Frisby1-0/+45
* Changed SendInstantMessage, dropped fromAgentSession and imSessionID as security precaution, see http://opensimulator.org/wiki/OpenSim_0.6_IClientAPI#Porting_Guide for details on porting. * Removed unused usings from Framework.*
2008-11-08* Implementing first of the 0.6 IClientAPI ChangesAdam Frisby1-0/+8
* Introducing IClientCore - this will be the key replacement for IClientAPI in the long run, it has a very minimal set of methods designed to allow you to access specialist API's. * See https://lists.berlios.de/pipermail/opensim-dev/2008-September/003049.html for the early discussion on this.