Marco Leise

Results 11 issues of Marco Leise

Is it possible to add the OpenAL Effects Extension to Derelict? The OpenAL core does not offer effects common to other sound libraries like FMOD or DirectSound3D. Most importantly reverb...

While opening files isn't exactly quick, but acceptable. Pasting https://raw.githubusercontent.com/D-Programming-Language/phobos/master/std/datetime.d into a D editor window takes > 1 hour. (I killed it at 1 hr 22 min). std.simd pastes for...

Bug

Enable mixin analysis Hide deprecated items and Diff based syntax highlighting are all described as "might cause deadlocks if too many mixin templates are used"

It seems to do nothing, but the project save is triggered. Moving XML files works as expected though. So there may be a failing hook for D files.

Bug

This happens for example when you change some compiler flags in the MonoDevelop configuration dialog.

Bug

Take a D file with only this line: ``` D void main(){write(cast(int)'ߞ');} ``` Try to auto-import 'write' from std.stdio. Next try this content: ``` D void main() { write(cast(int)'ߞ'); }...

``` System.InvalidOperationException: Collection was modified; enumeration operation may not execute. at System.Collections.Generic.List`1+Enumerator[System.String].MoveNext () [0x00000] in :0 at MonoDevelop.D.Building.DCompilerConfiguration.parsingFinished (D_Parser.Misc.ParsingFinishedEventArgs ea) [0x00000] in :0 at D_Parser.Misc.GlobalParseCache.noticeFinish (D_Parser.Misc.ParseIntermediate p) [0x00000] in :0...

Auto-complete doesn't show any fields of `payload` in this code: ``` D import std.experimental.logger; class FunkyLogger : Logger { this(LogLevel lv) { super(lv); } override void writeLogMsg(ref LogEntry payload) {...

I just "linked" some files for std.experimental.logger into my project and wondered why the IDE locks up / doesn't auto-complete. Copying the files into the project directory works. Then I...

I've written a JSON parser in Dlang and was looking for a test suite that would contain extreme number test cases. You seem to have put a lot of effort...