D - DMD 0.79 release
- Walter (4/4) Jan 21 2004 Nearly all just bug fixes, with a focus on templates.
- Felix (4/8) Jan 22 2004 Nice!
- Walter (3/6) Jan 22 2004 Ek, I always botch up something. Fixed.
- J Anderson (4/9) Jan 22 2004 I that the dig + printf + with statement bug has disappeared ;) (can't
- imr1984 (2/6) Jan 22 2004
- Hauke Duden (6/8) Jan 22 2004 Good idea, but what do you do if char array contents come from a C
- Walter (21/28) Jan 22 2004 UTF-8
- C (6/10) Jan 22 2004 What do you think of adopting Y.T.s Platform SDK translations ?
- imr1984 (2/16) Jan 22 2004
- C (9/31) Jan 22 2004 Hmm ill update it ( on the site ).
- J Anderson (4/10) Jan 22 2004 Sounds really cool ;)
- J C Calvarese (8/15) Jan 22 2004 Apparently, the link has changed (the links on my webpage are outdated,
- Y.Tomino (3/3) Jan 23 2004 Thank you.
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
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
"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
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.htmlI 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
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
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
"Hauke Duden" <H.NS.Duden gmx.net> wrote in message news:buo98m$1d50$1 digitaldaemon.com...Walter wrote:UTF-8Remember that long discussion on decoding unicode characters from achar[] 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-8array? 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)? ;)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
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
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
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...UTF-8What 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 aarray? Well, foreach can do that now! http://www.digitalmars.com/d/changelog.html
Jan 22 2004
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
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.htmlApparently, 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.htmlReplacing windows.d ? C-- Justin http://jcc_7.tripod.com/d/
Jan 22 2004
Thank you. I'm arranging of files on my site, now. YT
Jan 23 2004