Author Topic: The 26 November 2008 build (5322) is out.  (Read 85593 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
The 26 November 2008 build (5322) is out.
« on: November 27, 2008, 06:26:06 pm »
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_wx289.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 26 November 2008 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20081126_rev5322_win32.7z
  - Linux :
   none

Resolved Fixed:

  • Editor: partially applied patch #2116: in wrap mode put cursor with Home/end key at current wrap point
  • * fixed some layout issues:
    - text now fits inside editorconfiguration-dialog (again?) General Settings -> Other options,
    - in compilerconfiguration-dialog toolchain-tab is shown correctly (also fixes that buttons sometimes have been cut off in Build options) both happened mainly on linux,
    - toolbars with standard-controls are now (always) shown correctly with wxWidgets2.8.9 on windows,
    - enabled firefox 2 style for notebooks
  • fixed "file save" and "file save all" 16x16 toolbar images not disabling (wrong color depth of the images)

Regressions/Confirmed/Annoying/Common bugs:

  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)


Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: The 26 November 2008 build (5322) is out.
« Reply #1 on: November 27, 2008, 06:44:19 pm »
I just uploaded the nightlies (r5323) for debian to my server (see signature).

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5910
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: The 26 November 2008 build (5322) is out.
« Reply #2 on: November 28, 2008, 05:30:09 am »
Thanks, I will check it and see whether it will crash when dragging toolbars.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5910
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: The 26 November 2008 build (5322) is out.
« Reply #3 on: November 28, 2008, 05:35:57 am »
I'm sorry , it will still crash in my system, when I drag the toolbar.
I'm using windows XP. and this SVN version.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

Offline youlix

  • Single posting newcomer
  • *
  • Posts: 4
Re: The 26 November 2008 build (5322) is out.
« Reply #4 on: November 28, 2008, 07:42:30 am »
I'm using windows 2003. it will crash too,when I drag down the first toolbar.other toolbar is oK.

Offline mmkider

  • Almost regular
  • **
  • Posts: 150
Re: The 26 November 2008 build (5322) is out.
« Reply #5 on: November 28, 2008, 08:19:27 am »
I'm using windows 2003. it will crash too,when I drag down the first toolbar.other toolbar is oK.


using this
http://prdownload.berlios.de/codeblocks/wxmsw28u_gcc_cb_wx288.7z

this is problem for wx2.8.9.


Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: The 26 November 2008 build (5322) is out.
« Reply #6 on: November 28, 2008, 12:29:20 pm »
I'm sorry , it will still crash in my system, when I drag the toolbar.
I'm using windows XP. and this SVN version.

I'm using windows 2003. it will crash too,when I drag down the first toolbar.other toolbar is oK.


I'm using windows 2003. it will crash too,when I drag down the first toolbar.other toolbar is oK.


using this
http://prdownload.berlios.de/codeblocks/wxmsw28u_gcc_cb_wx288.7z

this is problem for wx2.8.9.



This seems to be a known wxWidgets-bug. I just found this ticket: http://trac.wxwidgets.org/ticket/10170 , but there is no answer to the bug-report until now.

I tried to make it crash on any of my two xp-systems, but it works as it should.

Does the crash happen always, or only if the system is under (more or less) heavy load ?

Offline mmkider

  • Almost regular
  • **
  • Posts: 150
Re: The 26 November 2008 build (5322) is out.
« Reply #7 on: November 28, 2008, 01:37:19 pm »
I'm sorry , it will still crash in my system, when I drag the toolbar.
I'm using windows XP. and this SVN version.

I'm using windows 2003. it will crash too,when I drag down the first toolbar.other toolbar is oK.


I'm using windows 2003. it will crash too,when I drag down the first toolbar.other toolbar is oK.


using this
http://prdownload.berlios.de/codeblocks/wxmsw28u_gcc_cb_wx288.7z

this is problem for wx2.8.9.



This seems to be a known wxWidgets-bug. I just found this ticket: http://trac.wxwidgets.org/ticket/10170 , but there is no answer to the bug-report until now.

I tried to make it crash on any of my two xp-systems, but it works as it should.

Does the crash happen always, or only if the system is under (more or less) heavy load ?


It's ready crash.
I always get this crash on the computer of my home with xp system,but works  on  my other computer with xp system.
Code
void wxAuiManager::OnFloatingPaneMoveStart(wxWindow* wnd)
{
    // try to find the pane
    wxAuiPaneInfo& pane = GetPane(wnd);
    wxASSERT_MSG(pane.IsOk(), wxT("Pane window not found"));

    if (m_flags & wxAUI_MGR_TRANSPARENT_DRAG)
        pane.frame->SetTransparent(150);
}


pane.frame->SetTransparent(150);<=In here crash .

but it's same code between wx2.8.8 and wx2.8.9.


« Last Edit: November 28, 2008, 01:52:09 pm by mmkider »

Offline XayC

  • Multiple posting newcomer
  • *
  • Posts: 94
Re: The 26 November 2008 build (5322) is out.
« Reply #8 on: November 28, 2008, 02:32:55 pm »
This is the same crash i was experiencing with the 18 October build, at that time i was the only one having it probably, because it passed quite unnoticed.

This is the post: toolbar drag crash.

As stated there this crash:
1) Always happens, but only for some people/computers.
2) It's caused by a change committed between between 2.8.8 release and 2.8.9 release.
3) Using the old 2.8.8 wxWidgets library will work, at least until a new wxWidgets release.

XayC

mariocup

  • Guest
Re: The 26 November 2008 build (5322) is out.
« Reply #9 on: November 28, 2008, 02:57:43 pm »
Hi jens,

I had a similar strange behavior under windows vista. If I use rdesktop from linux and then move a toolbar in CB (windows instance) from the rdesktop then CB will crash. If I do the same thing without rdesktop under vista everything works fine. Since it is reproducable I can send you the log.

By,

Mario

Offline vix

  • Multiple posting newcomer
  • *
  • Posts: 60
Re: The 26 November 2008 build (5322) is out.
« Reply #10 on: November 28, 2008, 03:15:46 pm »
With this Nightly Build the 'Save' 16x16 icon disappears when I press the 'Save All' icon

vix

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5910
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: The 26 November 2008 build (5322) is out.
« Reply #11 on: November 28, 2008, 04:25:19 pm »
It always happen in my computer. Not relate to the "CPU load".
But use the 2.8.8 version of DLL can solve the problem.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: The 26 November 2008 build (5322) is out.
« Reply #12 on: November 28, 2008, 10:02:28 pm »
With this Nightly Build the 'Save' 16x16 icon disappears when I press the 'Save All' icon
Of course it does. When you "save all" it does what it says: It saves all files. Thus there is nothing to save anymore so the save icon is disabled (greyed). In fact it was disabled before, too but just not greyed due to a wrong image format. So this is not a bug but 100% correct behaviour.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline Wahooney

  • Multiple posting newcomer
  • *
  • Posts: 34
  • Demon Onion Slayer
    • wahooney.net
Re: The 26 November 2008 build (5322) is out.
« Reply #13 on: November 29, 2008, 03:51:53 pm »
I've attached an updated squirrel lexer file that includes the 'const' and 'enum' keywords introduced in squirrel 2.2+

Could this be included in the next release, please.

Thanks.

<cough splutter='1'>php selection parsing bug</cough>

[attachment deleted by admin]
Fabricati Diem, Celerata!

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: The 26 November 2008 build (5322) is out.
« Reply #14 on: November 29, 2008, 04:04:26 pm »
I've attached an updated squirrel lexer file that includes the 'const' and 'enum' keywords introduced in squirrel 2.2+
I get an "archive is broken" error. Mind trying again with a ZIP, please?
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ