Author Topic: The 11 November 2008 build (5309) is out.  (Read 65907 times)

Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
Re: The 11 November 2008 build (5309) is out.
« Reply #15 on: November 16, 2008, 11:36:37 am »
let's help-plugin support execute help.
Code
D:\ycdeng\qpcb\codeblocks\src\plugins\contrib\help_plugin\help_plugin.cpp
line: 612
add:
    if (ext.CmpNoCase(_T("exe")) == 0)
  {
      helpfile += _T(" ") + keyword;
      wxExecute(helpfile);
      return;
  }

Could you tell me: how to advise C::B team apply this patch?
Thanks!
« Last Edit: November 16, 2008, 11:38:17 am by Loaden »

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: The 11 November 2008 build (5309) is out.
« Reply #16 on: November 16, 2008, 01:11:39 pm »
let's help-plugin support execute help.
Code
D:\ycdeng\qpcb\codeblocks\src\plugins\contrib\help_plugin\help_plugin.cpp
line: 612
add:
    if (ext.CmpNoCase(_T("exe")) == 0)
  {
      helpfile += _T(" ") + keyword;
      wxExecute(helpfile);
      return;
  }

Could you tell me: how to advise C::B team apply this patch?
Thanks!

If I understand correctly, you want an executable be specified as helpfile and want to execute it with the keyword as argument.

You can do this already:
  • goto "Settings -> Environment -> Help Files"
  • Click "Add" and name your new help entry.
  • Choose "Yes" when prompted to browse for a help file.
  • Browse for the executable.
  • Add " $(keyword)" to the end of path.
  • Check the boxes for "This is the default help file (shortcut: F1)" (optionally) and "This line represents a full command to be executed" (needed)
  • Click "Ok"

Partly taken from the wiki (http://wiki.codeblocks.org/index.php?title=Using_devhelp_as_a_help_viewer) and slightly modified.

Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
Re: The 11 November 2008 build (5309) is out.
« Reply #17 on: November 16, 2008, 04:38:44 pm »
If I understand correctly, you want an executable be specified as helpfile and want to execute it with the keyword as argument.
This is my hope to do. thanks!

Offline webbesen

  • Single posting newcomer
  • *
  • Posts: 3
Re: The 11 November 2008 build (5309) is out.
« Reply #18 on: November 17, 2008, 10:05:28 pm »
Nightly 11. Nov. 2008 on WinXP:

C/C++ syntax highlighting seems to be semi-broken.
It works on my .p files but not on my .inc files (embedded development using the PAWN compiler) even when I set the filemask to include these type of files.
It works in CB rel. 8.02.

Does anyone have any good ideas why I can't get this to work in the Nightly build?

I really want that fix to block paste so keeping rel. 8.02 is not really an option.

Thanks in advance.
Webbesen
Fast, cheap, quality. Pick two!

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: The 11 November 2008 build (5309) is out.
« Reply #19 on: November 17, 2008, 11:06:18 pm »
Nightly 11. Nov. 2008 on WinXP:

C/C++ syntax highlighting seems to be semi-broken.
It works on my .p files but not on my .inc files (embedded development using the PAWN compiler) even when I set the filemask to include these type of files.
It works in CB rel. 8.02.

Does anyone have any good ideas why I can't get this to work in the Nightly build?

I really want that fix to block paste so keeping rel. 8.02 is not really an option.

Thanks in advance.
Webbesen
Is there no highlighting at all, or is the highlighting incorrect.

I don't know the pawn-language, but I downloaded some source-lines of a pawn tutorial and had no problems with highlighting, after adding "*.p" and "*.inc" to the c/c++ filemask.

What happens, if you chose the highlighting mode from "Edit -> Highlight mode" ?
If you open this submenu you can see which highlight mode is actually in use for the file and chose another one.
Maybe you have an entry for "*.inc" in another languages filemask (it's used for pascal on my system), that is tested before the c/c++ filemask.

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: The 11 November 2008 build (5309) is out.
« Reply #20 on: November 18, 2008, 07:16:51 am »
Maybe you have an entry for "*.inc" in another languages filemask (it's used for pascal on my system), that is tested before the c/c++ filemask.
.inc is one of the worst file extensions I know. It's used in many programming languages, including fortran XXX, pascal and others. Try to look through all file masks if there is *.inc applied somewhere else as Jens suggested and remove it. You may want to remove it from the lexer file as well then... for a "safer" feeling. ;-) This is most likely it.
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 sigzegv

  • Single posting newcomer
  • *
  • Posts: 4
Re: The 11 November 2008 build (5309) is out.
« Reply #21 on: November 18, 2008, 11:45:57 am »
Hello

I have compiled linux version, warnings are reported as errors in build log, but this generates binaries as well. ( I've not set -Werror flags, I think it's an output error ).
Is this a known issue ?
« Last Edit: November 18, 2008, 01:57:58 pm by sigzegv »

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: The 11 November 2008 build (5309) is out.
« Reply #22 on: November 18, 2008, 12:36:27 pm »
Hello

I have compiled linux version, warnings are reported as errors in build log, but this generates binaries as well. ( I've not set -Werror flags, I think it's an output error ).
Is this a know issue ?


I guess you use either a localized gcc or gcc4.3.

Is that right ?

If it's the first, than read here: http://forums.codeblocks.org/index.php/topic,9489.msg67120.html#msg67120.

Offline sigzegv

  • Single posting newcomer
  • *
  • Posts: 4
Re: The 11 November 2008 build (5309) is out.
« Reply #23 on: November 18, 2008, 04:21:14 pm »
Thnx Jens that was exactly my problem  :D

( excuse me to have not searched in forum first.... )

Offline webbesen

  • Single posting newcomer
  • *
  • Posts: 3
Re: The 11 November 2008 build (5309) is out.
« Reply #24 on: November 18, 2008, 09:52:40 pm »
Maybe you have an entry for "*.inc" in another languages filemask (it's used for pascal on my system), that is tested before the c/c++ filemask.

Thanks Jens and Morten Macfly.
Of course this was it. I must have been temporarily in sain since I did not think of that!
But hey - at the end of the day I am just a HW engineer now also doing some SW with a very nice and flexible editor :-)
And yes it was the Pascal highlighting shadowing my addition to the C/C++ file mask.

You may want to remove it from the lexer file as well then... for a "safer" feeling. ;-) This is most likely it.

Excuse my CB newbee questions but I suppose I do that by removing the *.inc part from the line: filemasks="*.pas,*.inc"> in the file lexer_pascal.xml (and any other lexer_xyz.xml file with *.inc in the file mask). Correct?

Thanks again. I really appreciate your help.
Now I just need to figure how to re-compile dmoores ShellExtensions plugin to run with the nightly (binary is complaining about SDK mismatch => plugin not loaded) and I will be back on track with an updated version of my new toy CB.
Fast, cheap, quality. Pick two!

Offline nanyu

  • Almost regular
  • **
  • Posts: 188
  • nanyu
Re: The 11 November 2008 build (5309) is out.
« Reply #25 on: November 19, 2008, 05:11:56 am »

Quote
Resolved Fixed:

    * Help plugin: Fix: Search for "&Help", not "Help" (causes problems with translations)

BUT it bring a new bug about the Help plugin, like:

http://forums.codeblocks.org/index.php?action=dlattach;topic=9524.0;attach=2870;image

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: The 11 November 2008 build (5309) is out.
« Reply #26 on: November 19, 2008, 11:33:21 am »
Excuse my CB newbee questions but I suppose I do that by removing the *.inc part from the line: filemasks="*.pas,*.inc"> in the file lexer_pascal.xml (and any other lexer_xyz.xml file with *.inc in the file mask). Correct?
Correct.
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 mmkider

  • Almost regular
  • **
  • Posts: 150
Re: The 11 November 2008 build (5309) is out.
« Reply #27 on: November 19, 2008, 03:21:07 pm »
I move toolbar and get a crash
crash report
Code
-------------------

Error occured on Wednesday, November 19, 2008 at 21:55:54.

D:\codeblock_old123\codeblocks.exe caused an Access Violation at location 6cf0e898 in module D:\codeblock_old123\wxmsw28u_gcc_cb.dll Reading from location 00000000.

Registers:
eax=00000000 ebx=00f24180 ecx=00000002 edx=010c4434 esi=6d2884e8 edi=0022e110
eip=6cf0e898 esp=0022dfcc ebp=0022dfe4 iopl=0         nv up ei pl nz na pe nc
cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00010202

Call stack:
6CF0E898  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CF0E898  _ZN12wxAuiManager23OnFloatingPaneMoveStartEP8wxWindow
6CF21BC1  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CF21BC1  _ZN18wxAuiFloatingFrame11OnMoveStartEv
6CF2210C  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CF2210C  _ZN18wxAuiFloatingFrame11OnMoveEventER11wxMoveEvent
6CCCB14E  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCB14E  _ZN12wxEvtHandler21ProcessEventIfMatchesERK21wxEventTableEntryBasePS_R7wxEvent
6CCCC729  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCC729  _ZN16wxEventHashTable11HandleEventER7wxEventP12wxEvtHandler
6CCCCBEF  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCBEF  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CD1AA37  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD1AA37  _ZN8wxWindow10HandleMoveEii
6CD1D1C1  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD1D1C1  _ZN8wxWindow13MSWWindowProcEjjl
6CD3A587  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD3A587  _ZN7wxFrame13MSWWindowProcEjjl
6CD17592  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD17592  _Z9wxWndProcP6HWND__jjl@16
77D18734  C:\WINDOWS\system32\USER32.dll:77D18734  GetDC
77D18816  C:\WINDOWS\system32\USER32.dll:77D18816  GetDC
77D2C03D  C:\WINDOWS\system32\USER32.dll:77D2C03D  UserLpkPSMTextOut
77D28DD9  C:\WINDOWS\system32\USER32.dll:77D28DD9  DefWindowProcW
5A411AF6  C:\WINDOWS\system32\uxtheme.dll:5A411AF6
5A411B3D  C:\WINDOWS\system32\uxtheme.dll:5A411B3D
77D294ED  C:\WINDOWS\system32\USER32.dll:77D294ED  GetPropW
6CD16433  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD16433  _ZN8wxWindow16MSWDefWindowProcEjjl
6CD1CAE2  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD1CAE2  _ZN8wxWindow13MSWWindowProcEjjl
6CD3A587  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD3A587  _ZN7wxFrame13MSWWindowProcEjjl
6CD17592  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD17592  _Z9wxWndProcP6HWND__jjl@16
77D18734  C:\WINDOWS\system32\USER32.dll:77D18734  GetDC
77D2BDF1  C:\WINDOWS\system32\USER32.dll:77D2BDF1  UserLpkPSMTextOut
77D28EA0  C:\WINDOWS\system32\USER32.dll:77D28EA0  DefWindowProcW
77D2BE3B  C:\WINDOWS\system32\USER32.dll:77D2BE3B  UserLpkPSMTextOut
7C92E453  C:\WINDOWS\system32\ntdll.dll:7C92E453  KiUserCallbackDispatcher
6CD160CF  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD160CF  _ZN8wxWindow18SetWindowStyleFlagEl
6CF22655  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CF22655  _ZN18wxAuiFloatingFrame13SetPaneWindowERK13wxAuiPaneInfo
6CF1623B  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CF1623B  _ZN12wxAuiManager6UpdateEv
6CF19932  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CF19932  _ZN12wxAuiManager8OnMotionER12wxMouseEvent
6CCCB14E  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCB14E  _ZN12wxEvtHandler21ProcessEventIfMatchesERK21wxEventTableEntryBasePS_R7wxEvent
6CCCC729  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCC729  _ZN16wxEventHashTable11HandleEventER7wxEventP12wxEvtHandler
6CCCCBEF  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCBEF  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CCCCB91  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCCCB91  _ZN12wxEvtHandler12ProcessEventER7wxEvent
6CD1B46D  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD1B46D  _ZN8wxWindow16HandleMouseEventEjiij
6CD1B8C4  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD1B8C4  _ZN8wxWindow15HandleMouseMoveEiij
6CD1D211  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD1D211  _ZN8wxWindow13MSWWindowProcEjjl
6CD3A587  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD3A587  _ZN7wxFrame13MSWWindowProcEjjl
6CD17592  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD17592  _Z9wxWndProcP6HWND__jjl@16
77D18734  C:\WINDOWS\system32\USER32.dll:77D18734  GetDC
77D18816  C:\WINDOWS\system32\USER32.dll:77D18816  GetDC
77D189CD  C:\WINDOWS\system32\USER32.dll:77D189CD  GetWindowLongW
77D18A10  C:\WINDOWS\system32\USER32.dll:77D18A10  DispatchMessageW
6CCFCED0  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCFCED0  _ZN11wxEventLoop14ProcessMessageEP6tagMSG
6CCFD1DC  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCFD1DC  _ZN11wxEventLoop8DispatchEv
6CD92EB3  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD92EB3  _ZN17wxEventLoopManual3RunEv
6CD7051B  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CD7051B  _ZN9wxAppBase8MainLoopEv
00403A60  D:\codeblock_old123\codeblocks.exe:00403A60
6CC7729D  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CC7729D  _Z12wxInitializeiPPw
6CCD2EA8  D:\codeblock_old123\wxmsw28u_gcc_cb.dll:6CCD2EA8  _Z7wxEntryP11HINSTANCE__S0_Pci
00405FC8  D:\codeblock_old123\codeblocks.exe:00405FC8
0044F0B8  D:\codeblock_old123\codeblocks.exe:0044F0B8
0040124B  D:\codeblock_old123\codeblocks.exe:0040124B
004012B8  D:\codeblock_old123\codeblocks.exe:004012B8
7C817067  C:\WINDOWS\system32\kernel32.dll:7C817067  RegisterWaitForInputIdle
« Last Edit: November 19, 2008, 04:25:26 pm by mmkider »

Offline dmoore

  • Developer
  • Lives here!
  • *****
  • Posts: 1576
Re: The 11 November 2008 build (5309) is out.
« Reply #28 on: November 19, 2008, 06:52:38 pm »
Now I just need to figure how to re-compile dmoores ShellExtensions plugin to run with the nightly (binary is complaining about SDK mismatch => plugin not loaded) and I will be back on track with an updated version of my new toy CB.

I've rebuilt the ShellExtensions plugin for this nightly: http://developer.berlios.de/project/showfiles.php?group_id=7745&release_id=15437
installation instructions included in the zip file

Updated python plugin binary coming soon

Offline mess-mate

  • Multiple posting newcomer
  • *
  • Posts: 16
Re: The 11 November 2008 build (5309) is out.
« Reply #29 on: November 19, 2008, 09:18:04 pm »
Hi, i've a crash when i click on 'Settings/Environment'. ( version 5309)
This is a part of the report:
Code
<?xml version="1.0" encoding="utf-8"?>
<report version="1.0" kind="exception">
  <system description="Linux 2.6.26-1-686 i686"/>
  <modules>
    <module path="/usr/bin/codeblocks" address="08048000" size="0008d000"/>
.......
.......
<frame level="77" function="g_main_context_dispatch" offset="000001e8"/>
    <frame level="78"/>
    <frame level="79" function="g_main_loop_run" offset="000001d2"/>
    <frame level="80" function="gtk_main" offset="000000b9"/>
    <frame level="81" function="wxEventLoop::Run()" offset="0000005c"/>
    <frame level="82" function="wxAppBase::MainLoop()" offset="0000004e"/>
    <frame level="83" function="wxAppBase::OnRun()" offset="00000021"/>
    <frame level="84" function="wxCreateApp()" offset="00000000" file="/tmp/buildd/codeblocks-8.02svn5309/src/src/app.cpp" line="643"/>
  </stack>
</report>
This occured also with the previous versions.
On debian/Lenny

regards
mess-mate (Linux/Debian)