www.digitalmars.com         C & C++   DMDScript  

D - DMD 0.79 release

reply "Walter" <walter digitalmars.com> writes:
Nearly all just bug fixes, with a focus on templates.

Remember that long discussion on decoding unicode characters from a UTF-8
array? Well, foreach can do that now!

http://www.digitalmars.com/d/changelog.html
Jan 21 2004
next sibling parent reply Felix <Felix_member pathlink.com> writes:
Nice!
One thing you dropped is the "What's new for 0.78" (see
http://www.digitalmars.com/d/changelog.html#new078)... Not a big deal.



In article <bunvs8$sni$1 digitaldaemon.com>, Walter says...
Nearly all just bug fixes, with a focus on templates.

Remember that long discussion on decoding unicode characters from a UTF-8
array? Well, foreach can do that now!

http://www.digitalmars.com/d/changelog.html
Jan 22 2004
parent "Walter" <walter digitalmars.com> writes:
"Felix" <Felix_member pathlink.com> wrote in message
news:buo1c9$11n9$1 digitaldaemon.com...
 Nice!
 One thing you dropped is the "What's new for 0.78" (see
 http://www.digitalmars.com/d/changelog.html#new078)... Not a big deal.
Ek, I always botch up something. Fixed.
Jan 22 2004
prev sibling next sibling parent J Anderson <REMOVEanderson badmama.com.au> writes:
Walter wrote:

Nearly all just bug fixes, with a focus on templates.

Remember that long discussion on decoding unicode characters from a UTF-8
array? Well, foreach can do that now!

http://www.digitalmars.com/d/changelog.html


  
I that the dig + printf + with statement bug has disappeared ;) (can't find my original report, but it's gone so who cares) -Anderson
Jan 22 2004
prev sibling next sibling parent imr1984 <imr1984_member pathlink.com> writes:
you're the man Walter :)

In article <bunvs8$sni$1 digitaldaemon.com>, Walter says...
Nearly all just bug fixes, with a focus on templates.

Remember that long discussion on decoding unicode characters from a UTF-8
array? Well, foreach can do that now!

http://www.digitalmars.com/d/changelog.html
Jan 22 2004
prev sibling next sibling parent reply Hauke Duden <H.NS.Duden gmx.net> writes:
Walter wrote:
 Remember that long discussion on decoding unicode characters from a UTF-8
 array? Well, foreach can do that now!
Good idea, but what do you do if char array contents come from a C function (for example stdin) and are not encoded in UTF-8? Did I mention that D needs different types for UTF-8 encoded strings and strings in the local code page (=C strings)? ;) Hauke
Jan 22 2004
parent "Walter" <walter digitalmars.com> writes:
"Hauke Duden" <H.NS.Duden gmx.net> wrote in message
news:buo98m$1d50$1 digitaldaemon.com...
 Walter wrote:
 Remember that long discussion on decoding unicode characters from a
UTF-8
 array? Well, foreach can do that now!
Good idea, but what do you do if char array contents come from a C function (for example stdin) and are not encoded in UTF-8?
char[] a; // not in UTF-8 ... foreach (char c; a) ... // will not attempt to decode as UTF-8 foreach (dchar c; a) ... // will attempt to decode as UTF-8
 Did I mention that D needs different types for UTF-8 encoded strings and
 strings in the local code page (=C strings)? ;)
I understand the problem with multibyte strings in the local code page. There are several other encoding schemes, too. D is pretty settled on native support for UTF. Other encodings will have to be treated much as you'd handle it in C or C++. The reason is that code pages are obsolete, and UTF is the future. I understand that Win9x code pages need to be supported for the time being, and it is supported, just not with any special constructs for it. To do a unique type for code page strings, a typedef or a wrapper class should do the trick. It's not as elegant, but code pages aren't too elegant anyway <g>. I've been working on a document outlining how to handle these issues, but it's just an outline at the moment.
Jan 22 2004
prev sibling parent reply "C" <dont respond.com> writes:
What do you think of adopting Y.T.s Platform SDK translations ?

http://hp.vector.co.jp/authors/VA028375/contents/D_windows.h.html

Replacing windows.d ?

C
"Walter" <walter digitalmars.com> wrote in message
news:bunvs8$sni$1 digitaldaemon.com...
 Nearly all just bug fixes, with a focus on templates.

 Remember that long discussion on decoding unicode characters from a UTF-8
 array? Well, foreach can do that now!

 http://www.digitalmars.com/d/changelog.html
Jan 22 2004
next sibling parent reply imr1984 <imr1984_member pathlink.com> writes:
thats 404 mate, by the way when is the next version of DIDE coming out ?

In article <bup60m$2qtd$1 digitaldaemon.com>, C says...
What do you think of adopting Y.T.s Platform SDK translations ?

http://hp.vector.co.jp/authors/VA028375/contents/D_windows.h.html

Replacing windows.d ?

C
"Walter" <walter digitalmars.com> wrote in message
news:bunvs8$sni$1 digitaldaemon.com...
 Nearly all just bug fixes, with a focus on templates.

 Remember that long discussion on decoding unicode characters from a UTF-8
 array? Well, foreach can do that now!

 http://www.digitalmars.com/d/changelog.html
Jan 22 2004
parent reply "C" <dont respond.com> writes:
Hmm ill update it ( on the site ).

Within the week , new find and replace ( finally ) , dtags should be 100%
( except for old template class syntax ) , configurable tools menu , windgb
shortcut , function call tips should correctly display a constructors
parameters, and code completion activated when a user is idle for 1 second .

C
"imr1984" <imr1984_member pathlink.com> wrote in message
news:bupf20$8ln$1 digitaldaemon.com...
 thats 404 mate, by the way when is the next version of DIDE coming out ?

 In article <bup60m$2qtd$1 digitaldaemon.com>, C says...
What do you think of adopting Y.T.s Platform SDK translations ?

http://hp.vector.co.jp/authors/VA028375/contents/D_windows.h.html

Replacing windows.d ?

C
"Walter" <walter digitalmars.com> wrote in message
news:bunvs8$sni$1 digitaldaemon.com...
 Nearly all just bug fixes, with a focus on templates.

 Remember that long discussion on decoding unicode characters from a
UTF-8
 array? Well, foreach can do that now!

 http://www.digitalmars.com/d/changelog.html
Jan 22 2004
parent J Anderson <REMOVEanderson badmama.com.au> writes:
C wrote:

Hmm ill update it ( on the site ).

Within the week , new find and replace ( finally ) , dtags should be 100%
( except for old template class syntax ) , configurable tools menu , windgb
shortcut , function call tips should correctly display a constructors
parameters, and code completion activated when a user is idle for 1 second .

  
Sounds really cool ;) -- -Anderson: http://badmama.com.au/~anderson/
Jan 22 2004
prev sibling parent reply J C Calvarese <jcc7 cox.net> writes:
C wrote:

 What do you think of adopting Y.T.s Platform SDK translations ?
 
 http://hp.vector.co.jp/authors/VA028375/contents/D_windows.h.html
Apparently, the link has changed (the links on my webpage are outdated, too). This is the new address: http://hp.vector.co.jp/authors/VA028375/d/windows.h.html
 
 Replacing windows.d ?
 
 C
-- Justin http://jcc_7.tripod.com/d/
Jan 22 2004
parent "Y.Tomino" <demoonlit inter7.jp> writes:
Thank you.
I'm arranging of files on my site, now.

YT
Jan 23 2004