Author Topic: The 16 March 2007 build is out.  (Read 13103 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5529
The 16 March 2007 build is out.
« on: March 16, 2007, 09:54:38 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 16 March 2007 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20070316_rev3714_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20070316_rev3714_Ubuntu6.xx.deb (not yet)
         http://prdownload.berlios.de/codeblocks/CB_20070316_rev3714_suse100-102.i586.rpm (not yet)
         http://prdownload.berlios.de/codeblocks/CB_20070316_rev3714_fc4+5.i586.rpm (not yet)


Resolved Fixed:

  • Fixed: [Bug #9452] Build options coherency lack
  • Improved context menu in Project Manager. A number of options wont be enabled if the project is currently compiling
  • Fixed: [Bug #9457 & Bug #10638] Error at import or open Dev++ project

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)
  • debugging on Win2000 broken for the moment (workaround, replace the debugger.dll with a version from a nightly of 2 weeks ago)


Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5529
Re: The 16 March 2007 build is out.
« Reply #1 on: March 16, 2007, 09:57:27 pm »
Tomorrow morning I am leaving for the USA for SD Expo (www.sdexpo.com). So nightly builds are not guaranteed this coming week. I should have wireless access in the hotel, but will I able able to svn update and then ftp upload ... that's the question.
I'll do my very best to provide the nightlies. But for sure, next week on Sunday I am back and for sure that day the nigthlies are too.

Cheers,
Lieven

wxLearner

  • Guest
Re: The 16 March 2007 build is out.
« Reply #2 on: March 16, 2007, 10:13:29 pm »
Right clicking the workspace makes Code::Blocks crash.

Quote from: sdk/projectmanager.cpp
Code: line 486
if (Projects && (ftd->GetKind() == FileTreeData::ftdkProject)) // Make sure we're looking for projects
should be changed to
Code
if (Projects && ftd && (ftd->GetKind() == FileTreeData::ftdkProject)) // Make sure we're looking for projects

Thank you for this great IDE :D

Offline Grom

  • Almost regular
  • **
  • Posts: 206
Re: The 16 March 2007 build is out.
« Reply #3 on: March 16, 2007, 10:31:24 pm »
We can issue a rc10 when you will be on conference :lol:.
gcc+winXP+suse.

Offline nenin

  • Almost regular
  • **
  • Posts: 236
Re: The 16 March 2007 build is out.
« Reply #4 on: March 16, 2007, 10:39:43 pm »
"xterm" bug  under win still alive in cvn3714:
Execution of 'xterm -T 'gdb_bugs01' -e 'LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH "C:\MinGW\projects\gdb_bugs01\gdb_bugs01.exe" ' in 'C:\MinGW\projects\gdb_bugs01' failed.

Offline Xaviou

  • Regular
  • ***
  • Posts: 424
    • X@v's wxStuff
Re: The 16 March 2007 build is out.
« Reply #5 on: March 16, 2007, 10:42:02 pm »
Ubuntu 6.10 Amd64 .deb installer can be found here.
My wxWidgets's stuff : https://wxstuff.xaviou.fr/

Offline nenin

  • Almost regular
  • **
  • Posts: 236
Re: The 16 March 2007 build is out.
« Reply #6 on: March 16, 2007, 10:42:29 pm »
Right clicking the workspace makes Code::Blocks crash.
<***>
Thank you for this great IDE :D
Confirmed on Win2K SP4- c::b hung for few seconds and than crush.

wxLearner

  • Guest
Re: The 16 March 2007 build is out.
« Reply #7 on: March 16, 2007, 10:43:12 pm »
Making console runner run again:

change the console runner name:
Quote from: plugins/compilergcc/compilergcc.cpp
Code: line 100
static const wxString strCONSOLE_RUNNER(platform::windows ? _T("cb_strCONSOLE_RUNNER.exe") : _T("cb_strCONSOLE_RUNNER"));
to
Code
static const wxString strCONSOLE_RUNNER(platform::windows ? _T("cb_console_runner.exe") : _T("cb_console_runner"));

change the if statement:
Quote from: plugins/compilergcc/compilergcc.cpp
Code: line 1670
if(platform::windows)
{
    // for non-win platforms, use m_ConsoleTerm to run the console app
    wxString term = Manager::Get()->GetConfigManager(_T("app"))->Read(_T("/console_terminal"), DEFAULT_CONSOLE_TERM);
    term.Replace(_T("$TITLE"), _T("'") + m_Project->GetTitle() + _T("'"));
    cmd << term << _T(" 'LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH ");
}
to
Code
if(!platform::windows)
{
    // for non-win platforms, use m_ConsoleTerm to run the console app
    wxString term = Manager::Get()->GetConfigManager(_T("app"))->Read(_T("/console_terminal"), DEFAULT_CONSOLE_TERM);
    term.Replace(_T("$TITLE"), _T("'") + m_Project->GetTitle() + _T("'"));
    cmd << term << _T(" 'LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH ");
}
« Last Edit: March 16, 2007, 10:49:28 pm by wxLearner »

Offline RJP Computing

  • Almost regular
  • **
  • Posts: 135
    • RJP Computing
Re: The 16 March 2007 build is out.
« Reply #8 on: March 16, 2007, 11:01:31 pm »
"xterm" bug  under win still alive in cvn3714:
Execution of 'xterm -T 'gdb_bugs01' -e 'LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH "C:\MinGW\projects\gdb_bugs01\gdb_bugs01.exe" ' in 'C:\MinGW\projects\gdb_bugs01' failed.
I can confirm this bug as well on Windows XP.
- Ryan

Ubuntu/WinXP, AMD Athlon 64 3000+, 1000MB RAM, AC 97 Audio, ATI Radeon 9600XT 256MB

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
Re: The 16 March 2007 build is out.
« Reply #9 on: March 17, 2007, 05:09:20 am »
Right clicking the workspace makes Code::Blocks crash.

Quote from: sdk/projectmanager.cpp
Code: line 486
if (Projects && (ftd->GetKind() == FileTreeData::ftdkProject)) // Make sure we're looking for projects
should be changed to
Code
if (Projects && ftd && (ftd->GetKind() == FileTreeData::ftdkProject)) // Make sure we're looking for projects

It may crash if the workspace is empty. :)

Thanks for pointing it out. I've applied the fix.  :)
« Last Edit: March 17, 2007, 08:33:51 am by Biplab »
Be a part of the solution, not a part of the problem.

Offline AmR EiSa

  • Multiple posting newcomer
  • *
  • Posts: 75
Re: The 16 March 2007 build is out.
« Reply #10 on: March 17, 2007, 06:31:49 am »
anther bug if open code file C::B and the other setting is to save log and html file it will give msgbox about it's get the path.
how ide can't get the path and work with the file ?

AmR EiSa

Kaze Youkai

  • Guest
Re: The 16 March 2007 build is out.
« Reply #11 on: March 17, 2007, 06:22:35 pm »
"xterm" bug  under win still alive in cvn3714:
Execution of 'xterm -T 'gdb_bugs01' -e 'LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH "C:\MinGW\projects\gdb_bugs01\gdb_bugs01.exe" ' in 'C:\MinGW\projects\gdb_bugs01' failed.
I can confirm this bug as well on Windows XP.
Same problem for me, under WinXP as well.

-Kaze