Snap package for LDC 1.1.0 available to test

2017-02-03 Thread Joseph Rushton Wakeling via Digitalmars-d-announce
As of earlier today, a snap package for LDC 1.1.0 has been published in the 'edge' channel of the Ubuntu store. Snap packages are a new format developed by Ubuntu to facilitate upstreams being able to provide the latest versions of their apps directly to users. The format is also designed to

Re: Boston D Meetup 2/9: `shared` Experiences

2017-02-03 Thread bitwise via Digitalmars-d-announce
On Monday, 30 January 2017 at 21:48:57 UTC, Steven Schveighoffer wrote: Attention fellow Boston D enthusiasts: I have set up a meetup for February, and Michael Coulombe will give a presentation on his experiences with shared. As before, this will be at the Capital One Cafe in the back bay

Re: LDC 1.1.0 released

2017-02-03 Thread Kai Nacke via Digitalmars-d-announce
On Friday, 3 February 2017 at 12:21:09 UTC, deadalnix wrote: On Wednesday, 1 February 2017 at 03:43:10 UTC, David Nadlinger wrote: Hi all, Version 1.1.0 of LDC, the LLVM-based D compiler, has finally been released: https://github.com/ldc-developers/ldc/releases/tag/v1.1.0 Please head over

Re: D IDE Coedit - version 3 beta 3

2017-02-03 Thread Basile B. via Digitalmars-d-announce
On Monday, 30 January 2017 at 23:32:12 UTC, dminded wrote: Ok, the debugger also works if i write a bit more then just a 'writeln' into main. How can i set breakpoints? If i click on the left side of a row, a little red dot appears. But the debugger seems to ignore it and instead every

Re: unDE 0.2.0 - unusual command line and keybar

2017-02-03 Thread unDEFER via Digitalmars-d-announce
On Friday, 3 February 2017 at 17:11:26 UTC, Chris Wright wrote: I think `mkdirRecurse` doesn't complain about directories that already exist. Thank you!

Re: unDE 0.2.0 - unusual command line and keybar

2017-02-03 Thread Chris Wright via Digitalmars-d-announce
On Fri, 03 Feb 2017 14:18:05 +, Basile B. wrote: > Also before that there's two FileException thrown because you use > mkdir() systematically with a silent try catch. You should rather test > if the the directories exist (when you create ~/.unde/ and > ~/.unde/bdb/, global_state.d) because it

Re: unDE 0.2.0 - unusual command line and keybar

2017-02-03 Thread unDEFER via Digitalmars-d-announce
On Friday, 3 February 2017 at 14:18:05 UTC, Basile B. wrote: Also before that there's two FileException thrown because you use mkdir() systematically with a silent try catch. You should rather test if the the directories exist (when you create ~/.unde/ and ~/.unde/bdb/, global_state.d)

Re: unDE 0.2.0 - unusual command line and keybar

2017-02-03 Thread unDEFER via Digitalmars-d-announce
On Friday, 3 February 2017 at 14:05:58 UTC, Basile B. wrote: What is the name of the static lib we have to install for for "DB" ? /usr/lib64/gcc/x86_64-suse-linux/4.8/../../../../x86_64-suse-linux/bin/ld: ne peut trouver -ldb collect2: error: ld returned 1 exit status Error: linker exited

Re: unDE 0.2.0 - unusual command line and keybar

2017-02-03 Thread Basile B. via Digitalmars-d-announce
On Friday, 3 February 2017 at 14:05:58 UTC, Basile B. wrote: On Friday, 3 February 2017 at 13:48:39 UTC, Basile B. wrote: On Sunday, 29 January 2017 at 19:00:30 UTC, unDEFER wrote: unDE's not DE which in the future must be replacement for all programs in OS. But today is very original file

Re: unDE 0.2.0 - unusual command line and keybar

2017-02-03 Thread Basile B. via Digitalmars-d-announce
On Friday, 3 February 2017 at 13:48:39 UTC, Basile B. wrote: On Sunday, 29 January 2017 at 19:00:30 UTC, unDEFER wrote: unDE's not DE which in the future must be replacement for all programs in OS. But today is very original file manager, image and text viewer and (what discovered with 0.2.0

Re: unDE 0.2.0 - unusual command line and keybar

2017-02-03 Thread Basile B. via Digitalmars-d-announce
On Sunday, 29 January 2017 at 19:00:30 UTC, unDEFER wrote: unDE's not DE which in the future must be replacement for all programs in OS. But today is very original file manager, image and text viewer and (what discovered with 0.2.0 version) command line and keybar. More information:

Re: vibe.d 0.8.0 and 0.7.31 beta releases

2017-02-03 Thread Sönke Ludwig via Digitalmars-d-announce
Am 03.02.2017 um 10:28 schrieb yazd: On Tuesday, 31 January 2017 at 11:11:28 UTC, Sönke Ludwig wrote: The first release of the revamped core module [1] is nearing, and along with that, a compatible vibe.d release (0.8.0). The new core module is still opt-in in this release and can be activated

Re: LDC 1.1.0 released

2017-02-03 Thread kinke via Digitalmars-d-announce
On Friday, 3 February 2017 at 12:21:09 UTC, deadalnix wrote: What's the state of cent/ucent ? Unchanged as https://github.com/ldc-developers/ldc/pull/1659 is still pending and Kai doesn't have time ATM. If you're very interested in 128-bit integers, please consider continuing that PR

Re: vibe.d 0.8.0 and 0.7.31 beta releases

2017-02-03 Thread yazd via Digitalmars-d-announce
On Friday, 3 February 2017 at 12:25:42 UTC, Dominikus Dittes Scherkl wrote: On Friday, 3 February 2017 at 09:28:26 UTC, yazd wrote: Is it possible to have non-@safe callbacks be part of the non-deprecated API? Why? A @safe API allows you to use it within @safe code, but it doesn't require you

Re: vibe.d 0.8.0 and 0.7.31 beta releases

2017-02-03 Thread Dominikus Dittes Scherkl via Digitalmars-d-announce
On Friday, 3 February 2017 at 09:28:26 UTC, yazd wrote: Is it possible to have non-@safe callbacks be part of the non-deprecated API? Why? A @safe API allows you to use it within @safe code, but it doesn't require you to also write @safe code. Especially if you don't like to annotate your code

Re: LDC 1.1.0 released

2017-02-03 Thread deadalnix via Digitalmars-d-announce
On Wednesday, 1 February 2017 at 03:43:10 UTC, David Nadlinger wrote: Hi all, Version 1.1.0 of LDC, the LLVM-based D compiler, has finally been released: https://github.com/ldc-developers/ldc/releases/tag/v1.1.0 Please head over to the digitalmars.D.ldc forums for more details and

Re: vibe.d 0.8.0 and 0.7.31 beta releases

2017-02-03 Thread yazd via Digitalmars-d-announce
On Tuesday, 31 January 2017 at 11:11:28 UTC, Sönke Ludwig wrote: The first release of the revamped core module [1] is nearing, and along with that, a compatible vibe.d release (0.8.0). The new core module is still opt-in in this release and can be activated using a `subConfiguration