Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2010-10-03 | Initial port of the Warp3D map tile renderer | Melanie | 1 | -0/+3 | |
2010-09-23 | * Add CSharpSqlite to prebuild | Teravus Ovares (Dan Olivares) | 1 | -0/+2 | |
* Use a conditional define to determine whether we're using CSharpSqlite or Mono.Data.Sqlite #if CSharpSqlite using Community.CsharpSqlite.Sqlite; #else using Mono.Data.Sqlite; #endif * Hopefully, this will restore sqlite functionality on a Mac. In visual studio, you can edit the OpenSim.Data.SQLite project, go to the Build tab and enter CSharpSqlite in the box. I'm not sure how to define CSharpSqlite in Mono, someone better at it then me will have to take the job of figuring out the best way to define it in Mono. | |||||
2010-09-12 | * Added ISimulationDataService and IEstateDataService | John Hurliman | 1 | -1/+4 | |
* Removed StorageManager * CONFIG CHANGE: There are no more database settings in OpenSim.ini. Check the config-include configuration files for region store and estate store database settings | |||||
2010-09-04 | Build system upgrade: | BlueWall | 1 | -616/+560 | |
Upgrading Prebuild.exe to correctly construct build solutions for crossplatform tools such as xbuild, monodevelop and nant. NOTE: Module prebuild files will need modification to work, as the prebuild must correctly define the reference path for all assemblies shipped in the OpenSimulator ./bin directory. These include assemblies such as XMLRPC.dll, OpenMetaverse.dll, Nini.dll, etc. . The entries should follow the form: <Reference name="Nini" path="../../../bin/"/> See the distributed prebuild.xml for further examples. Crossplatform tools: xbuild and monodevelop use the vs2008 OpenSim.sln and the .csproj files in each namespace. Changes to the Prebuild.exe are against svn 322 and are included in a patch attached to the mantis. And the dnpb source are available@ svn co https://dnpb.svn.sourceforge.net/svnroot/dnpb dnpb The patches are pending application by the dnpb team. After which, the un-modified upstream Prebuild.exe will work as expected. | |||||
2010-08-13 | Unit test for ConfigurationLoader. | Marck | 1 | -0/+22 | |
Adds a new test assembly for OpenSim. | |||||
2010-08-06 | Relocate one System.Core reference from last commit to the Tests project | justincc | 1 | -1/+1 | |
Ooops, shouldn't have assumed that the tests project came after the main on | |||||
2010-08-06 | Add System.Core references to OpenSim.Region.CoreModules.* to fix windows build | Justin Clark-Casey (justincc) | 1 | -0/+2 | |
This addresses http://opensimulator.org/mantis/view.php?id=4923 | |||||
2010-08-04 | Revert "remove long unused OpenSim/Framework/Configuration/* projects" | Melanie | 1 | -0/+52 | |
This reverts commit cdd3f17b2bee58def470635cfc06e26b0d0145b2. | |||||
2010-07-30 | move ChannelDigger from its own project into the main terrain module with ↵ | Justin Clark-Casey (justincc) | 1 | -24/+0 | |
the rest of the effects | |||||
2010-07-30 | remove long unused OpenSim/Framework/Configuration/* projects | Justin Clark-Casey (justincc) | 1 | -52/+0 | |
2010-07-26 | Implement media texture persistence over server restarts for sqlite | Justin Clark-Casey (justincc) | 1 | -0/+1 | |
This is currently persisting media as an OSDArray serialized to LLSD XML. | |||||
2010-07-01 | Implement media texture persistence over server restarts for sqlite | Justin Clark-Casey (justincc) | 1 | -0/+1 | |
This is currently persisting media as an OSDArray serialized to LLSD XML. | |||||
2010-06-01 | Comment and remove JScript support. Mono 2.7Dev and 2.8 no longer include the | Melanie | 1 | -7/+0 | |
needed libraries | |||||
2010-05-23 | Prebuild: removed DB-specific test projects, added refs to Data.Tests | AlexRa | 1 | -70/+7 | |
2010-05-19 | Prebuild: added *.migrations as resources to MSSQL, SQLiteLegacy (just in case) | AlexRa | 1 | -0/+2 | |
2010-05-18 | Revert a revert? Am i mad? Don't answer that....! | Melanie | 1 | -0/+2 | |
Revert "Revert "Looks like the new files were never added to prebuild.xml"" This reverts commit f253758c2e4e30c8e09f23135d79765c70198802. | |||||
2010-05-18 | Revert "Looks like the new files were never added to prebuild.xml" | Melanie | 1 | -2/+0 | |
This reverts commit df49756e7b8125595db20f63d5f9809a27642b77. | |||||
2010-05-18 | Looks like the new files were never added to prebuild.xml | Melanie | 1 | -0/+2 | |
2010-04-30 | rename SQLiteNG to SQLite and SQLite to SQLiteLegacy | Justin Clark-Casey (justincc) | 1 | -2/+2 | |
this seems the least evil way forward since mono 2.6 and later will see increasing usage, and this only works with what was SQLiteNG MAC USERS WILL NEED TO CHANGE REFERENCES TO "OpenSim.Data.SQLite.dll" to "OpenSim.Data.SQLiteLegacy.dll" in OpenSim.ini and config-include/StandaloneCommon.ini (if using standalone) See the OpenSim.ini.example and StandaloneCommon.ini.example files for more details This commit also temporarily changes unsigned ParentEstateID values in the OpenSim.Data.Tests to signed temporarily, since the new plugin enforces creation of signed fields in the database (which is what the SQL actually specifies). And change data columns in sqlite is a pita. | |||||
2010-04-26 | Uncommenting SQLiteNG project again. I found a Mono.Data.Sqlite.dll that ↵ | Diva Canto | 1 | -2/+1 | |
makes the compilation in Windows happy again. Not sure if this is the right dll, Justin -- I grabbed it somewhere from mono 2.4.6 for Windows. | |||||
2010-04-26 | * Commenting SQLiteNG out of prebuild.xml, because it's making compile fail ↵ | Diva Canto | 1 | -1/+3 | |
in Windows. Justin: you forgot to add Mono.Sqlite.dll, and I can't figure out where to grab it from! * IRegionModule.cs wants to be committed too -- EOF. | |||||
2010-04-23 | Change SQLiteNG to work with mono 2.6 and above using the Mono.Data.Sqlite.dll | Justin Clark-Casey (justincc) | 1 | -2/+1 | |
Include the library so that Windows builds correctly It appears that Windows is okay with either SQLite or SQLiteNG Incorporate the latest fixes made by Diva to OpenSim.Data.SQLite | |||||
2010-04-23 | Duplicate OpenSim.Data.SQLite into OpenSim.Data.SQLiteNG. SQLiteNG will ↵ | Justin Clark-Casey (justincc) | 1 | -0/+37 | |
shortly be changed to work under mono 2.6 and above | |||||
2010-04-22 | Renamed OpenSim.Server.exe to Robust.exe and corresponding .ini's and config. | Diva Canto | 1 | -1/+1 | |
2010-03-11 | Adding the SimianGrid connectors | John Hurliman | 1 | -0/+2 | |
2010-03-04 | Replaced BclExtras.dll with a newer version compiled for .NET 3.5. This ↵ | Diva Canto | 1 | -2/+2 | |
solves the compilation errors that have been affecting build on Windows for the past day. Thanks lkalif for noticing the conflict. | |||||
2010-03-03 | * Added three new helper utility files to OpenSim.Framework. MultipartForm ↵ | John Hurliman | 1 | -0/+1 | |
is used for constructing multipart/form-data requests. UntrustedWebRequest places sanity checks and policy on requests to HTTP endpoints that are not in the same trust domain (useful for Hypergrid, OpenID, etc). WebUtil contains misc. functions for managing URLs and network streams | |||||
2010-03-03 | Fixed prebuild errors that have emerged with the merge | Diva Canto | 1 | -44/+0 | |
2010-03-01 | Formatting cleanup. | Jeff Ames | 1 | -33/+18 | |
2010-02-09 | Add missing refernce to prebuild (backport from presence-refactor) | Melanie | 1 | -0/+1 | |
2010-02-09 | Add the friends service skel and correct some namespace issues | Melanie | 1 | -0/+31 | |
2010-02-08 | Fixed missing System.Xml from the new tool. | Diva Canto | 1 | -0/+1 | |
2010-02-08 | Adding the Careminster "Configger" tool to OpenSim. The tool will, when launched | Melanie | 1 | -0/+22 | |
in place of OpenSim, dump the config to stdout. Use -f xml, -f ini or -f mysql to get a condensed ini file, an xml file suitable for webloading, or a set of mysql insert statements. | |||||
2010-01-28 | HG 1.5 is in place. Tested in standalone only. | Diva Canto | 1 | -0/+1 | |
2010-01-24 | Integrated the hyperlinking with the GridService. | Diva Canto | 1 | -0/+1 | |
2010-01-23 | Added some prebuild refs needed for mono building | Melanie | 1 | -0/+3 | |
2010-01-22 | Add first part of test for checking restore of task inventory items on oar load | Justin Clark-Casey (justincc) | 1 | -0/+1 | |
Passes but not yet complete | |||||
2010-01-16 | Beginning of rewriting HG. Compiles, and runs, but HG functions not restored ↵ | Diva Canto | 1 | -0/+32 | |
yet. | |||||
2010-01-15 | Implement region registration with authentication | Melanie | 1 | -0/+1 | |
2010-01-11 | Remove CreateCommsManagerPlugin | Melanie | 1 | -43/+0 | |
2010-01-10 | All grid servers deleted, including user server. They served us well. | Diva Canto | 1 | -286/+1 | |
2010-01-10 | OpenSim.Region.Communications.* is no more. Thanks to everyone who ↵ | Diva Canto | 1 | -103/+0 | |
contributed to these! | |||||
2010-01-10 | Moved OpenId authentication from user server to Server.Handlers.Authentication. | Diva Canto | 1 | -0/+1 | |
2010-01-10 | * Starting to clean the house... | Diva Canto | 1 | -1/+0 | |
* Fixed circular dependency | |||||
2010-01-10 | * OMG! All but one references to UserProfileCacheService have been rerouted! | Diva Canto | 1 | -0/+2 | |
* HG is seriously broken here * Compiles. Untested. | |||||
2010-01-09 | Removed empty project OpenSim.Framework.Communications.Tests. The only test ↵ | Diva Canto | 1 | -36/+0 | |
in there was login, and that is gone now. | |||||
2010-01-08 | Inching ahead... This compiles, but very likely does not run. | Diva Canto | 1 | -0/+1 | |
2010-01-04 | Avatar appearance skeleton | Melanie | 1 | -0/+31 | |
2010-01-02 | Test client for remote user account connector and service. It seems to be ↵ | Diva Canto | 1 | -0/+28 | |
working. | |||||
2010-01-02 | Test client for remote presence connector, and for the service itself. ↵ | Diva Canto | 1 | -0/+26 | |
Connector seems to work well. |