Re: New DConf Blog Post

2019-04-06 Thread Seb via Digitalmars-d-announce

On Saturday, 6 April 2019 at 22:30:58 UTC, bauss wrote:

Just going to respond to this:

"If you haven’t visited the site in a while, you’ll surely 
notice that it’s been redesigned. The old version was not 
responsive and was quite annoying to manipulate on small 
screens."


The design is terrible and it really looks unprofessional.

While the old site wasn't responsive, the design was at least 
slightly better.


It just doesn't look very well done.

I'm not trying to be negative or anything, but it looks like 
someone who just learn html/css in 1999 tried to make the 
design of the page.


Well, it takes up less browser resources than my proposal for 
DConf 2018 ;-)


https://wilzbach.github.io/dconf18/

Source: https://github.com/wilzbach/dconf18



Re: New DConf Blog Post

2019-04-06 Thread bauss via Digitalmars-d-announce

On Friday, 22 March 2019 at 13:58:01 UTC, Mike Parker wrote:
The DConf schedule was announced last Sunday. I've just 
published a write-up about it on the blog for the 
world-at-large. Please help us out by sharing this post in your 
social media circles.


The blog:
https://dlang.org/blog/2019/03/22/dconf-2019-london-programme/

Reddit:
https://www.reddit.com/r/programming/comments/b45bxp/dconf_2019_london_programme/


Just going to respond to this:

"If you haven’t visited the site in a while, you’ll surely notice 
that it’s been redesigned. The old version was not responsive and 
was quite annoying to manipulate on small screens."


The design is terrible and it really looks unprofessional.

While the old site wasn't responsive, the design was at least 
slightly better.


It just doesn't look very well done.

I'm not trying to be negative or anything, but it looks like 
someone who just learn html/css in 1999 tried to make the design 
of the page.




LDC 1.15.0

2019-04-06 Thread kinke via Digitalmars-d-announce

Glad to announce LDC 1.15:

* Based on D 2.085.1.
* Support for LLVM 8.0. The prebuilt packages ship with LLVM 
8.0.0 and include the Khronos SPIRV-LLVM-Translator, so that 
dcompute can now emit OpenCL too.
* New -lowmem switch to enable the GC for the front-end, trading 
compile times for less required memory (in some cases, by more 
than 60%).
* New generic @llvmAttr("name") parameter UDAs, incl. @restrict 
with C-like semantics.
* Dropped support for 32-bit macOS. Min macOS version for 
prebuilt package raised to 10.9.
* Prebuilt packages don't depend on libtinfo/libedit and don't 
require SSSE3 anymore.
* Fix: functions annotated with `pragma(inline, true)` are 
implicitly cross-module-inlined again.


Full release log and downloads: 
https://github.com/ldc-developers/ldc/releases/tag/v1.15.0


Thanks to all contributors!


Re: New and Unofficial OpenCV binding for D programming language

2019-04-06 Thread Nicholas Wilson via Digitalmars-d-announce

On Friday, 5 April 2019 at 15:52:42 UTC, Paolo Invernizzi wrote:
Until we have copy ctors, D can't have structures with internal 
pointers, as they can be moved... that's something similar in 
C++ string, if I remember well, and that was the blocker that 
leaded to the copy ctors DIP...


That lead to the acceptance of DIP1014 (opPostMove) not 1018. Its 
a move problem not a copy problem.


Release D 2.085.1

2019-04-06 Thread Martin Nowak via Digitalmars-d-announce
Glad to announce D 2.085.1, ♥ to the 14 contributors.

http://dlang.org/download.html

This point release fixes a few issues over 2.085.0, see the changelog
for more details.

http://dlang.org/changelog/2.085.1.html

-Martin