| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
|
|
|
|
| |
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
|
|
|
|
|
|
| |
threat-level check error message
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
|
|
|
|
|
|
| |
on login/logout, since it's a bit noisy on the console.
Please uncomment if/when this is still needed.
|
|
|
|
|
|
| |
exception. Also, convert this commands log output to console output.
Console output is more appropriate for console commands. The log only gets one side of the conversation anyway (since it doesn't necessarily record command inputs).
|
|
|
|
|
|
| |
determines whether a user has a god account)
Adapted from Makopoppo's patch in http://opensimulator.org/mantis/view.php?id=5552. Thanks!
|
|
|
|
| |
service that will show the given user details
|
|
|
|
| |
'MessagingModule' in [Groups] section in accordance with OpenSim.ini.example descriptions
|
| |
|
|\ |
|
| |\ |
|
| | |
| | |
| | |
| | | |
Add notification to neighbors when logins are enabled.
|
|/ /
| |
| |
| |
| |
| |
| | |
works again.
Many thanks to the aurora project for pioneering this.
This code is almost certainly not bug free, but it does at least appear to handle simple meshes (except when the viewer crashes - but it is beta!).
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
rather than just saying "destination not found"
Instead of performing the 4096 check when the region is linked (and subsequently removing the link), leave the link in place and perform the check in the entity transfer module
This allows us to explicitly tell the hypergridder why the teleport failed (region out of range).
It also allows people on regions that are within range (on a large source grid) to teleport.
The Check4096 config parameter in the [GridService] section is replaced by a max_distance paramter in a new [EntityTransfer] section in OpenSimDefaults.ini
Since the parameter is in OpenSimDefaults.ini no action needs to be taken unless you want to increase this limit. It could also be decreased.
The check is being made in the base entity transfer module, since I believe the viewer problem occurs both on extremely large grids and while hypergridding.
|
|\ \ |
|
| | | |
|
| | |
| | |
| | |
| | | |
prim. Thanks, MisterBlue
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
RemoteGridService connector. Timeout is currently set at five
minutes. Negative results are not cached.
The result is that operations like send an instant message do
not have to go through the grid service every time.
|
|/ / |
|
| |
| |
| |
| | |
as well as item id and asset id
|
| |
| |
| |
| |
| |
| | |
the contents of the response.
Changed the experimental capability introduced a couple of commits ago: now sending that extra information as part of the response in the SimulatorFeatures cap.
|
|\ \ |
|
| | | |
|
| | |
| | |
| | |
| | | |
variables added in order for this to work. See .ini.example changes
|
| | |
| | |
| | |
| | | |
login service.
|
|/ /
| |
| |
| | |
with Kokua viewer if devs are willing to do it.
|
| | |
|
|/
|
|
| |
correct that from the inside.
|
| |
|
| |
|
|
|
|
| |
some issues with the zoom level -- TBD.
|
|
|
|
| |
http://opensimulator.org/mantis/view.php?id=5516 once and for all. Moral of the story: don't send AgentOnline/Offline to viewers with a zero-length array.
|
|
|
|
| |
Also, increased the timeout on UserAgentServiceConnector, StatusNotification again.
|
|
|
|
| |
wrong key
|
| |
|
|
|
|
| |
not do DNS lookup, and use that for friends notification.
|
|
|
|
| |
http://opensimulator.org/mantis/view.php?id=5516
|
|
|
|
| |
instead keep track of which map blocks each client has seen in the region, and reset exactly those when the client closes.
|
|
|
|
| |
its own, clear both memory and file caches
|
|
|
|
|
|
|
|
|
| |
config-include/FlotsamCache.ini.example. Enable the flotsam console commands even if FlotsamCache.ini isn't present.
For the most part, defaults are made to match those already in FlotsamCache.ini.example.
The one exception is that the 48 hour file timeout from the code is used instead of the 0 hours that was in the example file. This can be tweaked if necessary.
Most importantly, the default cache directory is now ./assetcache (as in FlotsamCache.ini.example) rather than ./FlotsamAssetCache (as was the internal code default).
Therefore, if you were using flotasm without using the config file, then please rename your cache directory or start using the ini file and change the default there if you want to keep using your existing cache.
|
|
|
|
|
|
| |
value for alpha
This addresses http://opensimulator.org/mantis/view.php?id=5111
|
| |
|
| |
|
|\ |
|
| |\ |
|
| | |
| | |
| | |
| | | |
for physics mesh
|
| | |
| | |
| | |
| | | |
and reset only exactly the map blocks that had regions in them. WARNING: this fetches all the regions from the Grid service, so there is a chance that this is a really bad idea in large grids. Pushing it for testing.
|
| |/
|/|
| |
| |
| |
| | |
future use.
At the moment, client and scene objects are being garbage collected as expected, at least in simple scenarios.
|
| |
| |
| |
| |
| |
| |
| |
| | |
Using MyISAM proves vastly faster for persisting scene objects.
For instance, a scene object that took 9 seconds to persist before now takes 1. This also improves the experience of loading large OARs.
We don't use any of the transactional features of InnoDB.
The only thing that may have an impact is that InnoDB does row locking on inserts while MyISAM does table locking.
However, field reports say there is no noticeable difference.
|