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)
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
Right clicking the workspace makes Code::Blocks crash.
Quote from: sdk/projectmanager.cppif (Projects && (ftd->GetKind() == FileTreeData::ftdkProject)) // Make sure we're looking for projects
should be changed to
if (Projects && ftd && (ftd->GetKind() == FileTreeData::ftdkProject)) // Make sure we're looking for projectsThank you for this great IDE :D
We can issue a rc10 when you will be on conference :lol:.
"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.
Ubuntu 6.10 Amd64 .deb installer can be found here (http://www.esnips.com/web/CodeBlocks).
Quote from: wxLearner on March 16, 2007, 10:13: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.
Making console runner run again:
change the console runner name:
Quote from: plugins/compilergcc/compilergcc.cppstatic const wxString strCONSOLE_RUNNER(platform::windows ? _T("cb_strCONSOLE_RUNNER.exe") : _T("cb_strCONSOLE_RUNNER"));
to
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.cppif(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
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 ");
}
Quote from: nenin 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.
I can confirm this bug as well on Windows XP.
Quote from: wxLearner on March 16, 2007, 10:13:29 PM
Right clicking the workspace makes Code::Blocks crash.
Quote from: sdk/projectmanager.cppif (Projects && (ftd->GetKind() == FileTreeData::ftdkProject)) // Make sure we're looking for projects
should be changed to
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. :)
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
Quote from: RJP Computing on March 16, 2007, 11:01:31 PM
Quote from: nenin 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.
I can confirm this bug as well on Windows XP.
Same problem for me, under WinXP as well.-Kaze