Re: Mono-D 2.0 - XamarinStudio 5.0 support, completion improvements

2014-05-03 Thread Jack Applegame via Digitalmars-d-announce

At first, thank you.

There is an issue with Diet templates highlighting. It's very 
poor.


Just compare

Mono-D 2.0.1/Xamarian Studio 5.0 - http://a-rei.ru/eNhp
Sublime Text 3 - http://a-rei.ru/vuoY


Re: Mono-D 2.0 - XamarinStudio 5.0 support, completion improvements

2014-05-03 Thread Alexander Bothe via Digitalmars-d-announce

On Saturday, 3 May 2014 at 08:12:50 UTC, Jack Applegame wrote:

At first, thank you.

There is an issue with Diet templates highlighting. It's very 
poor.


Just compare

Mono-D 2.0.1/Xamarian Studio 5.0 - http://a-rei.ru/eNhp
Sublime Text 3 - http://a-rei.ru/vuoY


Hmm, normally, this stuff should've been highlighted as well.
See 
http://mono-d.alexanderbothe.com/diet-template-syntax-highlighting/ 
:)


But thanks for noticing that regression.


Re: Mono-D 2.0 - XamarinStudio 5.0 support, completion improvements

2014-05-03 Thread Alexander Bothe via Digitalmars-d-announce

On Saturday, 3 May 2014 at 11:28:25 UTC, Alexander Bothe wrote:

But thanks for noticing that regression.


No, it actually is working. Your file has to end with '.dt' to 
have proper highlighting. A screenshot I just took:

http://i.imgur.com/KaWAKgW.png


Re: Mono-D 2.0 - XamarinStudio 5.0 support, completion improvements

2014-05-03 Thread Jack Applegame via Digitalmars-d-announce

On Saturday, 3 May 2014 at 11:37:58 UTC, Alexander Bothe wrote:

On Saturday, 3 May 2014 at 11:28:25 UTC, Alexander Bothe wrote:

But thanks for noticing that regression.


No, it actually is working. Your file has to end with '.dt' to 
have proper highlighting. A screenshot I just took:

http://i.imgur.com/KaWAKgW.png


Strange. What is wrong?

editor - http://a-rei.ru/meJf
about - http://a-rei.ru/RAuW
add-in manager - http://a-rei.ru/jIrf


Re: Mono-D 2.0 - XamarinStudio 5.0 support, completion improvements

2014-05-03 Thread Alexander Bothe via Digitalmars-d-announce

On Saturday, 3 May 2014 at 13:21:24 UTC, Jack Applegame wrote:

Strange. What is wrong?

editor - http://a-rei.ru/meJf
about - http://a-rei.ru/RAuW
add-in manager - http://a-rei.ru/jIrf


Nothing is wrong with that - except that in the current release, 
the inline-D syntax highlighting only triggers after a   - or  
 # (double space + minus/hash), not after a \t- (tab + minus)

I've corrected this now :-)
https://github.com/aBothe/Mono-D/commit/52eaa924385fb55685e2e11d1500dedf053c9c18


Re: Mono-D 2.0 - XamarinStudio 5.0 support, completion improvements

2014-05-03 Thread Paolo Invernizzi via Digitalmars-d-announce

On Wednesday, 30 April 2014 at 20:15:37 UTC, Alexander Bothe
wrote:

Hi everyone,

there's a new XamarinStudio version upcoming. And just as 
usual, I've just downloaded the bleeding-edge release candidate 
and made Mono-D run on it :P


For the next couple of days, you'll only be able to get Mono-D 
from the repo I've mentioned in the release note, as 
XamarinStudio's online addin system isn't ready for the new 
major version yet.


Furthermore, there have been some smaller changes  
improvements to the completion functionality again. There's 
also upcoming dustmite support where you'll be able to invoke 
dustmite from within Mono-D.


http://mono-d.alexanderbothe.com/mono-d-2-0-for-xamarinstudio-5-0/

Hopefully, I can release the new XamarinStudio/MonoDevelop 
version on Linux as well. Someone mentioned an API freeze for 
the next couple of XS/MD versions, so chances are good that 
there's no hassle with broken Mono-D's for the next months.


Enjoy!


Hi Alex,

Great Job!

I'm not seeing any more the icons in the document outline pad: is
it expected?

Thanks,
Paolo


Re: Unit-threaded v0.4.0 released

2014-05-03 Thread Atila Neves via Digitalmars-d-announce

Version v0.4.3 now. New:

. Tests can be run in random (single-threaded) order. A seed can 
be specified.
. unittest blocks are registered at compile-time. This mean each 
block/function
is its own test case. Before all blocks from a module were a test 
case.


Atila

On Wednesday, 23 April 2014 at 07:42:57 UTC, Atila Neves wrote:

http://code.dlang.org/packages/unit-threaded

. The @HiddenTest UDA now takes a compile-time string meant to 
be a bug id or other reason why the test is hidden. 
Unfortunately that means previous code using it needs to add a 
string or it'll fail to compile
. The new @ShouldFail UDA also takes a compile-time string for 
the same reason. This fauses a test to fail unless it throws. 
Harder to sweep under the carpet than @HiddenTest
. On the sweeping front, the number of hidden tests is now 
reported in yellow
. Exceptions that aren't a descendant of 
unit_threaded.check.UnitTestException display a stack trace. 
This is for easier debugging in case an unexpected exception is 
thrown

. The one bug I knew of was fixed

Atila




Re: Mono-D 2.0 - XamarinStudio 5.0 support, completion improvements

2014-05-03 Thread Alexander Bothe via Digitalmars-d-announce

On Saturday, 3 May 2014 at 17:09:41 UTC, Paolo Invernizzi wrote:
I'm not seeing any more the icons in the document outline pad: 
is

it expected?


must be a regression as well. Gonna check it.


Re: Mono-D 2.0 - XamarinStudio 5.0 support, completion improvements

2014-05-03 Thread Alexander Bothe via Digitalmars-d-announce

On Saturday, 3 May 2014 at 17:09:41 UTC, Paolo Invernizzi wrote:
I'm not seeing any more the icons in the document outline pad: 
is

it expected?


Fixed it in v2.0.2



Re: Mono-D 2.0 - XamarinStudio 5.0 support, completion improvements

2014-05-03 Thread Paolo Invernizzi via Digitalmars-d-announce

On Saturday, 3 May 2014 at 18:55:44 UTC, Alexander Bothe wrote:

On Saturday, 3 May 2014 at 17:09:41 UTC, Paolo Invernizzi wrote:
I'm not seeing any more the icons in the document outline pad: 
is

it expected?


Fixed it in v2.0.2


Thank you!

/Paolo