aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Addons (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-11-17code aestheticsUbitUmarov1-1/+1
2018-10-20fix groups v2 agentUUI ofr uuid.zero caseUbitUmarov1-16/+4
2018-07-14mantis 8333: kept idea but my own code. With ini setting ↵UbitUmarov1-1/+1
ConsoleHistoryTimeStamp set to true, the console history file will have timestamps. Im lazy date is in en-us culture for now. (robust also)
2018-07-13minor changes to last patchUbitUmarov1-14/+12
2018-07-13Group Powers changed and Officers role brought back for Groupsfly-man-1-51/+60
Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
2017-11-12off line module V2 must not sent a empty mutes list. That is mutes modules ↵UbitUmarov1-16/+0
job (or let viewers use they cached entries if none)
2017-05-07let StreamReader be in using statementsUbitUmarov2-6/+8
2017-05-05 let all clients get a group title update on create groupUbitUmarov1-1/+1
2017-01-06Allow avatar to be charged group membership fees when a money module is in useKevin Cozens1-1/+19
2017-01-06Only apply group creation fee > 0 and pass group name when applying feeKevin Cozens1-2/+2
2017-01-06Restructure god level and permissionsMelanie Thielker1-1/+1
Create a class GodController which controls all aspects of god level, viewer modes and user levels at ScenePresence level.
2017-01-05Massive tab and trailing space cleanupMelanie Thielker17-161/+161
2017-01-05Fix some permissions checks in groupsMelanie Thielker1-3/+16
The code checked the permissions of a person being added to a role rather than those of the person doing the adding. Also, limited permission role removal wasn't implemented.
2016-11-09fix some invalid string.format argumentsUbitUmarov1-1/+1
2016-08-23 change odd condition on groupsV2 add to roleUbitUmarov1-1/+1
2016-08-18Fixed grammer in a commentKevin Cozens1-1/+1
2016-08-17Fixed typo in two group messagesKevin Cozens1-1/+1
2016-08-04make sure all new scenepresences have fresh groups information at creation ↵UbitUmarov1-1/+1
time (grouptitle missing but not that needed at that point) (use direct calls exactly where we want things to happen), reusing a funtion name to rename later
2016-08-04add GetActiveMembershipData() to groups modules, let core groups also have ↵UbitUmarov1-0/+6
GetMembershipData(), wait for client to ask for it not telling in OnNewClient, as other modules do.
2016-07-26 apply the change to groups v2 alsoUbitUmarov1-1/+2
2016-07-23add a missing field to ChatterBoxSessionAgentListUpdates. it is still wrong, ↵UbitUmarov1-0/+2
and its use even worse
2016-07-04Finally remove the requirement for an InventoryItem/FolderBase object toMelanie Thielker1-2/+1
be passed into inventory queries. This makes the API more homogenous and also will more clearly show coding errors related to HG inventory where the .Owner field has a meaning for a query but wasn't always set.
2016-07-01cleanup a bit AgentGroupDataUpdate sendingUbitUmarov1-5/+1
2016-07-01revert several changes to groups modules (agentGroupData is private). change ↵UbitUmarov1-51/+51
interregions invite/eject messages, etc
2016-06-28Revert " don't try to send initial AgentGroupDataUpdate to NPCs" this wasUbitUmarov1-3/+10
already done This reverts commit 84a6a6e008c64d8197177aff1b42a412e5623638.
2016-06-28 don't try to send initial AgentGroupDataUpdate to NPCsUbitUmarov1-10/+3
2016-06-23Mantis #7937: don't send group info to NPCsDiva Canto1-0/+5
2016-06-23Same change here too.Diva Canto1-1/+4
2016-06-19Mantis #7920: group info was not being updated in many situations. ↵Diva Canto1-10/+37
(regression) Putting back the heavy messaging.
2016-06-19Restored sending group membership data via EventQueue -- this had been a ↵Diva Canto1-1/+2
regression. Took the opportunity to refactor that code, so that both Groups V2 and XmlRpcGroups can use the same function.
2016-06-19Minor -- deregister an event handler in Groups V2Diva Canto1-0/+1
2016-06-11Restore SendAgentGroupDataUpdate() call in GroupsModule.cs.Robert Adams1-7/+13
Restore linkage to OnAgentClosed since the merge solved the reference problem by looking up the agent. This should address Mantis 7915 and 7920.
2016-02-21Pushed AssemblyVersion up to VersionInfo, so that we don't need to do global ↵Diva Canto2-2/+2
replace anymore.
2015-10-18On to 0.8.3!Diva Canto2-2/+2
Conflicts: OpenSim/Region/PhysicsModules/ConvexDecompositionDotNet/Properties/AssemblyInfo.cs
2015-10-18On to 0.8.3!Diva Canto2-2/+2
2015-09-28 remove groups handlers onClientClose also on groups V2UbitUmarov1-12/+18
2015-09-27 apply changes to xmlrcp groups to groups V2, compiles but not tested :(UbitUmarov1-164/+77
2015-09-02seems to compile ( tests comented out)UbitUmarov1-1/+1
2015-07-31Show last online status of group members from the PresenceService in group ↵Cinder2-43/+75
profiles Signed-off-by: Oren Hurvitz <orenh@kitely.com>
2015-04-29Updated all occurrences of AssemblyVersion("0.8.1.*") to ↵Diva Canto2-2/+2
AssemblyVersion("0.8.2.*")
2015-02-04For built-in groups, if a delegate throws an exception (e.g. due to network ↵Justin Clark-Casey (justincc)1-61/+120
failure), always remove its request from the m_ActiveRequests list. If this is not done, all subsequent calls for the same data see that a request is apparantly already in progress and so wait for the result indefinitely.
2015-01-09Added GetDisplayNames capability. For now, we don't actually use display ↵Diva Canto4-1/+5
names, and this cap returns the regular name. But this moves the server side into the newer, preferred, protocol used by the viewer for fetching the names of agents in the scene given their UUIDs. (the old protocol is via UDP). This works fine in my limited tests, but could use further testing by others.
2014-12-30Renamed VERSION_NUMBER to VersionNumberDiva Canto2-4/+4
2014-12-30This cleans up versioning. Specifically:Diva Canto2-4/+4
- 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.
2014-12-30WARNING: BREAKING CHANGES FOR REGION MODULE DEVELOPMENT.Diva Canto2-2/+2
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
2014-12-29Updated OpenSim-as-addin version from 0.5 to 0.8.1. The addin version number ↵Diva Canto2-2/+2
doesn't need to match the release version number, but I think it's a very good idea that they do.
2014-11-25refactor: Move methods to start a monitored thread, start work in its own ↵Justin Clark-Casey (justincc)1-2/+2
thread and run work in the jobengine from Watchdog to a WorkManager class. This is to achieve a clean separation of concerns - the watchdog is an inappropriate place for work management. Also adds a WorkManager.RunInThreadPool() class which feeds through to Util.FireAndForget. Also switches around the name and obj arguments to the new RunInThread() and RunJob() methods so that the callback obj comes after the callback as seen in the SDK and elsewhere
2014-11-19Minor: Include missing EventHost power for group owner role.AliciaRaven1-0/+1
2014-09-21Fixed a hard-to-run-into bug in groups: at the time of creation of a group, ↵Diva Canto1-10/+18
the OwnerRoleID in the groups table was inconsistent with the roleID in the roles table. OpenSim core was not running into this bug, but 3rd party modules (like Wifi) were.
2014-09-05For monitoring purposes, start non-timeout tasks (which do not currently use ↵Justin Clark-Casey (justincc)1-2/+3
a threadpool) via Watchdog.RunInThread() rather than Util.RunThreadNoTimeout() The functionality is the same but this allow us to monitor such tasks via "show threads" and abort them for test purposes, etc. Also extends thread names to provide more info (e.g. SendInitialDataToClient says what client the task is for).