January 30, 2009
Robert Fraser escribió:
> Jason House wrote:
>> I have no great example handy, but I tried doing the equivalent of this example (dmd 2.022):
>>
>> import std.algorithm;
>> void main(){
>>   auto x = sort!("a<b")([2,3,5,4]);
>> }
>>
>> Sadly, nothing happens with the ctrl+shift+hover trick.  The compile time view reports it as missing.  I checked the user libraries to make sure it was ok.  I have two: druntime and phobos.  The phobos path displays as usr/local/src/phobos (I navigated to /usr/local/src/phobos through the gui to select it).  I see the std subdirectory and algorithm.d inside of it.  I don't know what is going wrong with finding the import.
>>
>> sort is really a wrapper around sortImpl, which has two bodies inside a static if.  It's trivial to figure out which one is used, but it'd be nice to have a way to see what was really done without all the static if's.
> 
> I think D2 support is weak in Descent; so that's likely the problem.

Yes, that's it. The port of DMD2 is not finished and that's why it might not work (like: it's a miracle if it works :-P)
January 30, 2009
Ary Borenszweig wrote:
> Jacob Carlborg escribió:
>> I just updated descent and got this error: java.lang.UnsupportedClassVersionError: Bad version number in .class file
> 
> Can you try updating now?

It works now, and Ctrl+click for go to definition also works :) thanks.
You're doing a great job.
February 01, 2009
For me an the other 0.25 shlups out there that are trying to run descent without an internet connection, is there a zipfile download for 0.5.4?


February 01, 2009
BCS escribió:
> For me an the other 0.25 shlups out there that are trying to run descent without an internet connection, is there a zipfile download for 0.5.4?

Here's a temporary one:

http://downloads.dsource.org/projects/descent/descent_0.5.4.20090131.zip

But... you'll need an internet connection to download it, right? I don't understand your problem. :-(
February 01, 2009
Ary Borenszweig wrote:
> BCS escribió:
>> For me an the other 0.25 shlups out there that are trying to run descent without an internet connection, is there a zipfile download for 0.5.4?
> 
> Here's a temporary one:
> 
> http://downloads.dsource.org/projects/descent/descent_0.5.4.20090131.zip
> 
> But... you'll need an internet connection to download it, right? I don't understand your problem. :-(

Perhaps the computer he's running Eclipse on doesn't have an internet connection?
This way he can download it onto (e.g.) an USB stick and install from there.
February 01, 2009
Hello Frits,

> Perhaps the computer he's running Eclipse on doesn't have an internet
> connection?
> This way he can download it onto (e.g.) an USB stick and install from
> there.

you got it


February 01, 2009
Hello Ary,

> BCS escribió:
> 
>> For me an the other 0.25 shlups out there that are trying to run
>> descent without an internet connection, is there a zipfile download
>> for 0.5.4?
>> 
> Here's a temporary one:
> 
> http://downloads.dsource.org/projects/descent/descent_0.5.4.20090131.z
> ip
> 
> But... you'll need an internet connection to download it, right? I
> don't understand your problem. :-(
> 

thanks!


February 10, 2009
Ary Borenszweig escribió:
> The Descent plugin for Eclipse provides an IDE for writing, launching and debugging code in D.
> 
> Explanations on how to get it from within Eclipse are here:
> 
> http://www.dsource.org/projects/descent

Hi,

I just uploaded a new version with some semantic fixes (0.5.4.20090209).
March 10, 2009
The compile-time view doesn't seem to use UTF, does it?

const LOC_MAIN_MENU_FILE_OPEN = "&Öffnen"; // (input file encoding is UTF-8)

becomes

const char[8] LOC_MAIN_MENU_FILE_OPEN = "&֖ffnen";

in the view.
March 21, 2009
Started my descent quest..
Mostly because I wanted the : Highlighting of all occurrences of the current
token under the cursor.
Also just to look what else might be interesting.

Had a few problems with descent and PATH. Maybe it was something else but could it maybe be that you need to logout for eclipse to see changes in the PATH?

Well things seem to be working now but I miss poseidons syntax colourscheme. Is it possible to have different colours per keyword(group)?