digitalmars.D - DMD 0.130
- Bob W (6/6) Aug 23 2005 DMD 0.130 is announced but currently
- Sean Kelly (5/11) Aug 23 2005 You're too fast. DMD .130 isn't listed in the changelog yet, nor has Wa...
- clayasaurus (15/35) Aug 23 2005 I see it in the changelog here
- David L. Davis (11/46) Aug 23 2005 Walter, since I don't see D.bugs/4750 the above list yet, could you plea...
- zwang (3/65) Aug 23 2005 #4750 looks like a constant folding bug.
- David L. Davis (58/123) Aug 23 2005 zwang, thank you for the reply. You're correct, that placing the negativ...
- Walter (7/11) Aug 24 2005 fix
- SeeSchloss (4/18) Aug 23 2005 HA, it has been *removed* from the changelog actually. I was wondering
- Bob W (7/23) Aug 23 2005 It WAS listed in the changelog (see one of the other replies)
- J Thomas (2/7) Aug 23 2005
- Carlos Santander (4/24) Aug 26 2005 This also happened with 0.93
- Hasan Aljudy (2/13) Aug 23 2005 Where is it announced? did I miss something?
- Walter (4/10) Aug 23 2005 Ack, 0.130 is a work in progress and I accidentally uploaded the changel...
DMD 0.130 is announced but currently not available. The file "dmd.zip" seems to be version 0.129 and the file "dmd.130.zip" does not exist. Anything wrong with the new toy?
Aug 23 2005
In article <degb0p$2toa$1 digitaldaemon.com>, Bob W says...DMD 0.130 is announced but currently not available. The file "dmd.zip" seems to be version 0.129 and the file "dmd.130.zip" does not exist. Anything wrong with the new toy?You're too fast. DMD .130 isn't listed in the changelog yet, nor has Walter announced its release. Assuming it's on its way, I imagine the files are still being uploaded and such. Sean
Aug 23 2005
Sean Kelly wrote:In article <degb0p$2toa$1 digitaldaemon.com>, Bob W says...I see it in the changelog here http://www.digitalmars.com/d/changelog.html#new0130 What's New for D 0.130 Aug 21, 2005 New/Changed Features * Added Don Clugston's std.math.feqrel(). Bugs Fixed * Fixed D.bugs/4699 * Fixed D.bugs/4726 * Fixed D.bugs/4761 * Fixed D.bugs/4765 * Fixed D.bugs/4768 * Fixed DMDScript/174 Maybe it was uploaded accidently with the website changing?...DMD 0.130 is announced but currently not available. The file "dmd.zip" seems to be version 0.129 and the file "dmd.130.zip" does not exist. Anything wrong with the new toy?You're too fast. DMD .130 isn't listed in the changelog yet, nor has Walter announced its release. Assuming it's on its way, I imagine the files are still being uploaded and such. Sean
Aug 23 2005
In article <degcho$2ust$1 digitaldaemon.com>, clayasaurus says...Sean Kelly wrote:Walter, since I don't see D.bugs/4750 the above list yet, could you please fix this major bug from v0.128 / v0.129 in the D v0.130 release. Currently I can't release my new project (which is very close now) that I've been burning the midnight hours on, until I can run it thru a good unittest. Thanks in advance! :) David L. ------------------------------------------------------------------- "Dare to reach for the Stars...Dare to Dream, Build, and Achieve!" ------------------------------------------------------------------- MKoD: http://spottedtiger.tripod.com/D_Language/D_Main_XP.htmlIn article <degb0p$2toa$1 digitaldaemon.com>, Bob W says...I see it in the changelog here http://www.digitalmars.com/d/changelog.html#new0130 What's New for D 0.130 Aug 21, 2005 New/Changed Features * Added Don Clugston's std.math.feqrel(). Bugs Fixed * Fixed D.bugs/4699 * Fixed D.bugs/4726 * Fixed D.bugs/4761 * Fixed D.bugs/4765 * Fixed D.bugs/4768 * Fixed DMDScript/174 Maybe it was uploaded accidently with the website changing?...DMD 0.130 is announced but currently not available. The file "dmd.zip" seems to be version 0.129 and the file "dmd.130.zip" does not exist. Anything wrong with the new toy?You're too fast. DMD .130 isn't listed in the changelog yet, nor has Walter announced its release. Assuming it's on its way, I imagine the files are still being uploaded and such. Sean
Aug 23 2005
David L. Davis wrote:In article <degcho$2ust$1 digitaldaemon.com>, clayasaurus says...A workaround is to store either number in a variable before comparison.Sean Kelly wrote:Walter, since I don't see D.bugs/4750 the above list yet, could you please fix this major bug from v0.128 / v0.129 in the D v0.130 release. Currently I can't release my new project (which is very close now) that I've been burning the midnight hours on, until I can run it thru a good unittest. Thanks in advance! :) David L. ------------------------------------------------------------------- "Dare to reach for the Stars...Dare to Dream, Build, and Achieve!" ------------------------------------------------------------------- MKoD: http://spottedtiger.tripod.com/D_Language/D_Main_XP.htmlIn article <degb0p$2toa$1 digitaldaemon.com>, Bob W says...I see it in the changelog here http://www.digitalmars.com/d/changelog.html#new0130 What's New for D 0.130 Aug 21, 2005 New/Changed Features * Added Don Clugston's std.math.feqrel(). Bugs Fixed * Fixed D.bugs/4699 * Fixed D.bugs/4726 * Fixed D.bugs/4761 * Fixed D.bugs/4765 * Fixed D.bugs/4768 * Fixed DMDScript/174 Maybe it was uploaded accidently with the website changing?...DMD 0.130 is announced but currently not available. The file "dmd.zip" seems to be version 0.129 and the file "dmd.130.zip" does not exist. Anything wrong with the new toy?You're too fast. DMD .130 isn't listed in the changelog yet, nor has Walter announced its release. Assuming it's on its way, I imagine the files are still being uploaded and such. Sean
Aug 23 2005
In article <degkqa$ah9$1 digitaldaemon.com>, zwang says...David L. Davis wrote:zwang, thank you for the reply. You're correct, that placing the negative numeric literal into a variable does get around the current bug in the example I posted. But it still gets wrong results when I'm comparing the variable in some cases against a numeric types .min and .max methods. Which is now what's happening in my templates I'm using in my current project. Output: ------------------ C:\dmd>negcompare2 With -128 in a variable, if does work... main() : (-128 >= 0)=false, (-128 <= 0)=true main() : (128 >= 0)=true, (128 <= 0)=false But where I need it the most, it does not! ulong.min=0, ulong.max=18446744073709551615 main() : (-128 >= ulong.min)=true, (-128 <= ulong.max)=true main() : (128 >= ulong.min)=true, (128 <= ulong.max)=true C:\dmd> Please notices that lValue1 (which is -128) is '>=' than '0', this can't be, because it will cause my unittests to fail. Thanks again, David L. ------------------------------------------------------------------- "Dare to reach for the Stars...Dare to Dream, Build, and Achieve!" ------------------------------------------------------------------- MKoD: http://spottedtiger.tripod.com/D_Language/D_Main_XP.htmlIn article <degcho$2ust$1 digitaldaemon.com>, clayasaurus says...A workaround is to store either number in a variable before comparison.Sean Kelly wrote:Walter, since I don't see D.bugs/4750 the above list yet, could you please fix this major bug from v0.128 / v0.129 in the D v0.130 release. Currently I can't release my new project (which is very close now) that I've been burning the midnight hours on, until I can run it thru a good unittest. Thanks in advance! :) David L. ------------------------------------------------------------------- "Dare to reach for the Stars...Dare to Dream, Build, and Achieve!" ------------------------------------------------------------------- MKoD: http://spottedtiger.tripod.com/D_Language/D_Main_XP.htmlIn article <degb0p$2toa$1 digitaldaemon.com>, Bob W says...I see it in the changelog here http://www.digitalmars.com/d/changelog.html#new0130 What's New for D 0.130 Aug 21, 2005 New/Changed Features * Added Don Clugston's std.math.feqrel(). Bugs Fixed * Fixed D.bugs/4699 * Fixed D.bugs/4726 * Fixed D.bugs/4761 * Fixed D.bugs/4765 * Fixed D.bugs/4768 * Fixed DMDScript/174 Maybe it was uploaded accidently with the website changing?...DMD 0.130 is announced but currently not available. The file "dmd.zip" seems to be version 0.129 and the file "dmd.130.zip" does not exist. Anything wrong with the new toy?You're too fast. DMD .130 isn't listed in the changelog yet, nor has Walter announced its release. Assuming it's on its way, I imagine the files are still being uploaded and such. Sean
Aug 23 2005
"David L. Davis" <SpottedTiger yahoo.com> wrote in message news:degj0v$5mg$1 digitaldaemon.com...Walter, since I don't see D.bugs/4750 the above list yet, could you pleasefixthis major bug from v0.128 / v0.129 in the D v0.130 release. Currently Ican'trelease my new project (which is very close now) that I've been burningthemidnight hours on, until I can run it thru a good unittest.That is on my "must fix" list, and is one reason why .130 isn't ready to go out the door yet.
Aug 24 2005
On Tue, 23 Aug 2005 23:38:28 +0000, Sean Kelly wrote:In article <degb0p$2toa$1 digitaldaemon.com>, Bob W says...HA, it has been *removed* from the changelog actually. I was wondering why it wasn't available, too. The changelog said the exists() bug had been fixed... I'll wait.DMD 0.130 is announced but currently not available. The file "dmd.zip" seems to be version 0.129 and the file "dmd.130.zip" does not exist. Anything wrong with the new toy?You're too fast. DMD .130 isn't listed in the changelog yet, nor has Walter announced its release. Assuming it's on its way, I imagine the files are still being uploaded and such.
Aug 23 2005
"Sean Kelly" <sean f4.ca> wrote in message news:degc1k$2unq$1 digitaldaemon.com...In article <degb0p$2toa$1 digitaldaemon.com>, Bob W says...It WAS listed in the changelog (see one of the other replies) with a couple of bugfixes mentioned. Now it is gone. I bet it has been removed just to be renamed from 0.130 to 1.0 ! So the champagne is ready ........ :-)DMD 0.130 is announced but currently not available. The file "dmd.zip" seems to be version 0.129 and the file "dmd.130.zip" does not exist. Anything wrong with the new toy?You're too fast. DMD .130 isn't listed in the changelog yet, nor has Walter announced its release. Assuming it's on its way, I imagine the files are still being uploaded and such. Sean
Aug 23 2005
YIKES! are you trying to scare us?? :D Bob W wrote:I bet it has been removed just to be renamed from 0.130 to 1.0 ! So the champagne is ready ........ :-)
Aug 23 2005
Sean Kelly escribió:In article <degb0p$2toa$1 digitaldaemon.com>, Bob W says...This also happened with 0.93 -- Carlos Santander BernalDMD 0.130 is announced but currently not available. The file "dmd.zip" seems to be version 0.129 and the file "dmd.130.zip" does not exist. Anything wrong with the new toy?You're too fast. DMD .130 isn't listed in the changelog yet, nor has Walter announced its release. Assuming it's on its way, I imagine the files are still being uploaded and such. Sean
Aug 26 2005
Bob W wrote:DMD 0.130 is announced but currently not available. The file "dmd.zip" seems to be version 0.129 and the file "dmd.130.zip" does not exist. Anything wrong with the new toy?Where is it announced? did I miss something?
Aug 23 2005
"Bob W" <nospam aol.com> wrote in message news:degb0p$2toa$1 digitaldaemon.com...DMD 0.130 is announced but currently not available. The file "dmd.zip" seems to be version 0.129 and the file "dmd.130.zip" does not exist. Anything wrong with the new toy?Ack, 0.130 is a work in progress and I accidentally uploaded the changelog for it.
Aug 23 2005