Re: Iup4D 1.0 alpha

2017-01-20 Thread Chris Wright via Digitalmars-d-announce
This would have been a great place to say exactly what Iup4D is. IUP is a cross-platform UI layer, which, much like wxWidgets, wraps native UI libraries. It supports drawing with Motif, GTK+, and Windows native widgets.

Re: Iup4D 1.0 alpha

2017-01-20 Thread rikki cattermole via Digitalmars-d-announce
On 21/01/2017 4:23 AM, Heromyth wrote: Iup4D is a D binding library for IUP with OOP style. Its API is similar to WinForms. This software is licensed under the Boost Software License, Version 1.0. It's still under active development and is only tested on Windows X86. The repository is at

Re: Testing in the D Standard Library

2017-01-20 Thread Jack Stouffer via Digitalmars-d-announce
On Friday, 20 January 2017 at 16:50:22 UTC, Jacob Carlborg wrote: Could you please create a new image out of the DMD Ddoc output using 2.073.0 instead. It has a completely new default Ddoc theme. But 2.073 isn't released yet.

Re: Iup4D 1.0 alpha

2017-01-20 Thread Jordan Wilson via Digitalmars-d-announce
On Friday, 20 January 2017 at 15:23:51 UTC, Heromyth wrote: Iup4D is a D binding library for IUP with OOP style. Its API is similar to WinForms. This software is licensed under the Boost Software License, Version 1.0. It's still under active development and is only tested on Windows X86.

Re: Pixel Perfect Engine (formerly known as VDP-Engine) version 0.9.1-rc1 released

2017-01-20 Thread Chris Wright via Digitalmars-d-announce
This would have been the perfect place for you to describe what this project is about. Pixel Perfect Engine is a 2d graphics system based on SDL and FreeImage. It appears to be tile-based and incorporate a map editor.

Pixel Perfect Engine (formerly known as VDP-Engine) version 0.9.1-rc1 released

2017-01-20 Thread solidstate1991 via Digitalmars-d-announce
Github: https://github.com/ZILtoid1991/pixelperfectengine It's now pretty usable a decent speeds and a lot of features. There's now a new collision-detection algorithm that can test whole lines at once, although it's currently untested. I also started to work on an editor, it's only function

Re: DConf 2017 now open for registration

2017-01-20 Thread Nicholas Wilson via Digitalmars-d-announce
On Friday, 20 January 2017 at 21:11:51 UTC, Walter Bright wrote: On 1/20/2017 1:20 AM, Nicholas Wilson wrote: I presume if I only intend to go if my submission proposal is accepted that I don't need to register? You're still better off registering to: 1. reserve your ticket in case it is

Re: DConf 2017 now open for registration

2017-01-20 Thread Walter Bright via Digitalmars-d-announce
On 1/20/2017 1:23 AM, Nicholas Wilson wrote: On Thursday, 19 January 2017 at 20:53:28 UTC, Walter Bright wrote: $250 for Early Bird tickets! http://dconf.org/2017/registration.html Also at the bottom of the page For corporate sponsorship packages, please contact

Re: DConf 2017 now open for registration

2017-01-20 Thread Walter Bright via Digitalmars-d-announce
On 1/20/2017 1:20 AM, Nicholas Wilson wrote: I presume if I only intend to go if my submission proposal is accepted that I don't need to register? You're still better off registering to: 1. reserve your ticket in case it is not accepted 2. take advantage of Early Bird price if it is not

Re: DConf 2017 now open for registration

2017-01-20 Thread Walter Bright via Digitalmars-d-announce
On 1/19/2017 11:45 PM, Jacob Carlborg wrote: On 2017-01-19 21:53, Walter Bright wrote: $250 for Early Bird tickets! http://dconf.org/2017/registration.html Awesome :). BTW, there's a page missing [1]. [1] http://dconf.org/2017/thankyou.html https://github.com/dlang/dconf.org/pull/146

Re: Release Candidate 2.073.0-rc1

2017-01-20 Thread Suliman via Digitalmars-d-announce
If you just want a single executable, the default (libcmt) is good enough. It adds the C runtime as a static library in the link step. I already tried it, but app is still require msvcr120.dll when run it's on another PC.

Re: Pry v0.3.1 is out!

2017-01-20 Thread Dmitry Olshansky via Digitalmars-d-announce
On 1/17/17 11:52 PM, Bastiaan Veelo wrote: On Sunday, 15 January 2017 at 01:26:07 UTC, Dmitry Olshansky wrote: Two key areas of focus are (compared to say Pegged): - performance, on par with hand-written code or die I didn't profile, but apart from the time-complexity that is inherent to

Re: Testing in the D Standard Library

2017-01-20 Thread Jacob Carlborg via Digitalmars-d-announce
On 2017-01-20 14:35, Mike Parker wrote: Jack Stouffer details how unit testing, code review, and code coverage are handled in the development and maintenance of Phobos. Thanks, Jack! Blog: https://dlang.org/blog/2017/01/20/testing-in-the-d-standard-library/ Could you please create a new image

Iup4D 1.0 alpha

2017-01-20 Thread Heromyth via Digitalmars-d-announce
Iup4D is a D binding library for IUP with OOP style. Its API is similar to WinForms. This software is licensed under the Boost Software License, Version 1.0. It's still under active development and is only tested on Windows X86. The repository is at https://github.com/Heromyth/Iup4D.

Re: Testing in the D Standard Library

2017-01-20 Thread qznc via Digitalmars-d-announce
On Friday, 20 January 2017 at 13:35:40 UTC, Mike Parker wrote: Jack Stouffer details how unit testing, code review, and code coverage are handled in the development and maintenance of Phobos. Thanks, Jack! Blog: https://dlang.org/blog/2017/01/20/testing-in-the-d-standard-library/ Reddit:

Re: Testing in the D Standard Library

2017-01-20 Thread Mike Parker via Digitalmars-d-announce
On Friday, 20 January 2017 at 13:39:10 UTC, Jack Stouffer wrote: Thanks for posting this! Also, there is a typo in the list after the first paragraph. There should be an item which says "A style checker". Sorry about that. A victim of my formatting. Fixed.

Re: Testing in the D Standard Library

2017-01-20 Thread Jack Stouffer via Digitalmars-d-announce
On Friday, 20 January 2017 at 13:35:40 UTC, Mike Parker wrote: Jack Stouffer details how unit testing, code review, and code coverage are handled in the development and maintenance of Phobos. Thanks, Jack! Blog: https://dlang.org/blog/2017/01/20/testing-in-the-d-standard-library/ Reddit:

Testing in the D Standard Library

2017-01-20 Thread Mike Parker via Digitalmars-d-announce
Jack Stouffer details how unit testing, code review, and code coverage are handled in the development and maintenance of Phobos. Thanks, Jack! Blog: https://dlang.org/blog/2017/01/20/testing-in-the-d-standard-library/ Reddit:

Re: DConf 2017 now open for registration

2017-01-20 Thread Nicholas Wilson via Digitalmars-d-announce
On Thursday, 19 January 2017 at 20:53:28 UTC, Walter Bright wrote: $250 for Early Bird tickets! http://dconf.org/2017/registration.html Also at the bottom of the page For corporate sponsorship packages, please contact dconf2...@digitalmars.com Is that supposed to be 2017?

Re: DConf 2017 now open for registration

2017-01-20 Thread Nicholas Wilson via Digitalmars-d-announce
On Thursday, 19 January 2017 at 20:53:28 UTC, Walter Bright wrote: $250 for Early Bird tickets! http://dconf.org/2017/registration.html I presume if I only intend to go if my submission proposal is accepted that I don't need to register?

Re: Release Candidate 2.073.0-rc1

2017-01-20 Thread Rainer Schuetze via Digitalmars-d-announce
On 19.01.2017 21:56, Suliman wrote: On Thursday, 19 January 2017 at 19:22:07 UTC, Rainer Schuetze wrote: On 19.01.2017 08:32, Suliman wrote: http://dlang.org/changelog/2.073.0.html#mscrtlib-option How can I set this flag in dub.json? I tried: "dflags": [ "-mscrt=msvcrt" ] but got error: