Re: run.dlang.io - a modern way to run D code

2017-12-17 Thread Seb via Digitalmars-d-announce
On Sunday, 17 December 2017 at 22:57:58 UTC, Walter Bright wrote: On 12/16/2017 2:45 AM, Iain Buclaw wrote: However dmd doesn't do assembly output. ;-) dmd -c test obj2asm test.obj >test.asm FYI: There's http://asm.dlang.org which seems to be a bit outdated. Moreover, there's an open issue

Re: Diamond Full-stack MVC / Template Engine - v2.5.4 Released!

2017-12-17 Thread Sönke Ludwig via Digitalmars-d-announce
Just a quick note that the information in the README about Diet templates is not up to date anymore. The diet-ng package [1] does not have any external dependencies except for Phobos and is implemented in terms of generic ranges. [1] https://github.com/rejectedsoftware/diet-ng

Re: run.dlang.io - a modern way to run D code

2017-12-17 Thread Walter Bright via Digitalmars-d-announce
On 12/16/2017 2:45 AM, Iain Buclaw wrote: However dmd doesn't do assembly output. ;-) dmd -c test obj2asm test.obj >test.asm

Re: Released vibe.d 0.8.2

2017-12-17 Thread Sönke Ludwig via Digitalmars-d-announce
Am 17.12.2017 um 21:56 schrieb bauss: On Sunday, 17 December 2017 at 20:55:15 UTC, bauss wrote:     private Nullable!string _path; Also does this really make sense? Why not just have it: private string _path; Then instead of:     string path() @safe {     if (_path.isNull)

Re: Released vibe.d 0.8.2

2017-12-17 Thread Sönke Ludwig via Digitalmars-d-announce
Am 17.12.2017 um 21:55 schrieb bauss: On Sunday, 17 December 2017 at 19:13:44 UTC, Sönke Ludwig wrote: But what do you mean with anything will break using `.path`? It follows the usual deprecation path - currently it's just documented as deprecated. In one or two releases, the `deprecated` attr

Re: Released vibe.d 0.8.2

2017-12-17 Thread bauss via Digitalmars-d-announce
On Sunday, 17 December 2017 at 19:13:44 UTC, Sönke Ludwig wrote: But what do you mean with anything will break using `.path`? It follows the usual deprecation path - currently it's just documented as deprecated. In one or two releases, the `deprecated` attribute will be set and a few releases l

Re: Released vibe.d 0.8.2

2017-12-17 Thread bauss via Digitalmars-d-announce
On Sunday, 17 December 2017 at 20:55:15 UTC, bauss wrote: private Nullable!string _path; Also does this really make sense? Why not just have it: private string _path; Then instead of: string path() @safe { if (_path.isNull) {

Re: Released vibe.d 0.8.2

2017-12-17 Thread Sönke Ludwig via Digitalmars-d-announce
Am 17.12.2017 um 16:24 schrieb bauss: On Sunday, 17 December 2017 at 14:13:05 UTC, WebFreak001 wrote: On Sunday, 17 December 2017 at 12:52:57 UTC, bauss wrote: This shouldn't have been released as 0.8.2, because it has a lot of breaking changes. For an instance anything that relies on HTTPSer

Re: Released vibe.d 0.8.2

2017-12-17 Thread bauss via Digitalmars-d-announce
On Sunday, 17 December 2017 at 14:13:05 UTC, WebFreak001 wrote: On Sunday, 17 December 2017 at 12:52:57 UTC, bauss wrote: This shouldn't have been released as 0.8.2, because it has a lot of breaking changes. For an instance anything that relies on HTTPServerRequest.path will break. I'm awar

Re: Released vibe.d 0.8.2

2017-12-17 Thread WebFreak001 via Digitalmars-d-announce
On Sunday, 17 December 2017 at 12:52:57 UTC, bauss wrote: This shouldn't have been released as 0.8.2, because it has a lot of breaking changes. For an instance anything that relies on HTTPServerRequest.path will break. I'm aware that there has been added the "requestPath" property, but it's

Re: Released vibe.d 0.8.2

2017-12-17 Thread bauss via Digitalmars-d-announce
This shouldn't have been released as 0.8.2, because it has a lot of breaking changes. For an instance anything that relies on HTTPServerRequest.path will break. I'm aware that there has been added the "requestPath" property, but it's still a breaking change to all existing code that relies

Re: Diamond Full-stack MVC / Template Engine - v2.5.4 Released!

2017-12-17 Thread bauss via Digitalmars-d-announce
These are the features that are upcoming for the next releases. * Getting rid of deprecated feature usage with mysql-native. * SEO API * Soap/Webservice support

Diamond Full-stack MVC / Template Engine - v2.5.4 Released!

2017-12-17 Thread bauss via Digitalmars-d-announce
I'm happy to announce that Diamond v2.5.4 has just been released. This release comes with the following features: * Bug fixes * Websocket support * White-space support for multi-line i18n translations. * Specialized routes (Can fetch resources from external, internal and local locations.) Git