| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
when an attachment is deselected.
|
|
|
|
|
|
| |
adds handling for PRIM_PHYSICS, PRIM_PHANTOM in
llSetPrimitiveParams()
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
generating the map image. Copied the code in Scene into the MapImageModule, made a few tweaks to get it to work with the module's interface.
* Refactored a few things in Scene to make maptile saving easier to understand.
* Added comments to describe the 'clever code' assetcache update without the gridasset being updated so as to lessen possible confusion in patches in the future.
* If the MapImageModule isn't loaded, default to the code in Scene still.
|
|
|
|
|
|
| |
to Scene.INventory.cs
|
|
|
|
|
|
| |
and the permissions module
|
|
|
|
|
| |
* There's still a full object update coming when you release the attachment after modifying it that's killing it sometimes.
|
| |
|
|
|
|
|
|
| |
The included patch enable handling for PRIM_FULLBRIGHT in
llSetPrimitiveParams().
|
| |
|
| |
|
|
|
|
| |
Common.Communications for now (since this was the only class in that project)
|
| |
|
|
|
|
|
|
|
|
|
| |
* The primary immediate use is to provide a means of temporarily reducing log output on the console when executing console commands
* Changing the log level on the console is not permanent and does not affect the log information being put into OpenSim.log
* This could have been done by putting in a threshold level on the Console appeneder in OpenSim.exe.config and implementing config watching in the code.
* But I think that it's a little more user friendly to make this doable via the console.
|
|
|
|
|
| |
This small patch enables updates to the lastLogin information in the `users` table
|
| |
|
|
|
|
|
|
| |
This patch improves fetching of inventory from several minutes
to a few seconds.
|
|
|
|
|
|
|
| |
Type casting the normalized vector 'lookat' to int results to <0,0,0>.
This patch also adds an overload to RequestNeighbourInfo (currently unused)
that will come handy for some features I'm working on.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Places touched:
- Added two events for in-packets to LLCLientView: RegionHandleRequest and
ParcelInfoRequest
- Added sending of two out-packets to LLCLientView: RegionIDAndHandleReply and
ParcelInfoReply.
- Scene handles the RegionHandleRequest, LandManagementModule the
ParcelInfoRequest
- Added inter-region request for LandData by RegionHandle and local position.
This was implemented as XML-RPC request. The returned LandData isn't
complete, it only contains the data necessary for answering the
ParcelInfoRequest
- Added new CAPS (0009) for RemoteParcelRequest and some methods for LandData
handling to LandManagementModule
- Added methods for fake parcelID creation and parsing to Util
- Fixed missing implementation of interface methods.
- Added new file:
OpenSim/Framework/Communications/Capabilities/LLSDRemoteParcelResponse.cs
NOTE: This is part of the patch, too.
Due to the many places touched, I would consider this patch as experimental.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
repeatedly.
|
|
|
|
|
|
| |
fetch fails.
|
|
|
|
|
| |
llListSort() sorts integers and floats in ASCII order rather than numeric order
|
|
|
|
|
| |
Parch adds PRIM_BUMP_SHINY handling to llSetPrimitiveParams
|
|
|
|
|
| |
XEngine missing string constructor for LSLInteger and LSLFloat
|
|
|
|
|
|
|
| |
Scripts can now no longer DOS the user server and there are a lot fewer
gratuitious lookups of user profile data.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Thank you, Leaf, for a patch that implements llGetAnimationList()
XEngine implementation added by myself.
|
|
|
|
|
|
|
|
| |
the database is now intepreted as follows: low byte = user flags.
Next byte, low nibble: Deternines the text (Resident, Lifetime, etc)
shown. No customn text support yet.
|
|
|
|
|
|
|
| |
Trigger a persistence save when only name or description have
changed.
|
|
|
|
|
|
| |
Thank you, BlueWall, for a patch that adds PRIM_GLOW
|
|
|
|
|
|
| |
flags value
|
|
|
|
|
|
|
|
|
| |
hierarchical rights structure. MasterAvatar: Owner of the region server
(may be null), net gods (users with GodLevel 200), Estate owner
(from database). Look at Opensim.ini.example to enable net gods.
Estate owner will default to master avatar.
|
| |
|
|
|
|
|
|
|
|
| |
and the region server tries to output the region information
using the unobtainable RegionInfo.
Caused a crash in GS1GridServices.cs, line 928
|
| |
|
|
|
|
|
|
| |
to other issues, detaching an attachment would cause an exception.
|
|
|
|
|
|
| |
The following patch allows an asset to be added via the REST interface.
|
|
|
|
|
|
|
|
| |
The following patch implements adding prims to a region using the Xml2
format.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The following patch implements retrieving prims in Xml2 format via the REST
interface. For example:
http://localhost:9000/admin/regions/<region-uuid>/prims/
It also allows an additional parameter which specifies a bounding box. If
this parameter is specified, only prims within the bounding box are
retrieved. For example:
http://localhost:9000/admin/regions/8cd759b4-e077-489d-9a34-e1ff70ef65dd/prims/0,0,0,128,128,128
will retrieve only the prims whose positions are in the bounding box with
corners (0,0,0) and (128,128,128).
|