| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
allows to have one central database for estates without having to open the MySql port. This is off by default, so not to disturb everyone's existing installations. To use it, see GridCommon.ini.example [EstateDataStore] section and Robust*.ini.example's new additions.
Note that I also made things consistent by removing both the EstateDataService and the SimulationService into their own dlls, just like all other services. They really didn't belong in Services.Connectors, since everything in that component is about network connectors to robust backends. We may have too many dlls, and at some point it might not be a bad idea to merge all services into one single dll, since they all have more or less the same dependencies.
|
|\ |
|
| | |
|
| |
| |
| |
| |
| | |
which seems to cause the tests to fail when compiled on the OpenSim
build system. It compiles and runs everywhere else. More research is needed.
|
| | |
|
| |
| |
| |
| | |
Whoever defined that structure was really into esoteric coding.
|
|/
|
|
| |
libraries.
|
|
|
|
| |
not needed anymore. Wifi is now a mono addin to Robust, and it can be deployed in two ways: by installing the Wifi plugin via mautil or by compiling Wifi from source, in which case it will appear in the registry when Robust starts because the Diva Wifi dlls are present in bin.
|
|\ |
|
| | |
|
|/ |
|
|
|
|
| |
a88bc50a168ae729307740fa84540e9571258b13. It's not needed.
|
|
|
|
| |
Seriously, ppl, let's not ignore important warning messages!
|
| |
|
| |
|
|
|
|
| |
Rather than opensim grabbing their config file automatically from the addins folder, it's the module's responsibility to read its own config file. This makes it consistent with Robust-bound addins.
|
|
|
|
| |
https://github.com/mono/mono-addins/issues/22. And since these commits show up in that issue report, I thought I'd say 'hi' to the zealous Xamarin developer who seems to be eager to get pull requests. Not yet, my friend, not until I fix all the bugs that stand in my way, now that I'm using mautil :-)
|
|\ |
|
| |
| |
| |
| | |
fail for container specification.
|
| |
| |
| |
| | |
compiling doesn't like it
|
| |
| |
| |
| |
| |
| | |
Change how physics engine is created in unit tests to resolve a lib reference problem.
Add ShapeInfoInfo class to collect info about the created physical shape
for debugging and unit test testing.
|
| |
| |
| |
| |
| | |
Allows locking of prim/linkset relative moving in each of the linear
and angular axis. Limits on movement or rotation can be set.
|
| |
| |
| |
| | |
https://github.com/mono/mono-addins/issues/22
|
| |
| |
| |
| | |
"C:\foo\MyDll.dll:MyType" -- the split on : was messing things up.
|
|/ |
|
| |
|
|
|
|
| |
test this new model for the next couple of weeks.
|
|\ |
|
| | |
|
| | |
|
|\ \
| |/ |
|
| |\
| | |
| | |
| | | |
Merge in the new throttle code.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
them in the code for later use rather than just reverting them.
Fixed the throttle tests for the new algorithm used when packets
are marked as expired.
|
| | |
| | |
| | |
| | | |
coming later
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
rather
than drop exponentially to 0 (and then adjust up for the minimum flow), drop on
the delta between current rate and the minimum rate. This should smooth the fallback
to minimum.
|
| | |
| | |
| | |
| | | |
compute the expected values without depending on the token bucket code.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
adaptive throttle by a full MTU. This is consistent with some implementations
of congestion control algorithms and certainly has the effect of opening
the throttle window more quickly after errors. This is especially important
after initial scene load when the number and size of packets is small.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
throttles. Setting adaptive_throttle_min_bps will change the
minimum rate that the adapative throttles will drop to in case
of network packet loss. The current rate default rate is 256kbps.
The viewer can throttle rates under that amount, but the dynamic
adaptation will not.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
algorithm for dropping packets is a modified two state algorithm for creating
bursts of dropped packets. As configured there is about a 1.5% drop rate.
Invocation of the packet loss code is commented out by default.
|
|/ /
| |
| |
| | |
Add loading of 3rd-party addin inis automatically.
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
- It establishes 4 digits for opensim versions
- It uses the same number between opensim releases and mono addins versions
It also eliminates the last addin.xml files that were still there, for consistency.
|
|\ \ |
|
| |/ |
|
| |
| |
| |
| |
| |
| |
| | |
This cleans up Opensim's use of mono addins. In particular, the extension points /OpenSim/RegionModules and /OpenSim/WindModule moved from OpenSim.exe to OpenSim.Region.Framework.dll. From here on, developers of region modules should declare their dlls to be dependent on OpenSim.Region.Framework, starting with version 0.8.1
Additional changes:
- Addins version uniformly updated to 0.8.1. These numbers should be compatible with the release numbers or else it becomes very confusing.
- Mono addins directives moved from files addins.xml to embedded directives in the class and assembly declarations, to make it all consistent
|
| |
| |
| |
| | |
doesn't need to match the release version number, but I think it's a very good idea that they do.
|
| | |
|
| |
| |
| |
| | |
(https://github.com/mono/mono-addins/releases/tag/mono-addins-1.2). Also included mautil.exe, the command line application for managing mono addins.
|
|/ |
|
|
|
|
| |
existence of region modules that do other kinds of garbage collection. Instead of placing deleted objects in the user's Trash folder, or deleting them immediately (UseTrashOnDelete = false), a module may decide to take garbage collection under its control. For example, it may place derezzed objects in a certain area inworld and delete them later.
|