Author Topic: The 10 July 2006 build is out.  (Read 27516 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 ...

MB

  • Guest

MB

  • Guest
Re: The 10 July 2006 build is out.
« Reply #16 on: July 11, 2006, 12:32:09 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 ...

No worries :) and thanks for the help.

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 10 July 2006 build is out.
« Reply #17 on: July 11, 2006, 12:34:21 pm »
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)

Apparently not...

Any (useful) help would be appreciated :)

“Give a man a fish; you have fed him for today. Teach a man to fish; and you have fed him for a lifetime”—Author unknown
« Last Edit: July 11, 2006, 12:37:20 pm by mandrav »
Be patient!
This bug will be fixed soon...

Offline artoj

  • Almost regular
  • **
  • Posts: 206
  • Location: Supporting my team
    • http://ajonsson.kapsi.fi/
Re: The 10 July 2006 build is out.
« Reply #18 on: July 11, 2006, 12:37:22 pm »
@killerbot

Any chances that you could replace the links in the nightly posts with the general one (which provides mirrors)?

Also, have you seen this? I also think that it would be great it the rss feed would include the commits. :)

MB

  • Guest
Re: The 10 July 2006 build is out.
« Reply #19 on: July 11, 2006, 12:52:21 pm »
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)

Apparently not...

Any (useful) help would be appreciated :)

“Give a man a fish; you have fed him for today. Teach a man to fish; and you have fed him for a lifetime”—Author unknown

LOL! Let me give you a quote then:

"To start blindly with a statement is a sign of arrogance and narrow-mindedness, and will lead to conflict. To start blindly with a question is a sign of uncertainty and honesty, and will lead to wisdom." 8)

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 10 July 2006 build is out.
« Reply #20 on: July 11, 2006, 01:27:34 pm »
LOL! Let me give you a quote then:

"To start blindly with a statement is a sign of arrogance and narrow-mindedness, and will lead to conflict. To start blindly with a question is a sign of uncertainty and honesty, and will lead to wisdom." 8)

Let me see if I get this straight:

  • You come here with a question that has been asked and answered before,
  • I tell you to use the forum search,
  • You reply ironically to my reply,
  • I give you a quote why my post was actually useful, and
  • You call me arrogant and narrow-minded?  :?:
* mandrav is left speechless...

I 'll just be your kind host (for now).
But don't fool yourself that such behaviour will be tolerated in the future...
Be patient!
This bug will be fixed soon...

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2775
Re: The 10 July 2006 build is out.
« Reply #21 on: July 11, 2006, 01:38:52 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...

Another quote from blind arrogance, abuse, and cynicism

 "if the foo shits..."

« Last Edit: July 11, 2006, 01:43:46 pm by Pecan »

MB

  • Guest
Re: The 10 July 2006 build is out.
« Reply #22 on: July 11, 2006, 02:38:09 pm »
Let's focus on solving the problem. The link doesn't work because it doesn't point to where the mirrors are. So it is a very simple problem to fix as artoj points out:

@killerbot

Any chances that you could replace the links in the nightly posts with the general one (which provides mirrors)?

Also, have you seen this? I also think that it would be great it the rss feed would include the commits. :)

vesselin_peev

  • Guest
Re: The 10 July 2006 build is out.
« Reply #23 on: July 11, 2006, 02:52:20 pm »
Mandrav, I notice that your first reply to MB,

Quote from: Mandrav
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..."

reads as patronizing, even if you hadn't intended it to be so. No ones likes to be patronized. All the more, MB posed the question normally, and kindly added that CodeBlocks is a great work. To MB: from my experience as a forum administrator elsewhere, I can tell you that most people don't search before asking. So, please understand Mandrav's reaction. You shouldn't have replied with sarcasm to him.

I couldn't help but post this, as I think this forum is visited by educated people.

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 10 July 2006 build is out.
« Reply #24 on: July 11, 2006, 03:15:06 pm »
Mandrav, I notice that your first reply to MB,

Quote from: Mandrav
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..."

reads as patronizing, even if you hadn't intended it to be so. No ones likes to be patronized. All the more, MB posed the question normally, and kindly added that CodeBlocks is a great work.

It wasn't intended as patronizing. No such intention from my part.
Anyway, move on people :)
Be patient!
This bug will be fixed soon...

MB

  • Guest
Re: The 10 July 2006 build is out.
« Reply #25 on: July 11, 2006, 03:40:05 pm »
Mandrav, I notice that your first reply to MB,

Quote from: Mandrav
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..."

reads as patronizing, even if you hadn't intended it to be so. No ones likes to be patronized. All the more, MB posed the question normally, and kindly added that CodeBlocks is a great work. To MB: from my experience as a forum administrator elsewhere, I can tell you that most people don't search before asking. So, please understand Mandrav's reaction. You shouldn't have replied with sarcasm to him.

I couldn't help but post this, as I think this forum is visited by educated people.

I am also a forum administrator elsewhere and do understand why it sometimes can be tempting to be (lets say) less than problem focused when replying :)

But I also do believe that if a person thinks it is fair to patronize other people then that person should accept that sometimes he/she will be patronized right back :)

But anyway…let’s move on and not waste any more time on this. I for one won’t post any more about this. Time to code! :)

vesselin_peev

  • Guest
Re: The 10 July 2006 build is out.
« Reply #26 on: July 11, 2006, 07:09:26 pm »
Quote from: MB
But I also do believe that if a person thinks it is fair to patronize other people then that person should accept that sometimes he/she will be patronized right back :)

Of course, you are right about this, but it is also true that patronising (and sarcasm) are bad regardless of why they are used. So, a sensible man will not use them even if he is their aim.
« Last Edit: July 11, 2006, 07:11:39 pm by vesselin_peev »

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 10 July 2006 build is out.
« Reply #27 on: July 11, 2006, 08:03:44 pm »
@killerbot

Any chances that you could replace the links in the nightly posts with the general one (which provides mirrors)?

Also, have you seen this? I also think that it would be great it the rss feed would include the commits. :)

I didn't know there were other links that provided mirrors  :oops:

Second part, will see, first I need to automate things a bit further. Though I am not so found of the idea. Rss feeds should be small, it's main purpose is just to let you know there's news and provide you with a quick lint to the news, so you don't needs to reload that website page all the time. Just like the firefox guys do it.
The commit posts can be very long on some productive days ;-)