User forums > Nightly builds
The 21 September 2008 build (5208) is out.
killerbot:
Get quick announcements through the RSS feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml
Before you use a nightly make sure you understand how it works.
A link to the unicode windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw28u_gcc_cb_wx288.7z
For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://prdownload.berlios.de/codeblocks/mingwm10_gcc421.7z
The 21 September 2008 build is out.
- Windows :
http://prdownload.berlios.de/codeblocks/CB_20080921_rev5208_win32.7z
- Linux :
none
Resolved Fixed:
* wxSmith: added "SetSashPosition" to generated code to make the appropriate parameter work
* projects_importer (MSVC6): Add support for importing post build commands
* DragScroll 1.3.23 2008/08/29
- Fixed: font sizes increasing across sessions in OnMouseWheelEvent.
- Save/restore users ctrl-MouseWheel font changes across sessions.
- Fixed: crash caused by failure in CleanUpWindowPointerArray()
- Changed option label "MouseWheelZoom" to "Log MouseWheelZoom" to avoid confusion; even though it applies to other tree and list controls
* fixed update-script for linux, previous version seems to be incompatible with some shells
* wxSmith: added "SetSashPosition" to generated code only if wxSplitWindow has two children (update for r5196)
* fixed an issue that leads to a crash on linux, if the last watch was removed from "Debug -> Edit watches" dialog
* Fixed: Project Importer menu location at File menu was hard-coded. (It's a cosmetic fix and fixing two separators after Import Project menu item bug in latest nightlies)
Regressions/Confirmed/Annoying/Common bugs:
* toolbar-images-not-changing-state (is a wx problem/Win XP problem)
stahta01:
More ANSI Warnings patch are on the way.
I plan to submit the patches for the contrib plugins to BerliOS.
Do you wish me also submit this one for debuggergdb plug-in?
I decided to also submit debuggergdb one to BerliOS.
Minor patch that fixes compiler error. GetModuleFileNameA complains about WCHAR*
--- Code: ---Index: src/plugins/contrib/codesnippets/codesnippetsapp.cpp
===================================================================
--- src/plugins/contrib/codesnippets/codesnippetsapp.cpp (revision 5208)
+++ src/plugins/contrib/codesnippets/codesnippetsapp.cpp (working copy)
@@ -1269,7 +1269,7 @@
#if defined(__WXMSW__)
if( m_Prefix.IsEmpty() )
do{
- WCHAR dllPath[1024] = {0};
+ wxChar dllPath[1024] = {0};
HMODULE dllHandle = LoadLibrary(_T("codeblocks.dll"));
if (not dllHandle) break;
DWORD pathLen = GetModuleFileName( dllHandle, dllPath, sizeof(dllPath));
--- End code ---
Tim S
Jenna:
Just uploaded binary packages for debian and sources to my server.
courage:
--- Quote from: killerbot on September 21, 2008, 08:07:53 pm ---
* projects_importer (MSVC6): Add support for importing post build commands
--- End quote ---
Thanks, I am waiting for this so long. :D
But I found this built also can't handle the importing correctly. First, it seems not to handle the dependence of VC6 projects correctly in the workspace, and second it seems not to handle the post commands correctly.
for example, compiling nethack3.4.3, after executing the "nethack-3.4.3/sys/winnt/nhsetup.bat", copying the modified "rpcndr.h" and importing VC6 workspace in "nethack-3.4.3/nethack.dsw", the dependence of VC6 projects is ignored in Code::Blocks. When I press the "Rebuild workspace" button, Code::Blocks will build the active project first or the first order project in the workspace.
Even though Code::Blocks imports the post build commands, it seems just importing the lines one by one. I guess the "TAB character" of the post build commands in VC6 project files mean "new line", but I am not very sure. :?
stahta01:
killerbot:
Whoever applied my patch above had an case issue; it should be wxChar not the wxCHAR that was used.
Tim S
Navigation
[0] Message Index
[#] Next page
Go to full version