Author Topic: The 31 october 2006 build is out.  (Read 12172 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
The 31 october 2006 build is out.
« on: October 31, 2006, 09:17:02 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 31 October 2006 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20061031_rev3163_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20061031_rev3163_Ubuntu6.06.deb
         http://prdownload.berlios.de/codeblocks/CB_20061031_rev3163_suse100+101.rpm (not yet)
         http://prdownload.berlios.de/codeblocks/CB_20061031_rev3163_fc4+5.rpm (not yet)


Resolved Fixed:

  • [ Patch #1592 ] Updated filelist for RPM "codeblocks.spec"[.in] (fixes : [ Bug #9291 ] %files in codeblocks.spec are out-of-date)
  • sync with cvs sources of wxFlatNotebook (Set bitmap to all wxMemoryDC to allow correct height)
  • sync with cvs sources of wxFlatNotebook (Set bitmap to all wxMemoryDC to allow correct height)

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)

« Last Edit: October 31, 2006, 11:06:22 pm by killerbot »

Offline cstudent

  • Almost regular
  • **
  • Posts: 159
    • Cstudent's Help Desk
Re: The 31 october 2006 build is out.
« Reply #1 on: November 01, 2006, 04:06:13 am »
Ubuntu 6.10 (Edgy) build here.

bigbug

  • Guest
Re: The 31 october 2006 build is out.
« Reply #2 on: November 01, 2006, 09:05:04 am »
Installer including MinGW here. MinGW will be installed to its default location C:\MinGW where Code::Blocks will detect it, but you can choose where to install the nightly.

Offline reptils

  • Multiple posting newcomer
  • *
  • Posts: 24
    • Winsplit Revolution
Re: The 31 october 2006 build is out.
« Reply #3 on: November 01, 2006, 10:45:54 am »
Hi killerbot,I don't know I my question has been posted before... Is possible to have a "auto close symbol" option, for these symbols ( [ { " ' in the editior settings?
WinSplit Revolution http://reptils.free.fr

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: The 31 october 2006 build is out.
« Reply #4 on: November 01, 2006, 10:49:14 am »
do you mean : when I type the "(", then automatically the ")" is put by CB ??

Check out : Settings-Editor->Abbreviations : might be a first step towards what you want

Offline Jan van den Borst

  • Multiple posting newcomer
  • *
  • Posts: 99
Re: The 31 october 2006 build is out.
« Reply #5 on: November 01, 2006, 02:36:13 pm »
Hi all
I experienced a bug in this version.

I wanted to use the /p option. If I use codeblocks.exe /p=ask codeblocks crashes when I select default. However codeblocks.exe /p=default works fine.
Jan

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: The 31 october 2006 build is out.
« Reply #6 on: November 01, 2006, 02:56:00 pm »
Hi all
I experienced a bug in this version.

I wanted to use the /p option. If I use codeblocks.exe /p=ask codeblocks crashes when I select default. However codeblocks.exe /p=default works fine.
Jan

same here, could you create a bug report for this please, thanks

[EDIT] : annoying one, tried to debug, had the crash once in the debugger, now no longer in the debugger, but when the output directory version is ran --> crash

[EDIT2] : more info on this yet, also in debugger again --> happens when the splash screen is shown -> without splash screen no crash (and maybe this might be an utterance of the DDE bug again)
Can you try it like this :
Code
codeblocks -ns /p=ask

[EDIT3] : the crash happens in EditorManager::InitPane()  on the last line : Manager::Get()->GetAppWindow()->ProcessEvent(evt);

for the simple reason that the returned AppWindow pointer is 0 (NULL)

personal note : is this InitPane pure for the open file list -> crash only when you don't want to see open file list : no : crash in both cases ??
« Last Edit: November 01, 2006, 03:47:19 pm by killerbot »

Offline Jan van den Borst

  • Multiple posting newcomer
  • *
  • Posts: 99
Re: The 31 october 2006 build is out.
« Reply #7 on: November 01, 2006, 03:45:00 pm »
I have an issue with command-line build and # parallel builds=2.

When I compile a project by calling "codeblocks.exe project.cbp --build --target=all" I get a undesired build result that is an exitcode of 0 when I expect something not equal to 0.

Suppose "Parallel build 1" has a compiler error.  The build thread is canceled with a errorcode (!=0), however "Parallel build 2" is still running and is successful (exitcode==0). Due to the error of "Parallel build 1" codeblocks exits but returns the exitcode (0) of "Parallel build 2". So even if I have a build error codeblocks exits with a 0 (successful)

The exitcode should be :  sum(all exitcodes)!=0

Setting the number of parallel builds to 1 fixes the issue but a real fix would be better.



Offline reptils

  • Multiple posting newcomer
  • *
  • Posts: 24
    • Winsplit Revolution
Re: The 31 october 2006 build is out.
« Reply #8 on: November 01, 2006, 05:22:56 pm »
do you mean : when I type the "(", then automatically the ")" is put by CB ??
yes
Check out : Settings-Editor->Abbreviations : might be a first step towards what you want
?? I don't think that is a solution.
WinSplit Revolution http://reptils.free.fr

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2750
Re: The 31 october 2006 build is out.
« Reply #9 on: November 01, 2006, 07:47:47 pm »
Hi killerbot,I don't know I my question has been posted before... Is possible to have a "auto close symbol" option, for these symbols ( [ { " ' in the editior settings?
If you're a windows user, you might find a utility named AutoHotKey of some help.
Google it.