User forums > Nightly builds
The 13 April 2009 build (5535) is out.
wagb278:
THANKS Xaviou
Worked like a charm.
While using the new Code::Blocks - I got a notice from the update manager that an update is available for codeblocks-dbg. What should I do with this update - NOT install it? There is no version or date info for the available codeblocks-dbg update (because it's a third party source, presumably).
Thanks again for the quick fix.
pasgui:
--- Quote from: Xaviou on April 17, 2009, 06:27:25 pm ---I've rebuild the packages, so you don't have to revert back to an old version. Just uninstall all Code:Blocks 's packages (via synaptic).
--- End quote ---
I've updated the repository.
Best regards, pasgui
ollydbg:
--- Quote from: mmkider on April 17, 2009, 12:08:22 pm ---
--- Quote from: thomas on April 17, 2009, 11:45:08 am ---
--- Quote from: dk on April 17, 2009, 09:00:01 am ---I've got a crash of Code::Blocks last nightly , when moving toolbars or other windows.
--- End quote ---
Yes, I've seen this happen under Ubuntu (using the official build bundled with Jaunty Jackalope) too, but only when running Code::Blocks on a remote X server. On top of that, Code::Blocks is practically unusable in that environment, as it takes between half a second and two seconds before a mouse click is realized (1000 MBit network with about 3 meters total cable length). It takes about 20 seconds just to start up, as well.
The same copy of Code::Blocks started locally on the same machine fires up in little over a second, runs perfectly reliably, and exposes the same perceived speed as the Windows build. All other applications that I'm using work seemingly the same whether run locally or via network (no noticeable difference at all).
Not sure what it is, but I guess wxGTK is having an issue there, somehow the event loop not coping well with network, or whatever...?
--- End quote ---
See my post(Sorry, I lost the password of mmkider :( ), and add one line code.
I always "never" get crash when I drag the toolbar. :lol:
http://wxforum.shadonet.com/viewtopic.php?t=23624&highlight=bug+wxmsw
--- End quote ---
Thank you very much!
I changed the code in AUI as you mentioned, and rebuilt wxmsw28u_gcc_custom.dll.
After that, the "drag toolbar" problems disappeared! :D
geiermeier:
I'm experiencing the toolbar-drag crashes with the current nightly and the library versions given in the opening post under XP SP3.
mmkider:
--- Quote from: geiermeier on April 20, 2009, 09:01:46 am ---I'm experiencing the toolbar-drag crashes with the current nightly and the library versions given in the opening post under XP SP3.
--- End quote ---
Download this wxmsw2.8.10 with my patch.
http://mmkider.googlepages.com/wxmsw28u_gcc_cb_wx2810.7z
--- Code: ---void wxAuiManager::OnFloatingPaneMoveStart(wxWindow* wnd)
{
// try to find the pane
wxAuiPaneInfo& pane = GetPane(wnd);
wxASSERT_MSG(pane.IsOk(), wxT("Pane window not found"));
//patch there.
if(!pane.frame)
return;
if (m_flags & wxAUI_MGR_TRANSPARENT_DRAG)
pane.frame->SetTransparent(150);
}
--- End code ---
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version