DarkRadiant 0.9.11
March 11th, 2009 by CrusaderVersion 0.9.11 of the Doom 3 editor DarkRadiant, a fork of the GtkRadiant level editor maintained by the Dark Mod project, has been released, which adds a command console.
Download: [ sourceforge.net ]
Edit: Well crap, looks like this release doesn’t have a Linux build for download – I’ll see if a SVN snapshot works at some point. Sorry about that.




March 12th, 2009 at 12:20 am
Where exactly is the Linux download? Isn’t the ability to be to work on multiple platforms one of the strengths of GTK and Python.
March 12th, 2009 at 1:08 am
Maybe the person who made the .DEBS left the group. I always wanted to learn the way of .DEB.
March 13th, 2009 at 1:24 am
Heres a small guide I made for building DarkRadiant on Ubuntu 9.04 Alpha 5. I’m not sure if the packages use the same names in 8.10 or in other distros.
::Building DarkRadiant in Ubuntu::
Packages:
subversion
build-essential
zlib1g-dev
libjpeg-dev
libglib2.0-dev
libgtk2.0-dev
libgtkglext1-dev
libxml2-dev
libglew-dev
libboost-regex-dev
Feed to Console:
sudo apt-get install subversion build-essential zlib1g-dev libjpeg-dev libglib2.0-dev libgtk2.0-dev libgtkglext1-dev libxml2-dev libglew-dev libboost-regex-dev
svn co https://darkradiant.svn.sourceforge.net/svnroot/darkradiant/tags/0.9.11/ darkradiant-0.9.11
cd darkradiant-0.9.11
./configure
make
sudo make install
March 13th, 2009 at 6:25 pm
Thanks for putting that together!