aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-06-13* This fixes having to select and deselect prim to get keyframemotion to ↵Melanie2-2/+3
start running when pulled from data storage. Conflicts: OpenSim/Data/SQLite/SQLiteSimulationData.cs
2013-06-12* This fixes having to select and deselect prim to get keyframemotion to ↵teravus2-4/+3
start running when pulled from data storage.
2013-06-11* Adds KeyFrameMotion storage support to SQLite, just a note, seems that ↵teravus2-0/+32
there's still something wrong with keyframed motion starting when the sim starts up, you have to 'select' and 'deselect' the prim again to get it to appear to move. Not sure what this is but maybe melanie_t can comment on this. * Has a prim table migration.. that might take a while, hold on to your hats. * Fixes a null-ref when shutting down while keyframed motion is active.
2013-06-07SQLite support for UserProfilesBlueWall2-0/+994
2013-06-06Database persistence for keyframes. Contains a Migration.Melanie2-4/+32
2013-05-31Adding standard OpenSim header to source filesBlueWall2-0/+54
2013-05-31Fill in fields with default values on profile creationBlueWall1-2/+48
2013-05-30UserProfilesBlueWall3-0/+1135
UserProfiles for Robust and Standalone. Includes service and connectors for Robust and standalone opensim plus matching region module.
2013-05-11Send up the part missing from the Avination Estate commit.Melanie2-0/+15
Warning - contains a small migration.
2013-04-28Fix wrong sql statement in offline im.Diva Canto1-5/+2
2013-04-25Recover a lost "virtual". Downstream projects need this.Diva Canto1-1/+1
2013-04-10minor: Make exceptions thrown by MySQLAssetData more consistent.Justin Clark-Casey (justincc)1-10/+19
2013-04-02Change recent MSSQL migrations to drop COLUMN from ALTER TABLE which is ↵Justin Clark-Casey (justincc)1-6/+6
either not syntactical or unnecessary. May fix http://opensimulator.org/mantis/view.php?id=6593
2013-03-15Change the table and field names of XAssetService mysql db tables to be ↵Justin Clark-Casey (justincc)2-62/+60
capitalized like Avatars, Friends, etc. Also fixes access time being set on assets rather than XAssetsMeta This is to try and be somewhat consistent with other service tables that are mainly in this style. No migration is supplied, since nobody should be using this service yet except on a test basis.
2013-03-15Implement access time updates on assets for XAssetService.Justin Clark-Casey (justincc)1-38/+57
This only happens if access time is older than 30 days currently, in order to reduce database updates. The idea is to give some idea of assets which haven't been accessed for a very, very long time. These might conceivably be deleteable, though this will be a risk due to caching at other points in the chain. This is actually currently much less useable on the xasset service since access time is on metadata rather than the data itself. And many metadata entries may point to the same data. Probably need to address this.
2013-02-27Add asset name and description truncation warnings to SQLite database plugin ↵Justin Clark-Casey (justincc)1-5/+23
for consistency.
2013-02-27Add more information to warnings logged when asset names and descriptions ↵Justin Clark-Casey (justincc)3-6/+18
have to be truncated for database storage On balance, I still think this is useful because asset names and descriptions can sometimes be helpful in determining what things are. Even though they are never subsequently (inventory names/descriptions are always used instead).
2013-02-19Deleted all AssemblyFileVersion directivesDiva Canto5-5/+5
2013-02-19First commit of Diva Groups. The Data bits went to OpenSim.Data core, the ↵Diva Canto3-0/+743
rest to Addons.Groups.dll.
2013-02-19Offline IM: moved the Data and MySQL bits to the corresponding places in ↵Diva Canto3-0/+135
core, so that it will be easier to plugin a SQLite backend, if anyone is interested in doing that.
2013-02-18I need these for OfflineIM and Groups.Diva Canto1-0/+60
2013-02-09Added physics parameters support to MSSQL and SQLite (not tested)Oren Hurvitz6-13/+71
2013-02-07Rename Bounciness to RestitutionMelanie1-2/+2
2013-02-07Rename Bounciness to RestitutionMelanie1-2/+2
2013-02-07Rename "Bounciness" to "Restitution"Melanie1-2/+2
2013-02-06Fix a bug I brought in by manually editing a diff file. Terrain is if cource ↵Melanie1-1/+1
not always at 20m.
2013-02-06Partial port of Avination's support for the new physics parameters.Melanie2-18/+51
Implements the parameters as properties, the serialization and database storage (MySQL only). Implements llSetPrimitiveParams for prim physics shape and the other 4 extra params. Only the prim shape type "None" is currently functional. No support for the Viewer UI (yet), that will be ported in due course. Lots more to port, this is a large-ish changeset.
2013-02-05Bump version and assembly version numbers from 0.7.5 to 0.7.6Justin Clark-Casey (justincc)5-5/+5
This is mostly Bluewall's work but I am also bumping the general version number OpenSimulator 0.7.5 remains in the release candidate stage. I'm doing this because master is significantly adding things that will not be in 0.7.5 This update should not cause issues with existing external binary DLLs because our DLLs do not have strong names and so the exact version match requirement is not in force.
2013-02-01Revert "Update assembly version numbers"BlueWall5-5/+5
This reverts commit 141ad829f448b9138b12be7cf99c834c1f3977ec.
2013-02-01Update assembly version numbersBlueWall5-5/+5
2013-01-25Remove the accidental PrimShapes column that I added back to the SQLite ↵Justin Clark-Casey (justincc)1-2/+1
region store
2013-01-25Fix tests by adding DynAttrs add column commands to RegionStore.migrations ↵Justin Clark-Casey (justincc)1-0/+6
(these were originally in 021_RegionStore.sql which I might have forgotton to add 2 years ago).
2013-01-25Store NULL in the 'DynAttrs' column if the prim doesn't have any dynamic ↵Oren Hurvitz3-3/+15
attributes
2013-01-25Stopped storing dynamic attributes in the PrimShapeOren Hurvitz5-28/+5
2013-01-25Added missing DynAttrs references in MySQLOren Hurvitz1-3/+6
2013-01-25Encapsulate an OSDMap in DAMap (was DynAttrsOSDMap) rather than inheriting ↵Justin Clark-Casey (justincc)3-12/+12
from it This is the easier way to give us control over locking, rather than asking that OSDMap IDictionary methods be virtual
2013-01-25Implement dynamic attribute persistence on mysql and mssqlJustin Clark-Casey (justincc)4-8/+49
mssql is untested
2013-01-25Implement Dynamic Attributes for SOP and PBS. Implement storage in SQLiteJustin Clark-Casey (justincc)1-0/+21
2013-01-02Added locking in NullRegionData.Oren Hurvitz1-20/+44
This prevents errors when one thread iterates over the regions (e.g., from RegenerateMaptileAndReregister()) while another thread is adding a region.
2012-12-09Check database for root prim IDs only to try and get a handle on prim lossMelanie1-1/+1
once and for all.
2012-12-09Restrict IPresenceData.VerifyAgentBlueWall4-17/+17
Restrict IPresenceData.VerifyAgent to only return bool result
2012-12-08Add agent verification to PresenceBlueWall4-0/+36
2012-11-26Fix database service unit test failures by temporarily reverting ↵Justin Clark-Casey (justincc)1-1/+7
BasicDataServiceTest extending OpenSimTestCase. Mono 2.4.3 doesn't like this when running nunit, with nunit throwing AssetTests`2 : System.MemberAccessException : Cannot create an instance of OpenSim.Data.Tests.AssetTests`2[TConn,TAssetData] because Type.ContainsGenericParameters is true. and similar. Mono 2.10.8.1 does not have this issue. So will wait until min version of mono bumps before restoring.
2012-11-24Consistenly make NUnit test cases inherit from OpenSimTestCase which ↵Justin Clark-Casey (justincc)4-4/+7
automatically turns off any logging enabled between tests
2012-11-24Fix bug where loading an OAR with a deeded parcel would always set the ↵Justin Clark-Casey (justincc)3-0/+228
parcel owner ID to the estate owner even if the group UUID was present. Aims to address http://opensimulator.org/mantis/view.php?id=6355 As part of this work, an incomplete IXGroupsData was added which currently only allows store/fetch/delete of group records (i.e. no membership data etc) This is subject to change and currently only an in-memory storage implementation exists for regression test purposes.
2012-11-15Revert "Merge master into teravuswork", it should have been avination, not ↵teravus8-277/+241
master. This reverts commit dfac269032300872c4d0dc507f4f9062d102b0f4, reversing changes made to 619c39e5144f15aca129d6d999bcc5c34133ee64.
2012-11-15refactor: move common inventory folder version update code to parent class ↵Justin Clark-Casey (justincc)3-112/+28
in mysql, mssql and sqlite database plugins
2012-11-15Improve inventory folder version updating for mssql database plugin.Justin Clark-Casey (justincc)1-14/+102
I am not in a position to test this so the updates have been done blind. If it needs any fixing will probably require patches.
2012-11-15Implement folder version updating for the sqlite inventory pluginJustin Clark-Casey (justincc)2-7/+142
2012-11-14More consistently dispose of SqliteCommand in OpenSim.Data.SQLite where ↵Justin Clark-Casey (justincc)9-298/+305
possible. Not doing SQLiteInventoryStore since this is no longer used and should disappear in the future.