Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on August 03, 2006, 10:11:20 pm

Title: The 03 august 2006 build is out.
Post by: killerbot on August 03, 2006, 10:11:20 pm
Get quick announcements through the RSS feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml

A link to the unicode windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.7z

For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://prdownload.berlios.de/codeblocks/mingwm10.7z

For support of ansi builds, a link to the ansi windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw26_gcc_cb_wx2.6.3p2.7z

The 03 August 2006 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20060803_rev2811_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20060803_rev2811_Ubuntu6.06.deb
         http://prdownload.berlios.de/codeblocks/CB_20060803_rev2811_fc4+5.rpm


Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 03 august 2006 build is out.
Post by: rjmyst3 on August 04, 2006, 12:09:24 am
Hi, I'm a long time listener, first time caller  :D.
Just wanted to say thank you for such a great app.

Especially the ubuntu .deb packages and all the recent work on the debugger.
Especially the debugger.
Especially the debugger.
Especially the debugger.
Especially the debugger.

THANKS!!!

 :D
Title: Re: The 03 august 2006 build is out.
Post by: RJP Computing on August 04, 2006, 02:37:11 am
  • Implemented improved debugger evaluation tooltip window
  • Fixed bad memory addresses reported in debugger's MemoryDump window
  • Fixed bug in template-code parsing for debugger tooltips
  • Fixed bug in function-signature parsing for debugger tooltips
Thanks for more debugger improvements.  :D

Can the dereferencing stuff be added to the watch window? That would make it really much easier.

Again Thanks!
Title: Re: The 03 august 2006 build is out.
Post by: Xaviou on August 04, 2006, 12:01:25 pm
Quote
Regressions/Confirmed/Annoying/Common bugs:
menu items with icon not correctly aligned (since wx263)

I'm surprised that no-one has already founded the solution : just add a 1 pixel height all transparent bitmap to all menu entries that don't have an icon. I've tried it : it works fine.
Code
/* XPM */
static char *emptyicon_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 1 1 1",
"  c None",
/* pixels */
"                ",
};
Title: Re: The 03 august 2006 build is out.
Post by: BordRider on August 04, 2006, 09:35:11 pm
debuggerific!  can't wait for arrays defined in the watch window, and arrays bigger than 200!

really though this program is excellent...as far as i can see there really is no alternative

Edit:  My last build was 06/22...and this version seems to be running ALOT faster.  Keen.
Title: Re: The 03 august 2006 build is out.
Post by: sethjackson on August 04, 2006, 09:40:37 pm
Quote
Regressions/Confirmed/Annoying/Common bugs:
menu items with icon not correctly aligned (since wx263)

I'm surprised that no-one has already founded the solution : just add a 1 pixel height all transparent bitmap to all menu entries that don't have an icon. I've tried it : it works fine.
Code
/* XPM */
static char *emptyicon_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 1 1 1",
"  c None",
/* pixels */
"                ",
};

I wonder why you have to do that for it to work corrrectly though?
Title: Re: The 03 august 2006 build is out.
Post by: Xaviou on August 05, 2006, 12:28:30 pm
Quote
I wonder why you have to do that for it to work corrrectly though?

It is not for it to work correctly. Just to have correctly aligned menus.
And it is not only for C::B, but for all wxWidgets applications based on version 2.6.3
Title: Re: The 03 august 2006 build is out.
Post by: sethjackson on August 05, 2006, 02:33:07 pm
Quote
I wonder why you have to do that for it to work corrrectly though?

It is not for it to work correctly. Just to have correctly aligned menus.
And it is not only for C::B, but for all wxWidgets applications based on version 2.6.3

Well maybe I should rephrase the question. I wonder why you have to do this to have correctly aligned menus?
I wonder where the bug is in wx.......
Title: Re: The 03 august 2006 build is out.
Post by: Xaviou on August 05, 2006, 07:36:45 pm
Hum, sorry for my missunderstood  :? (english is not my native language)

It seems to be a wx2.6.3 bug. And it appears only on Ms Windows version.
Linux version does correclty align menuitems with or withou bitmaps
Title: Re: The 03 august 2006 build is out.
Post by: sethjackson on August 06, 2006, 02:29:20 am
Hum, sorry for my missunderstood  :? (english is not my native language)

It seems to be a wx2.6.3 bug. And it appears only on Ms Windows version.
Linux version does correclty align menuitems with or withou bitmaps

Hmm ok. Maybe I can find out why.......