Jump to page: 1 2 3
Thread overview
DUB 0.9.24 beta 1 with SDL support ready for testing
Jun 17, 2015
Sönke Ludwig
Jun 17, 2015
ponce
Jun 18, 2015
Jacob Carlborg
Jun 18, 2015
extrawurst
Jun 24, 2015
Suliman
Jul 02, 2015
Sönke Ludwig
DUB 0.9.24 beta 2
Jul 02, 2015
Sönke Ludwig
Jul 02, 2015
extrawurst
Jul 14, 2015
Sönke Ludwig
Jul 14, 2015
extrawurst
Jul 02, 2015
Mathias Lang
Jul 03, 2015
Sönke Ludwig
Jul 03, 2015
Mathias Lang
Jul 04, 2015
Sönke Ludwig
Jul 10, 2015
Sönke Ludwig
Jul 11, 2015
extrawurst
Jul 02, 2015
rsw0x
Jul 03, 2015
Sönke Ludwig
Jul 03, 2015
Nick Sabalausky
Jul 03, 2015
Brad Anderson
Jul 03, 2015
Nick Sabalausky
Jul 04, 2015
Sönke Ludwig
Jul 07, 2015
Suliman
Jul 07, 2015
Suliman
Jul 07, 2015
Sönke Ludwig
June 17, 2015
A new beta version out with support for the new SDL [1] based package description format. If you are interested, please take some time to test the implementation and to discuss any possible improvements to the format specification before the final 0.9.24 release is made.

The specification is currently still found on the wiki, but will be moved to code.dlang.org together with the final release:
https://github.com/D-Programming-Language/dub/wiki/DEP1

Download:
http://code.dlang.org/download

Change log:
https://github.com/D-Programming-Language/dub/blob/master/CHANGELOG.md

[1]: http://sdl.ikayzo.org/display/SDL/Home
June 17, 2015
On Wednesday, 17 June 2015 at 07:27:01 UTC, Sönke Ludwig wrote:
> A new beta version out with support for the new SDL [1] based package description format. If you are interested, please take some time to test the implementation and to discuss any possible improvements to the format specification before the final 0.9.24 release is made.
>
> The specification is currently still found on the wiki, but will be moved to code.dlang.org together with the final release:
> https://github.com/D-Programming-Language/dub/wiki/DEP1
>
> Download:
> http://code.dlang.org/download
>
> Change log:
> https://github.com/D-Programming-Language/dub/blob/master/CHANGELOG.md
>
> [1]: http://sdl.ikayzo.org/display/SDL/Home

Great.
The new "platform" attribute looks better than the current situation.
June 18, 2015
On 17/06/15 09:26, Sönke Ludwig wrote:

> A new beta version out with support for the new SDL [1]

I really like it. More than half of it looks like Ruby :). Is there support in editors for SDL, like syntax highlighting?

-- 
/Jacob Carlborg
June 18, 2015
On Thursday, 18 June 2015 at 19:58:31 UTC, Jacob Carlborg wrote:
> On 17/06/15 09:26, Sönke Ludwig wrote:
>
>> A new beta version out with support for the new SDL [1]
>
> I really like it. More than half of it looks like Ruby :). Is there support in editors for SDL, like syntax highlighting?

I used simple C highlighting in notepad++ to at least get folding ;)

-- Stephan
June 24, 2015
dub init generate by default json file. SDL still is not sully implemented?
July 02, 2015
Am 17.06.2015 um 09:26 schrieb Sönke Ludwig:
> A new beta version out with support for the new SDL [1] based package
> description format. If you are interested, please take some time to test
> the implementation and to discuss any possible improvements to the
> format specification before the final 0.9.24 release is made.
>
> The specification is currently still found on the wiki, but will be
> moved to code.dlang.org together with the final release:
> https://github.com/D-Programming-Language/dub/wiki/DEP1
>
> Download:
> http://code.dlang.org/download
>
> Change log:
> https://github.com/D-Programming-Language/dub/blob/master/CHANGELOG.md
>
> [1]: http://sdl.ikayzo.org/display/SDL/Home

The second beta is out now. "dub init" now creates an SDL package description by default (use --format=json to get a dub.json instead).

"dub describe" has gotten a lot more powerful with a new "targets" field and the new "--data" switch. This is especially useful for external build tools based on this output. Pre/post build/generate commands can now access a bunch of additional environment variables [1].

[1]: https://github.com/D-Programming-Language/dub/blob/00f59eb63dcf922e1ad77ede13cbfdcf0a09084f/source/dub/generators/generator.d#L451
July 02, 2015
Am 24.06.2015 um 20:36 schrieb Suliman:
> dub init generate by default json file. SDL still is not sully implemented?

Updated in beta.2.
July 02, 2015
On Wednesday, 17 June 2015 at 07:27:01 UTC, Sönke Ludwig wrote:
> A new beta version out with support for the new SDL [1] based package description format. If you are interested, please take some time to test the implementation and to discuss any possible improvements to the format specification before the final 0.9.24 release is made.
>
> The specification is currently still found on the wiki, but will be moved to code.dlang.org together with the final release:
> https://github.com/D-Programming-Language/dub/wiki/DEP1
>
> Download:
> http://code.dlang.org/download
>
> Change log:
> https://github.com/D-Programming-Language/dub/blob/master/CHANGELOG.md
>
> [1]: http://sdl.ikayzo.org/display/SDL/Home

Have you considered referring to it as SDLang? SDL is difficult to google/already taken by a much more prominent project. I know SDL isn't your creation and I can't speak for anyone else but before it was proposed for dub I never heard of Simple Declarative Language.

Googling "Simple Declarative Language" has less than 5,000 results so I guess I'm not alone.
July 02, 2015
On Thursday, 2 July 2015 at 20:39:45 UTC, Sönke Ludwig wrote:
> Am 17.06.2015 um 09:26 schrieb Sönke Ludwig:
>> [...]
>
> The second beta is out now. "dub init" now creates an SDL package description by default (use --format=json to get a dub.json instead).
>
> "dub describe" has gotten a lot more powerful with a new "targets" field and the new "--data" switch. This is especially useful for external build tools based on this output. Pre/post build/generate commands can now access a bunch of additional environment variables [1].
>
> [1]: https://github.com/D-Programming-Language/dub/blob/00f59eb63dcf922e1ad77ede13cbfdcf0a09084f/source/dub/generators/generator.d#L451

Awesome! Is there a dub cmd to convert a given project to SDL ?
July 02, 2015
Congrats on the work done !

2015-07-02 22:39 GMT+02:00 Sönke Ludwig <digitalmars-d@puremagic.com>:

>
> The second beta is out now. "dub init" now creates an SDL package description by default (use --format=json to get a dub.json instead).
>

Honestly, I am really not fan of implementing a feature AND making it a default in the same release.


« First   ‹ Prev
1 2 3