| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
from 2227f51b to run
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Per http://wiki.secondlife.com/wiki/Tips_for_Creating_Heightfields_and_Details_on_Terrain_RAW_Files#Notes_for_Creating_Height_Field_Maps_for_Second_Life
terrain heights up to 508 are possible on the LL grid (and were available on previous releases of OpenSimulator).
The obvious way to allow both this and equivalent -z values, is to rewiden the internal terrain height storage from short to int.
The memory tradeoff is most noticeable on the maximum 8192x8192 var region (equiv to 1024 normal regions), where it adds 128mb to resident use (128k on a normal region)
This is still better than the double used in previous releases.
This does not affect physics or data storage since they already use float and double respectively.
This may not be the final solution if we actually want to sacrifice -z, >327 or something else.
Relates to http://opensimulator.org/mantis/view.php?id=7076
|
|
|
|
|
|
| |
config option, LogOverloads, to log when a thread pool overload occurs.
This option defaults to "True" because the logging data is useful for
diagnosing threading issues.
|
|
|
|
| |
This fixes the issue of "Show in Search" seeming resetting at random.
|
|\ |
|
| |
| |
| |
| |
| |
| | |
in-memory GridRegion immediately."
This reverts commit 463d0b2f8f0cd5f02c14391b763680b23c16e438.
|
| |
| |
| |
| |
| |
| | |
GridRegion immediately.
(When using llTeleportAgent() this *specific* object is used for the teleport, so it should have the correct flags.)
|
| |
| |
| |
| |
| |
| |
| | |
we do for other types of HTTP activity.
- Changed OpenProfileClient to use the new XML-RPC sending function
- Improved logging in WebUtil
|
| |
| |
| |
| | |
because now JsonRpcRequest() returns an error result instead of throwing an exception
|
| |
| |
| |
| | |
both the Simulators and Robust
|
| |
| |
| |
| | |
constructing the HTTP requests manually. This allows the calls to be logged when using "debug http all 6".
|
|/
|
|
| |
permissive, where the permissions of the children prims' inventory items were not changed. As a consequence, we couldn't control some of the objects imported via HG and OARs even in god mode.
|
|
|
|
|
|
| |
"http://grid.example.com" (without a region name)
Fixes http://opensimulator.org/mantis/view.php?id=7128
|
| |
|
|\ |
|
| | |
|
| | |
|
|/
|
|
| |
No one needs to see every thread launch.....
|
|
|
|
| |
of 0 from previous commit cb1f28
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
of the LL grid.
This uses an offset of 0.05 on the up vector of the sit orientation, after extensive analysis on
http://opensimulator.org/mantis/view.php?id=7096 and https://wiki.secondlife.com/wiki/Talk:LlSitTarget
This supersedes the previous adjustment in 5b73b9c4 which had been wrongly applied.
The maximum change is about 0.1 with a maximum height avatar.
This patch is all Aleric's work - I am applying manually in order to add these additional notes
|
|
|
|
| |
simulator cache)
|
|
|
|
| |
This commit also contains other changes, but they're all just for clarity. The only actual behavior change is to avoid Posting local assets.
|
|
|
|
| |
warnings, and SQLite still works.
|
|
|
|
| |
because it's Obsolete.
|
|
|
|
| |
SetPreviousAppearance()
|
| |
|
|
|
|
| |
already exists, and this isn't an error
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Offline IM V2 (only relevant to MySQL).
This fixes http://opensimulator.org/mantis/view.php?id=7123
Users that use MySQL should change their MySQL configuration to support UTF8. In the config file /etc/my.cnf (Linux) or my.ini (Windows), add these settings:
[mysqld]
character-set-server=utf8
[client]
default-character-set=utf8
And then restart MySQL (on Linux: "sudo service mysqld restart").
|
| |
|
| |
|
|
|
|
|
|
| |
Previously, if the movement speed was below 0.05/sec then it didn't work correctly.
Fixes http://opensimulator.org/mantis/view.php?id=7117
|
|
|
|
| |
pre-truncate the description of dynamic textures.
|
|
|
|
|
|
|
|
| |
status of friends, so they continued to appear Offline.
This happened because these notifications (the UDP packets) can only be sent to Root Agents. But the notifications were done in OnClientLogin(), at which point the client is still a Child Agent. Since a FireAndForget is used, it became a race condition as to whether the packets would be sent before or after the client became a Root Agent.
To fix this, we now only send the notifications once the client becomes a Root Agent for the first time.
|
| |
|
|
|
|
|
|
| |
teleport to another grid.
a) This shouldn't have been done because at that point the user is still logged-in to the current grid. b) It's not necessary because the user will soon be logged-out completely. c) And it didn't even work because the MySQL database layer prevents setting the region to 0.
|
| |
|
|
|
|
| |
Removed references to 'Intel' as the contributors are no independent.
|
|
|
|
| |
Signed-off-by: Robert Adams <misterblue@misterblue.com>
|
|
|
|
| |
value
|
|
|
|
| |
actually used.
|
|
|
|
| |
group for *all* the avatars in the scene (not permanently)
|
|
|
|
| |
much as they wanted even if the parcel's permissions had since been changed to disallow rezzing
|
|
|
|
| |
object in the parcel even if the flag "Create Objects by Group" was disabled
|
|
|
|
|
|
| |
parcel has a Group set; it doesn't have to be *deeded* to the group
Also some cleanup of the use of Group ID's (with no change to functionality).
|