Author Topic: The 07 March 2007 build is out.  (Read 11975 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
The 07 March 2007 build is out.
« on: March 07, 2007, 08:06:12 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

To fix the menu alignment bug introduced in wx 2.6.3 [windows only bug] we have patched wx ourselves, and that results in the following alternative dll : http://prdownload.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2AndCbPatch_version3.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 07 March 2007 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20070307_rev3672_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20070307_rev3672_Ubuntu6.xx.deb
         http://prdownload.berlios.de/codeblocks/CB_20070307_rev3672_suse100-102.i586.rpm (not yet)
         http://prdownload.berlios.de/codeblocks/CB_20070307_rev3672_fc4+5.i586.rpm (not yet)


Resolved Fixed:

  • Debugger's tooltip evaluation re-enabled
  • Fixed Code-folding bug (Fold/Unfold/Toggle All/{Current block} related)

Regressions/Confirmed/Annoying/Common bugs:

  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)
  • menu items with icon not correctly aligned (since wx263) (is fixed with our special wx263/wx28 dll)

« Last Edit: March 08, 2007, 07:42:17 am by killerbot »

Offline Xaviou

  • Regular
  • ***
  • Posts: 402
    • X@v's wxStuff
Re: The 07 March 2007 build is out.
« Reply #1 on: March 07, 2007, 08:58:40 pm »
Ubuntu 6.10 Amd64 .deb installer can be found here.
The french wxWidgets site : http://www.wxdev.fr
My wxWidgets's stuff : https://wxstuff.xaviou.fr/

Alturin

  • Guest
Re: The 07 March 2007 build is out.
« Reply #2 on: March 07, 2007, 10:40:55 pm »
Now that I see the "Debugger's tooltip evaluation re-enabled" commit log, I wondered.
The symbol browsers shows a baloon with the text "Searching the symbos  tree is currently disabled. We are sorry for the inconvenience." whenever you hit search.
Is there any timeframe on this being fixed? Or is it somewhere on the todo-sometime heap? :)

Thanks for the great IDE :).

Offline mike__t

  • Multiple posting newcomer
  • *
  • Posts: 11
Re: The 07 March 2007 build is out.
« Reply #3 on: March 07, 2007, 11:40:14 pm »
That message means it's fixed now :-).

Poobah

  • Guest
Re: The 07 March 2007 build is out.
« Reply #4 on: March 08, 2007, 12:10:13 pm »
  • Fixed Code-folding bug (Fold/Unfold/Toggle All/{Current block} related)

Thanks, but code folding is still really annoying because it won't automatically unfold its way to whatever line you jump to. Before this fix, it at least unfolded something, but now it won't do anything! Here's an example:
Code
#include <stdio.h>

int main()
{
{
{
{
_non_existant_function();
}
}
}

return 0;
}

Open that in Code::Blocks, fold all, and compile. When you double-click "undefined reference to `_non_existant_function'" (or right-click and "jump to selected message", nothing happens. This is very annoying.

Offline kkez

  • Almost regular
  • **
  • Posts: 153
    • WinapiZone
Re: The 07 March 2007 build is out.
« Reply #5 on: March 08, 2007, 12:40:27 pm »
  • Fixed Code-folding bug (Fold/Unfold/Toggle All/{Current block} related)

Thanks, but code folding is still really annoying because it won't automatically unfold its way to whatever line you jump to. Before this fix, it at least unfolded something, but now it won't do anything!
Open that in Code::Blocks, fold all, and compile. When you double-click "undefined reference to `_non_existant_function'" (or right-click and "jump to selected message", nothing happens. This is very annoying.
Yes, i already suggested to use this patch. Maybe it can fix both problems. See the topic on this discussion here.

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
Re: The 07 March 2007 build is out.
« Reply #6 on: March 08, 2007, 02:48:23 pm »

Thanks, but code folding is still really annoying because it won't automatically unfold its way to whatever line you jump to. Before this fix, it at least unfolded something, but now it won't do anything!

The fix is ready and I'm testing it. Hopefully you'll get it soon. :)

Regards,

Biplab


Edit 1: Fix applied in revision 3674.
« Last Edit: March 08, 2007, 04:41:59 pm by Biplab »
Be a part of the solution, not a part of the problem.

Offline xee

  • Single posting newcomer
  • *
  • Posts: 7
Re: The 07 March 2007 build is out.
« Reply #7 on: March 08, 2007, 09:48:22 pm »
I ran into a bug in the previous version(and I assume it's still there), I have a single project that's using external makefiles, it builds and rebuilds successfully, however, when I use the "Rebuild workspace" command from the menu, I get building errors, this got me suspicious in the first place, after careful examination of the build log, I found that C::B builds the project using my external makefile first, then it completely ignores the external makefile and uses its own makefile for another build which fails.

Offline xee

  • Single posting newcomer
  • *
  • Posts: 7
Re: The 07 March 2007 build is out.
« Reply #8 on: March 09, 2007, 12:56:12 am »
I have a suggestion, when adding new files to the project, after selecting the files, I get a dialog asking me to select the configurations(or targets as C::B calls them) to add the file to, and usually there are Debug, Release and a checkbox beside each of them, my suggestion is that all the targets should be selected by default, I rarely add a file to a certain target(s) only, and I think it's the same for other developers.

Thanks.