Released vibe.d 0.8.2

2017-12-12 Thread Sönke Ludwig via Digitalmars-d-announce
The major changes in this release are HTTP forward proxy support, handling incoming HTTP requests on custom transports and a MongoDB based session store. On top of that, there are many smaller improvements in the HTTP server, web/REST generator, JSON/BSON support and the TLS sub system.

Re: d-apt update

2017-12-12 Thread Jordi Sayol via Digitalmars-d-announce
New d-apt dmd deb packages released (ver. 2.077.1-0.1) This release fix these problems: - Move rdmd from "dmd-tools" to "dmd-compiler" - Add "dmd-bin (<< 2.077.1-0)" at "Conflicts:" and "Replaces:" fields on "dmd-compiler" and "dmd-tools" deb packages, to avoid upgrade conflicts. Jordi

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

2017-12-12 Thread Seb via Digitalmars-d-announce
After it has been in stealth mode for quite a while, I'm happy to announce that there's https://run.dlang.io === Features === * Color-highlighted DMD errors * Format source code with dfmt * Generate a short URL for link sharing * Import/Export to GitHub Gist * Typical key shortcuts like

Re: d-apt update

2017-12-12 Thread Jordi Sayol via Digitalmars-d-announce
El 11/12/17 a les 23:02, Manu ha escrit: > I would strongly suggest the rdmd be included in dmd-bin rather than > dmd-tools. Yes, You're right and will be as you say on next dmd release. But will be in dmd-compiler rather than in the deprecated dmd-bin.

datefmt 1.0.0 released: parse datetimes and also format them

2017-12-12 Thread Neia Neutuladh via Digitalmars-d-announce
# Sales pitch If you've ever had to parse datetime input from multiple sources and everyone's standardized on ISO8601, you might have found out that that's not quite as standard as you'd wish. This is where datefmt helps you. --- import datefmt; auto expected = SysTime(Date(2010, 1, 1),

mir-algorithm v0.7.0: new interpolation, optmath, bugfixes

2017-12-12 Thread Nathan S. via Digitalmars-d-announce
About Mir Algorithm Mir Algorithm[1] is Dlang core library for math, finance and a home for Dlang multidimensional array package - ndslice. New Modules since v0.6.21 - Reworked interpolation API, now found in mir.interpolate, mir.interpolate.linear,

Re: Released vibe.d 0.8.2

2017-12-12 Thread Timothee Cour via Digitalmars-d-announce
that's great... unfortunately https://github.com/vibe-d/vibe.d/issues/1991 is a regression preventing from updating to 0.8.X (has a reduced test case). Any help on this would be very appreciated, thanks! On Tue, Dec 12, 2017 at 11:44 AM, Sönke Ludwig via Digitalmars-d-announce

Re: Released vibe.d 0.8.2

2017-12-12 Thread Seb via Digitalmars-d-announce
On Tuesday, 12 December 2017 at 19:44:17 UTC, Sönke Ludwig wrote: The major changes in this release are HTTP forward proxy support, handling incoming HTTP requests on custom transports and a MongoDB based session store. On top of that, there are many smaller improvements in the HTTP server,

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

2017-12-12 Thread rikki cattermole via Digitalmars-d-announce
On 12/12/2017 6:37 PM, Seb wrote: After it has been in stealth mode for quite a while, I'm happy to announce that there's https://run.dlang.io === Features === * Color-highlighted DMD errors * Format source code with dfmt * Generate a short URL for link sharing s/shorten/permalink/ Or

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

2017-12-12 Thread Meta via Digitalmars-d-announce
On Tuesday, 12 December 2017 at 18:37:38 UTC, Seb wrote: After it has been in stealth mode for quite a while, I'm happy to announce that there's https://run.dlang.io === Features === * Color-highlighted DMD errors * Format source code with dfmt * Generate a short URL for link sharing *

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

2017-12-12 Thread H. S. Teoh via Digitalmars-d-announce
On Wed, Dec 13, 2017 at 12:50:40AM +, Meta via Digitalmars-d-announce wrote: > On Tuesday, 12 December 2017 at 18:37:38 UTC, Seb wrote: > > After it has been in stealth mode for quite a while, I'm happy to > > announce that there's https://run.dlang.io [...] > This is a real life saver

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

2017-12-12 Thread Seb via Digitalmars-d-announce
On Wednesday, 13 December 2017 at 00:32:11 UTC, rikki cattermole wrote: On 12/12/2017 6:37 PM, Seb wrote: === Supported D Compilers === * Latest DMD nightly * Latest DMD beta * Latest DMD * Latest LDC beta * Latest LDC The Docker images are rebuilt every day automatically. Can we please

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

2017-12-12 Thread Seb via Digitalmars-d-announce
On Wednesday, 13 December 2017 at 00:50:40 UTC, Meta wrote: This is a real life saver considering dpaste is blocked at work. It gets very tedious having to create a file, invoke the compiler, and run it in 3 separate steps just to test out some quick snippet. Great to hear that it's useful

Re: mir-algorithm v0.7.0: new interpolation, optmath, bugfixes

2017-12-12 Thread jmh530 via Digitalmars-d-announce
On Tuesday, 12 December 2017 at 23:10:26 UTC, Nathan S. wrote: About Mir Algorithm [snip] +1

Re: Released vibe.d 0.8.2

2017-12-12 Thread bauss via Digitalmars-d-announce
On Tuesday, 12 December 2017 at 19:44:17 UTC, Sönke Ludwig wrote: The major changes in this release are HTTP forward proxy support, handling incoming HTTP requests on custom transports and a MongoDB based session store. On top of that, there are many smaller improvements in the HTTP server,

Re: LDC 1.7.0-beta1

2017-12-12 Thread Joakim via Digitalmars-d-announce
On Sunday, 10 December 2017 at 18:11:46 UTC, Suliman wrote: On Sunday, 10 December 2017 at 17:33:34 UTC, kinke wrote: Hi everyone, on behalf of the LDC team, I'm glad to announce the first beta for LDC 1.7. The highlights of this version in a nutshell: * Based on D 2.077.1. * Catching C++

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

2017-12-12 Thread Mike Franklin via Digitalmars-d-announce
On Tuesday, 12 December 2017 at 18:37:38 UTC, Seb wrote: After it has been in stealth mode for quite a while, I'm happy to announce that there's https://run.dlang.io I've actually been using it a lot recently to communicate bugs/ideas/patterns with others. Due to the nightlies, I can

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

2017-12-12 Thread Seb via Digitalmars-d-announce
On Wednesday, 13 December 2017 at 06:53:02 UTC, rikki cattermole wrote: On 13/12/2017 6:46 AM, bauss wrote: On Wednesday, 13 December 2017 at 01:14:26 UTC, Seb wrote: On Wednesday, 13 December 2017 at 00:32:11 UTC, rikki cattermole wrote: On 12/12/2017 6:37 PM, Seb wrote: === Supported D

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

2017-12-12 Thread Jonathan M Davis via Digitalmars-d-announce
On Wednesday, December 13, 2017 06:53:02 rikki cattermole via Digitalmars-d- announce wrote: > On 13/12/2017 6:46 AM, bauss wrote: > > On Wednesday, 13 December 2017 at 01:14:26 UTC, Seb wrote: > >> On Wednesday, 13 December 2017 at 00:32:11 UTC, rikki cattermole wrote: > >>> On 12/12/2017 6:37

Re: D IDE Coedit - version 3.5.1 released

2017-12-12 Thread Basile B. via Digitalmars-d-announce
On Thursday, 7 December 2017 at 14:27:39 UTC, Basile B. wrote: This is a highly recommended update for Windows users. See the regression section in the changelog [1]. If by any chance the FreeBSD packager or the AUR's one (aka Wild) read this, please note that i've switched to SemVer, so