Re: DMD v2.066.0-b2

2014-07-08 Thread NCrashed via Digitalmars-d-announce
On Tuesday, 8 July 2014 at 10:38:52 UTC, Andrew Edwards wrote: The v2.066.0-b2 binaries are now available. The review period will run until 0700 UTC ( PDT) 14 July 2014. Your assistance in identifying and reporting bugs are greatly appreciated. Link to this post on dlang.org main page is

Re: DMD v2.066.0-b2

2014-07-08 Thread NCrashed . via Digitalmars-d-announce
Also the link on main page is broken. 2014-07-08 18:10 GMT+04:00 via Digitalmars-d-announce digitalmars-d-announce@puremagic.com: On Tuesday, 8 July 2014 at 13:48:45 UTC, kdmult wrote: The download links are broken. They should have prefix http:// instead of ftp://. Hmm... they work for

Re: Awesome-D, and an invitation to you awesome guys

2014-08-10 Thread NCrashed via Digitalmars-d-announce
On Sunday, 10 August 2014 at 09:28:48 UTC, Puming wrote: Hi, I'm maintaining this awesome-d list similar to other awesome-stuff lists on github, for keeping a hook on interesting D related links. https://github.com/zhaopuming/awesome-d At first it was only for my personal use, but recently

Re: DMD v2.066.0-rc2

2014-08-10 Thread NCrashed via Digitalmars-d-announce
On Friday, 8 August 2014 at 12:01:43 UTC, Andrew Edwards wrote: DMD v2.066.0-rc2 binaries are available for testing: http://wiki.dlang.org/Beta_Testing Found another bug with DList: https://issues.dlang.org/show_bug.cgi?id=13279

Daemonize v0.1 - simple way to create cross-platform daemons

2014-08-31 Thread NCrashed via Digitalmars-d-announce
Finally I've finished library for wrapping applications into daemons or services (Windows). The library hides platform-specific boilerplate behind compile-time API: ``` // First you need to describe your daemon via template alias daemon = Daemon!( DaemonizeExample1, // unique name //

Re: Daemonize v0.1 - simple way to create cross-platform daemons

2014-08-31 Thread NCrashed via Digitalmars-d-announce
Thanks a lot for the respond! Does the user sees/uses this name in any way afterwards? Because I think you could also produce a unique string at compile-time (by using __FILE__ and __LINE__, unless someone has a better idea), if the user does not provide one. Maybe he just wants an anonymous

Re: Daemonize v0.1 - simple way to create cross-platform daemons

2014-08-31 Thread NCrashed via Digitalmars-d-announce
IIRC, I read in your code that composed signals means the next delegate must have the (logger, signal) {...} form. Why? I can (not must) have the form, the delegate params are tested independently from signal composition. Is that the standard behavior for daemons in OSes? Most signals are

Re: Daemonize v0.1 - simple way to create cross-platform daemons

2014-09-27 Thread NCrashed via Digitalmars-d-announce
On Saturday, 27 September 2014 at 03:49:31 UTC, Andrei Alexandrescu wrote: On 8/31/14, 4:27 AM, NCrashed wrote: Finally I've finished library for wrapping applications into daemons or services (Windows). The library hides platform-specific boilerplate behind compile-time API: [snip] I

Re: Release Candidate D 2.067.0-rc1

2015-03-17 Thread NCrashed via Digitalmars-d-announce
On Monday, 16 March 2015 at 21:38:22 UTC, Martin Nowak wrote: Release Candidate for 2.067.0 http://downloads.dlang.org/pre-releases/2.x/2.067.0/ http://ftp.digitalmars.com/ You can get the binaries here until they are mirrored. https://dlang.dawg.eu/downloads/dmd.2.067.0-rc1/ We fixed the few

Re: Release Candidate D 2.067.0-rc1

2015-03-17 Thread NCrashed via Digitalmars-d-announce
On Tuesday, 17 March 2015 at 10:52:18 UTC, NCrashed wrote: On Monday, 16 March 2015 at 21:38:22 UTC, Martin Nowak wrote: Release Candidate for 2.067.0 http://downloads.dlang.org/pre-releases/2.x/2.067.0/ http://ftp.digitalmars.com/ You can get the binaries here until they are mirrored.

Re: Release Candidate D 2.067.0-rc1

2015-03-17 Thread NCrashed via Digitalmars-d-announce
On Tuesday, 17 March 2015 at 11:33:14 UTC, Max Klyga wrote: On 2015-03-17 11:18:10 +, Daniel Kozak said: On Monday, 16 March 2015 at 21:38:22 UTC, Martin Nowak wrote: Release Candidate for 2.067.0 http://downloads.dlang.org/pre-releases/2.x/2.067.0/ http://ftp.digitalmars.com/ You can

Re: Release Candidate D 2.067.0-rc1

2015-03-17 Thread NCrashed via Digitalmars-d-announce
On Monday, 16 March 2015 at 21:38:22 UTC, Martin Nowak wrote: Release Candidate for 2.067.0 http://downloads.dlang.org/pre-releases/2.x/2.067.0/ http://ftp.digitalmars.com/ You can get the binaries here until they are mirrored. https://dlang.dawg.eu/downloads/dmd.2.067.0-rc1/ We fixed the few

Re: DDT 0.11.0 released

2015-03-06 Thread NCrashed via Digitalmars-d-announce
On Friday, 6 March 2015 at 17:37:51 UTC, Bruno Medeiros wrote: A new version of DDT is out. Improvements to the semantic engine, important fixes: https://github.com/bruno-medeiros/DDT/releases/tag/Release_0.11.0 There has also been some big internal changes lately, so these latest releases

Re: vibe.d 0.7.23 has been released

2015-03-25 Thread NCrashed via Digitalmars-d-announce
On Wednesday, 25 March 2015 at 21:37:09 UTC, Sönke Ludwig wrote: This release adds support for the just released DMD 2.067.0 frontend. There are also some preparatory changes in vibe.core.sync (TaskMutex etc.) for planned nothrow related changes to D's mutexes and object monitors. These