aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Change default say distance to 20m from 30m, the same as on the big grid. ↵Justin Clark-Casey (justincc)2011-11-022-4/+4
| | | | | | This is to improve the migration of scripts that expect a 20m say distance. If you want to keep a 30m say distance then please set this as the say_distance parameter in the [Chat] section of OpenSim.ini.
* Removed see_into_this_sim_from_neighbor configuration option.Dan Lake2011-11-011-3/+0
|
* Remove unused PumaCode.SvnDotNet libraryJustin Clark-Casey (justincc)2011-10-311-0/+0
|
* Add missing max_listens_per_region to [LL_Functions] config section in ↵Justin Clark-Casey (justincc)2011-10-291-0/+4
| | | | | | OpenSimDefaults.ini + explanation. This setting controls the maximum number of listeners in a region
* Added optional owner classes to existing OSSL agent PermissionsMichelle Argus2011-10-262-0/+14
| | | | | | PARCEL_GROUP, PARCEL_OWNER, ESTATE_MANAGER and REGION_OWNER can be combined with the existing agent uuid option to limit ossl functions to agents and owner classes. Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
* Add new EventQueueTests with basic test to check that adding a client ↵Justin Clark-Casey (justincc)2011-10-241-0/+33
| | | | registers an http poll
* Add optional getauthinfo and setauthinfo authentication service calls.Justin Clark-Casey (justincc)2011-10-242-0/+16
| | | | | These are disabled by default, as before. Please only turn these on in secure grids, since they allow the same facilities as the existing SetPassword call (also disabled by default) These facilities can be helpful when integrating external systems, in addition to the existing option of adapting an IAuthenticationService or using WebLoginKey
* Rename some of the example commented out server names to mygridserver.com ↵Justin Clark-Casey (justincc)2011-10-221-23/+21
| | | | | | | like all the others. This is to make it easier to change all these names at once, where all grids services are running from the same location. Also rearranges some lines in [Modules] so that StandaloneCommon.ini.example and GridCommon.ini.exmaple are consistent.
* Make config comments about choosing assetcache modules clearer.Justin Clark-Casey (justincc)2011-10-222-17/+19
| | | | | OpenSim needs an asset cache. Running without one will cause problems. Thanks to Ai Austin for the suggestions in http://opensimulator.org/mantis/view.php?id=4850
* Add option to allow remote http calls to setpassword in the ↵Justin Clark-Casey (justincc)2011-10-192-4/+12
| | | | | | | AuthenticationService. This is switched on by setting AllowSetPassword = true in the [AuthenticationService] section of Robust.ini or Robust.HG.ini Default is false as before.
* Allow an http call to set account details if AllowSetAccount = true in ↵Justin Clark-Casey (justincc)2011-10-192-1/+8
| | | | | | [UserAccountService]. As before, default is false to not allow these calls.
* Provide an option to allow remote calls to the CreateUser method on the ↵Justin Clark-Casey (justincc)2011-10-182-3/+10
| | | | | | | | | UserAccountService Default is false, as before. Enabling AllowCreateUser in [UserAccountService] for ROBUST allows avatars to be created via an http call, with viewer 2 appropriate bits and pieces. Only Ruths can be created at present. Please don't rely on the config since at some point CreateUser will be moved to a separate co-ordinating service.
* Set enable_adaptive_throttles = true in OpenSimDefaults.iniJustin Clark-Casey (justincc)2011-10-171-1/+1
| | | | | | As discussed in http://lists.berlios.de/pipermail/opensim-dev/2011-October/010599.html and the preceeding thread mails, the aim of this setting is to avoid overloading the viewer UDP connection where the client is failing to ack packets. Please mantis any anomalous viewer connection behaviour which wasn't there before.
* Restore [Startup] physical_prim flag which can stop any prims being subject ↵Justin Clark-Casey (justincc)2011-10-151-1/+2
| | | | | | | to physics This had stopped working. However, at the moment it still allows the physics flag to be set even though this has no effect. This needs to be fixed. Default for this flag is true as previously.
* Add back the missing bin/addon-modules directory that I somehow managed to ↵Justin Clark-Casey (justincc)2011-10-141-0/+1
| | | | accidentally delete in 2fbc98f (Jul 7 2011)
* change default ODE world_stepsize to 0.0178 from 0.02Justin Clark-Casey (justincc)2011-10-141-2/+2
| | | | | | | | | This exactly fits five ODE steps in the default frame time (0.089). This means that ODE execution time now matches the default minimum frame time. This eliminates errors between distance travelled as calculated by ODE in clear air and simple extrapolation. On the old values, ODE would actually do calculations over 0.1 seconds rather than 0.089. This means that once the avatar is at top speed, no additional packets need to be sent for smooth movement, since no error develops between server and viewer. This approach replaces the tweaks previously discussed on the opensim-dev mailing list
* Expose minimum frame time and update periods for experimentation.Justin Clark-Casey (justincc)2011-10-131-0/+42
| | | | | | | Settings are at bottom of [Startup] in OpenSimDefaults.ini, override in OpenSim.ini to change Defaults are the same as previously. More information to come on opensim-dev shortly. Feel free to tweak but if you do please don't expect any support unless feedback on certain tweaks is explicitly requested.
* Make it possible to disable the HG linker. On non-HG systems it spits yellowMelanie2011-10-123-0/+3
| | | | spam, so it should not load unless HG is desired.
* Update OpenSimDefaults.ini to make the prior state (Groups messaging enabledMelanie2011-10-121-1/+1
| | | | | by default) the config default. This way it will work for current cases while allowing the use of other groups modules without config bloat.
* Provide a way to turn the MonitorModule on and offJustin Clark-Casey (justincc)2011-10-101-0/+5
| | | | Default is currently on since this is the historical setting
* Improve explanation of access_ip_addresses in [RemoteAdmin] to say that ↵Justin Clark-Casey (justincc)2011-10-082-0/+2
| | | | there are no restrictions if not set
* Add option to allow only explicitly listed IPs to access RemoteAdmin facilities.Justin Clark-Casey (justincc)2011-10-082-0/+8
| | | | | | Also adds password check to some functions where this was missing and fixes some parameter checking. This is a patch from http://opensimulator.org/mantis/view.php?id=5715 with a few small unrelated spacing tweaks from me. Thanks Michelle Argus.
* Correct DeleteScriptsOnRestart to DeleteScriptsOnStartup in comments in ↵Justin Clark-Casey (justincc)2011-10-071-1/+1
| | | | OpenSim.ini.example
* Clarify explanation of DeleteScriptsOnStartup switch in [XEngine].Justin Clark-Casey (justincc)2011-10-042-9/+8
|
* copy config information on allow/disallow individual os functions into ↵Justin Clark-Casey (justincc)2011-09-302-19/+38
| | | | | | OpenSim.ini.example I this is generally useful rather than a 'default' setting
* remove unused postgresql dllJustin Clark-Casey (justincc)2011-09-301-0/+0
|
* Add Enabled switch in new [Attachments] section in OpenSimDefaults.ini to ↵Justin Clark-Casey (justincc)2011-09-301-0/+8
| | | | | | allow attachments to be temporarily turned off. This is for debugging purposes. Defaults to Attachments Enabled
* Added a setting to [Startup] section of config that will allow the simulator ↵Kevin Houlihan & Michelle Argus2011-09-242-0/+9
| | | | | | to start up with no regions configured. I added the boolean config setting "allow_regionless", defaulting to false. If set to true, opensim will start up ok if no region configurations are found in the specified region_info_source. It will not ask the user to create a region.
* Clarify explanation of the "DeleteScriptsOnStartup" config switch and add ↵Justin Clark-Casey (justincc)2011-09-242-5/+13
| | | | | | this to OpenSim.ini.example since it's very useful if you're not updating OpenSim from source. On reflection, "DeleteScriptsOnStartup" isn't a great name since it suggests real script deletion rather than compiled versions.
* Correct asset id of library default iris texture.Justin Clark-Casey (justincc)2011-09-231-1/+1
| | | | For this change to show up you will need to clear viewer cache.
* Add BulletSim physics option details to OpenSim.ini.example. Marked as in ↵Justin Clark-Casey (justincc)2011-09-171-0/+2
| | | | development and experimental.
* Remove old bullet DotNET and X libraries in preparation for BulletSJustin Clark-Casey (justincc)2011-09-171-4/+1
| | | | | These weren't working properly anyway. You will need to rerun prebuild.sh/.bat after this commit, and maybe "nant clean" as well.
* Add back BulletSPlugin.dll.config that I somehow managed to delete today in ↵Justin Clark-Casey (justincc)2011-09-171-0/+6
| | | | a00327d
* Revert "uncomment Standalone config in OpenSim.ini.example."Justin Clark-Casey (justincc)2011-09-171-1/+1
| | | | | | | This reverts commit 44a491f36bbe2094634e356591381c90f87e2125. This makes packaging OpenSim slightly easier but then generates a FriendsConnector error if naively used after compilation. So let's revert to stick with the "DataStore" error for now - at least that's a known error.
* Fix base_hair.dat to actually contain the base hair asset rather than base ↵Justin Clark-Casey (justincc)2011-09-161-6/+94
| | | | | | | | eyes by mistake. I must have had it cached last night. This now makes completely fresh avatar setups appear properly (remember to wipe viewer cache and server cache as well as database). As a bonus, eyes now appear by default too!
* Fix build errors on Windows by adding missing OpenSim.Services.Base referencejustincc2011-09-161-6/+0
|
* On standalone, by default create the necessary minimum body parts and ↵Justin Clark-Casey (justincc)2011-09-163-2/+21
| | | | | | | clothes necessary to display a viewer 2 avatar, as implemented in c4efb97d This is controlled by the CreateDefaultAvatarEntries switch in the [UserAccountService] section of config-include/Stnadalone.ini This is left as false in grid mode
* Write code to create minimum necessary body parts/clothing and avatar ↵Justin Clark-Casey (justincc)2011-09-159-140/+215
| | | | | | | | | | | | entries to make a newly created user appear as a non-cloud on viewer 2 Viewer 2 no longer contains the default avatar assets (i.e. "Ruth") that would appear if the user had insufficient body part/clothing entries. Instead, avatars always appear as a cloud, which is a very bad experience for out-of-the-box OpenSim. Default is currently off. My intention is to switch it on for standalone shortly. This is not particularly flexible as "Ruth" is hardcoded, but this can change in the future, in co-ordination with the existing RemoteAdmin capabilities. Need to fix creation of suitable entries for users created as estate owners on standalone. Avatars still appear with spooky empty eyes, need to see if we can address this. This commit adds a "Default Iris" to the library (thanks to Eirynne Sieyes from http://opensimulator.org/mantis/view.php?id=1461) which can be used.
* uncomment Standalone config in OpenSim.ini.example.Justin Clark-Casey (justincc)2011-09-121-1/+1
| | | | | This is to make my life easier when creating releases. I think that it also gives a better story for anybody newly compiling from source.
* Fixed BulletSim config files for Linux *.so libraries.Snoopy Pfeffer2011-09-041-2/+2
|
* also get "nant clean" to remove old .mdb from .exe and .dllJustin Clark-Casey (justincc)2011-08-301-0/+0
|
* Hack our copy of Prebuild to just delete the dlls and mdbs in Physics, so as ↵Justin Clark-Casey (justincc)2011-08-301-0/+0
| | | | to leave the new config file
* BulletSim: update values in OpenSimDefaults.ini to the same as defaults in ↵Robert Adams2011-08-301-4/+4
| | | | the source.
* BulletSim: add .so for 64 bit Linux. Move .config file to where it will be read.Robert Adams2011-08-304-0/+0
|
* BulletSim: add mesh representation. Use meshes for static objects and switch ↵Robert Adams2011-08-264-1/+3
| | | | to hulls for physical objects.
* Merge branch 'master' into bulletsimMic Bowman2011-08-263-16/+19
|\
| * minor: Add explanative text for the new currency parameter. Convert some ↵Justin Clark-Casey (justincc)2011-08-223-16/+19
| | | | | | | | tabs to spaces
* | Merge branch 'master' into bulletsimMic Bowman2011-08-197-7/+19
|\ \ | |/ | | | | | | Conflicts: OpenSim/Region/Framework/Scenes/SceneManager.cs
| * Get rid of HttpServer.dll to avoid confusion since we use ↵Justin Clark-Casey (justincc)2011-08-191-0/+0
| | | | | | | | HttpServer_OpenSim.dll (patched version) instead
| * Add terminating quotes to http addresses in [SimulatorFeatures] section of ↵Justin Clark-Casey (justincc)2011-08-161-2/+2
| | | | | | | | | | | | OpenSim.ini.example. As per http://opensimulator.org/mantis/view.php?id=5638. Thanks DutchGlory.