- Radiant is now Vista compatible (Aero must be disabled)

- Updated all radiant dependencies (gtk is now 2-2.10)
  New dependency packages can be found here
http://zerowing.idsoftware.com/files/radiant/developer/1.5/gtkradiant-1.5-dependencies-1.0.zip
  or here
http://www.codecreator.net/radiant/gtkradiant-1.5-dependencies-1.0.zip
- Removed Win32 filechooser
   - Fixes crashes caused by utf-8 encoded filenames
   - Fixes Vista "SaveAs"-Bug
- Converted all projects to Visual Studio 2005
- Codefixes for vc2k5 compiler
- Removed old unused projectfiles for Visual Studio 6
- Simplified dependency filestructure
- Simplified install.py
- Updated CONTRIBUTORS list

git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@143 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
namespace
2007-02-28 20:55:39 +00:00
parent 61cca6db45
commit 68159d9ed4
89 changed files with 6889 additions and 12723 deletions

View File

@@ -97,6 +97,11 @@ class EclassModel :
m_keyObservers.insert("origin", OriginKey::OriginChangedCaller(m_originKey));
}
// vc 2k5 compiler fix
#if _MSC_VER >= 1400
public:
#endif
void updateTransform()
{
m_transform.localToParent() = g_matrix4_identity;
@@ -524,3 +529,4 @@ scene::Node& New_EclassModel(EntityClass* eclass)
return (new EclassModelNode(eclass))->node();
}