Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on July 10, 2006, 06:59:27 pm

Title: The 10 July 2006 build is out.
Post by: killerbot 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:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 10 July 2006 build is out.
Post by: Ceniza 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?
Title: Re: The 10 July 2006 build is out.
Post by: MB 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! :)
Title: Re: The 10 July 2006 build is out.
Post by: mandrav 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...
Title: Re: The 10 July 2006 build is out.
Post by: killerbot 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 :-(
Title: Re: The 10 July 2006 build is out.
Post by: PDEE 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
Title: Re: The 10 July 2006 build is out.
Post by: mandrav 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);

Title: Re: The 10 July 2006 build is out.
Post by: PDEE 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
Title: Re: The 10 July 2006 build is out.
Post by: mandrav 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"));
Title: Re: The 10 July 2006 build is out.
Post by: alberto.rubinato 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
Title: Re: The 10 July 2006 build is out.
Post by: oz on July 11, 2006, 03:32:46 am
Can not install from RPM, missing libwxscintilla.so.0
Title: Re: The 10 July 2006 build is out.
Post by: TheTuxKeeper 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 :)
Title: Re: The 10 July 2006 build is out.
Post by: MB 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 :)
Title: Re: The 10 July 2006 build is out.
Post by: artoj on July 11, 2006, 12:14:38 pm
http://prdownload.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.7z (http://prdownload.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.7z)
Title: Re: The 10 July 2006 build is out.
Post by: killerbot 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 ...
Title: Re: The 10 July 2006 build is out.
Post by: MB on July 11, 2006, 12:29:43 pm
http://prdownload.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.7z (http://prdownload.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.7z)

Thank you! The 2nd download location works :)
Title: Re: The 10 July 2006 build is out.
Post by: MB 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.
Title: Re: The 10 July 2006 build is out.
Post by: mandrav 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
Title: Re: The 10 July 2006 build is out.
Post by: artoj 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 (http://developer.berlios.de/feature/?func=detailfeature&feature_id=2294&group_id=5358)? I also think that it would be great it the rss feed would include the commits. :)
Title: Re: The 10 July 2006 build is out.
Post by: MB 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)
Title: Re: The 10 July 2006 build is out.
Post by: mandrav 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:

/me 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...
Title: Re: The 10 July 2006 build is out.
Post by: Pecan 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..."

Title: Re: The 10 July 2006 build is out.
Post by: MB 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 (http://developer.berlios.de/feature/?func=detailfeature&feature_id=2294&group_id=5358)? I also think that it would be great it the rss feed would include the commits. :)
Title: Re: The 10 July 2006 build is out.
Post by: vesselin_peev 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.
Title: Re: The 10 July 2006 build is out.
Post by: mandrav 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 :)
Title: Re: The 10 July 2006 build is out.
Post by: MB 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! :)
Title: Re: The 10 July 2006 build is out.
Post by: vesselin_peev 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.
Title: Re: The 10 July 2006 build is out.
Post by: killerbot 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 (http://developer.berlios.de/feature/?func=detailfeature&feature_id=2294&group_id=5358)? 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 ;-)