Author Topic: The 10 July 2006 build is out.  (Read 27549 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
The 10 July 2006 build is out.
« on: July 10, 2006, 06:59:27 pm »
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://download.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.7z

For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://download.berlios.de/codeblocks/mingwm10.7z

For support of ansi builds, a link to the ansi windows wxWidget dll (2.6.2) for Code::Blocks : http://download.berlios.de/codeblocks/wxmsw26_gcc_cb.7z

The 10 July 2006 build is out.
  - Windows : http://download.berlios.de/codeblocks/CB_20060710_rev2729_win32.7z
  - Linux :
         http://download.berlios.de/codeblocks/CB_20060710_rev2729_Ubuntu6.06.deb (not this time)
         http://download.berlios.de/codeblocks/CB_20060710_rev2729_fc4+5.rpm


Resolved Fixed:

  • Removed AddLanguagePage() from wizards and replaced it with AddGenericSingleChoiceList().
  • Added OnGetNextPage and OnGetPrevPage script events for wizard pages
  • Autotools' "make install" now installs the SDK headers.
  • Fixed a couple of broken Makefile.am
  • Changed autorevision executable to not break standalone builds (i.e. not svn working copies)
  • help plug-in : You can add URLs as help files now
  • help plug-in : Wrote a meaningful description for the plugin
  • fixed broken automake build (removed reference to languagepanel)
  • Fixed broken OnLeave() wizard scripts event (accidental commenting of code since yesterday)
  • Updated Ogre wizard script to work with pre-made SDK or source distribution. Still needs checking under linux
  • Updated Ogre wizard script to work with pre-made SDK or source distribution. Still needs checking under linux
  • bug fix : Close all Projects menu entry
  • Fixed broken src/plugins/projectwizard/Makefile.am
  • Added some TODO entries
  • wxSmith : Changed order of identifier enumeration in generated code (identifiers are not sorted now)
  • wxSmith : Disabling wizard dialog after clicking "OK"

Regressions/Confirmed/Annoying/Common bugs:

  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)
  • there are several issues with Code Completion (is being redesigned : work in progress)
  • menu items with icon not correctly aligned (since wx263)

« Last Edit: July 10, 2006, 10:41:31 pm by killerbot »

Offline Ceniza

  • Developer
  • Lives here!
  • *****
  • Posts: 1441
    • CenizaSOFT
Re: The 10 July 2006 build is out.
« Reply #1 on: July 10, 2006, 07:27:13 pm »
Did you forget to add the help plugin changes or you just didn't update it in this build?

MB

  • Guest
Re: The 10 July 2006 build is out.
« Reply #2 on: July 10, 2006, 07:48:24 pm »
A problem with one of the links:

Too many clients for /codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.7z

Not sure if this is really a "Too many clients" problem or some other problem?

Excellent work by the way! :)
« Last Edit: July 10, 2006, 07:50:45 pm by MB »

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 10 July 2006 build is out.
« Reply #3 on: July 10, 2006, 07:56:06 pm »
A problem with one of the links:

Too many clients for /codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.7z

Not sure if this is really a "Too many clients" problem or some other problem?

See this little white text box on the upper right part of the page with a button titled "Search"? Type your keywords there and then press the button...
Be patient!
This bug will be fixed soon...

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 10 July 2006 build is out.
« Reply #4 on: July 10, 2006, 08:36:12 pm »
Did you forget to add the help plugin changes or you just didn't update it in this build?

fixed, dunno how, but somethings went missing :-(

PDEE

  • Guest
Re: The 10 July 2006 build is out.
« Reply #5 on: July 10, 2006, 08:44:14 pm »
Just downloaded tonights nightly and tried to start a new C++ file by using the new file wizard and i get this:

SquirrelFunction<>call failed
AN ERROR HAS OCCURED [the index 'AddLanguagePage' does not exist]

CALLSTACK
*FUNCTION[BeginWizard()]C:\Codeblocks/share/codeblocks/templates/wizard/c_file/wizard.script line[23]

LOCALS
[intro_msg]INSTANCE
[this] TABLE

What did i do wrong? I can't start a new file.

Thanks
PDEE

Sorry forgot to mention, using windows xp sp2
« Last Edit: July 10, 2006, 08:45:46 pm by PDEE »

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 10 July 2006 build is out.
« Reply #6 on: July 10, 2006, 08:59:13 pm »
SquirrelFunction<>call failed
AN ERROR HAS OCCURED [the index 'AddLanguagePage' does not exist]

CALLSTACK
*FUNCTION[BeginWizard()]C:\Codeblocks/share/codeblocks/templates/wizard/c_file/wizard.script line[23]

OK, for others having the same problem, here's what you need to do to fix this:

Inside the "New..." dialog, right-click on the wizard that's giving you problems and select "Edit this wizard's script". When the script opens in an editor find the line that says
Code
Wizard.AddLanguagePage(_T("C;C++"), 1);


and replace it with
Code
Wizard.AddGenericSingleChoiceListPage(_T("LanguagePage"), _T("Please select language for the source file."), _T("C;C++"), 1);

Be patient!
This bug will be fixed soon...

PDEE

  • Guest
Re: The 10 July 2006 build is out.
« Reply #7 on: July 10, 2006, 10:39:26 pm »
Sorry to bother you guys again, i know your busy. It's just that i got another one of those errors when i start a new C++ file:

SquirrelFunction<> call failed
AN ERROR HAS OCCURED [the index 'GetLanguageIndex' does not exist]

CALLSTACK
*FUNCTION[On_LeavePage()]C:Codeblocks/share/codeblocks/templates/wizard/c_file/wizard.script line [31]

LOCALS
[fwd]true
[this]TABLE

Thought i would tell so you can fix it.
Thanks

PDEE

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 10 July 2006 build is out.
« Reply #8 on: July 10, 2006, 10:41:40 pm »
SquirrelFunction<> call failed
AN ERROR HAS OCCURED [the index 'GetLanguageIndex' does not exist]

Change
Code
Wizard.GetLanguageIndex();

to
Code
Wizard.GetListboxSelection(_T("lstSelection"));
Be patient!
This bug will be fixed soon...

alberto.rubinato

  • Guest
Re: The 10 July 2006 build is out.
« Reply #9 on: July 11, 2006, 12:07:51 am »
Hi,

I've encountered a problem with Ogre project wizard. I'm using SVN version of Code::Blocks ( version 2729 )and this is the first time I'm tryng to compile an Ogre application with Code::Blocks IDE. When comes linker stage, an error occours. I'm reporting it to you:

Compiling: main.cpp
Linking console executable: c:\OgreSDK\bin\Debug\prova.exe
C:\CodeBlocks\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: cannot find -lstlportstlg.5.0.dll
collect2: ld returned 1 exit status
Process terminated with status 1 (0 minutes, 10 seconds)
1 errors, 0 warnings

If I change the Build properties linking stlportstlg.5.0 ( and not stlportstlg.5.0.dll ) all is okay.

The same thing is for release target.

I hope this can help you in some way.

Alberto Rubinato

Offline oz

  • Multiple posting newcomer
  • *
  • Posts: 47
Re: The 10 July 2006 build is out.
« Reply #10 on: July 11, 2006, 03:32:46 am »
Can not install from RPM, missing libwxscintilla.so.0

Offline TheTuxKeeper

  • Regular
  • ***
  • Posts: 293
  • daniel2000
Re: The 10 July 2006 build is out.
« Reply #11 on: July 11, 2006, 10:48:53 am »
Can not install from RPM, missing libwxscintilla.so.0
Yes, my fault. :(
Use this one instead: http://www.savefile.com/files/7585611 :)
Nightly builds for openSUSE

MB

  • Guest
Re: The 10 July 2006 build is out.
« Reply #12 on: July 11, 2006, 12:02:56 pm »
A problem with one of the links:

Too many clients for /codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.7z

Not sure if this is really a "Too many clients" problem or some other problem?

See this little white text box on the upper right part of the page with a button titled "Search"? Type your keywords there and then press the button...

Thank you for introducing me and other forum members to the wonders of the Search field and button. Even though I am sure that the operational semantics of “Search” is already well understood by most members of this forum 8)

Now…I would like to download wxmsw26u_gcc_cb_wx2.6.3p2.7z but the link doesn’t work. And searching for it and the “too many clients” bug doesn’t help either.

Any (useful) help would be appreciated :)

Offline artoj

  • Almost regular
  • **
  • Posts: 206
  • Location: Supporting my team
    • http://ajonsson.kapsi.fi/

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 10 July 2006 build is out.
« Reply #14 on: July 11, 2006, 12:14:52 pm »
don't shoot me ;-) , search again please, I know in other posts a 'secondary download location" has been specified.

[EDIT] or read the post above, typing at the same moment ...