Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on June 09, 2006, 12:11:07 am

Title: The 08 June 2006 build is out.
Post by: killerbot on June 09, 2006, 12:11:07 am
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.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

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.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 for Code::Blocks : http://download.berlios.de/codeblocks/wxmsw26_gcc_cb.7z

The 08 June 2006 build is out.
  - Windows : http://download.berlios.de/codeblocks/CB_20060608_rev2539_win32.7z
  - Linux :
         http://download.berlios.de/codeblocks/CB_20060608_rev2539_Ubuntu6.06.deb (not yet)
         http://download.berlios.de/codeblocks/CB_20060608_rev2539_fc4+5.rpm


Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 08 June 2006 build is out.
Post by: skirby on June 09, 2006, 10:07:30 am
Thanks for this new build.

I have found a small bug with Comment / Uncomment functionality.
Please, have a look to these screenshot
Before:
(http://img85.imageshack.us/img85/4845/commentbug16om.png) (http://imageshack.us)

After:
(http://img122.imageshack.us/img122/6679/commentbug23yd.png) (http://imageshack.us)

Here is my piece of code in order you to reproduce this bug.
Code
#include <stdio.h>

//////////////////////
int main()
{
// printf ("le résultat sera tronqué si il est décimal") ;
  return 0;
}
//////////////////////

It seems that problem is due to accented character.
If you remove é or è there is no more problem.

I hope you could fix it.
Thanks and have a nice day.
Title: Re: The 08 June 2006 build is out.
Post by: killerbot on June 09, 2006, 10:18:32 am
thx for the feedback, we already came across a similar problem, when a line contained a unicode character (double byte ). Narrowed it down already in the source -> upto a wxscintilla call, not fixed yet, needs some more investigation, but working on it ;-)
Title: Re: The 08 June 2006 build is out.
Post by: Phoenix on June 09, 2006, 12:57:09 pm
Hello,

I was just wondering if there is any possibility to add support for control arrays in wxSmith. For example I have created TaggleButton[16] array but each time I'm openning project it is still creating 16 TaggleButton controls.

I want to have:

      wxToggleButton* TBcamera[16];

and C::B is "correcting" it to:

      wxToggleButton* TBcamera;
      wxToggleButton* ToggleButton1;
      wxToggleButton* ToggleButton2;
      wxToggleButton* ToggleButton3;
      wxToggleButton* ToggleButton4;
      wxToggleButton* ToggleButton5;
      wxToggleButton* ToggleButton6;
      wxToggleButton* ToggleButton7;
      wxToggleButton* ToggleButton8;
      wxToggleButton* ToggleButton9;
      wxToggleButton* ToggleButton10;
      wxToggleButton* ToggleButton11;
      wxToggleButton* ToggleButton12;
      wxToggleButton* ToggleButton13;
      wxToggleButton* ToggleButton14;
      wxToggleButton* ToggleButton15;
Title: Re: The 08 June 2006 build is out.
Post by: sergi on June 09, 2006, 04:28:50 pm
I've just downloaded this build. I wanted to change the code completion plugin's settings, but couldn't find the right menu to do it. In the official release the menu was "Settings->Plugin's settings->Code completion". In this nightly build I just can't find it. Could you please help?
Title: Re: The 08 June 2006 build is out.
Post by: killerbot on June 09, 2006, 04:33:24 pm
Settings->Editor settings : in the left pane : Code completion and symbol browser (the plug-in needs to be active for this to show up).

Activate/deactivate plug-in : Plugins-> Manage plugins
Title: Re: The 08 June 2006 build is out.
Post by: sergi on June 09, 2006, 04:46:49 pm
Great. Thanks!
Title: Re: The 08 June 2006 build is out.
Post by: Pecan on June 09, 2006, 06:36:31 pm
Quote from: Killerbot
Killerbot
Moderator
Lives here!
*****
Posts: 1150
   
Important changes to the nightly builds
« on: Today at 10:40:40 AM »
   

1) wxWidgets 2.6.3  (09 June 2006)
From this date on the windows nightly builds will depend/based upon wxWidgets 2.6.3pl2. Therefor you will need to download a newer version of the wx dll : link provided in the announcement of the nightly build.


Does this have any significance to SVN? Or the to-be-released RC3?

If SVN and RC3 is on wxWidgets 2.6.2, how are the devs gonna confidently shoot bugs for the nightly users?

Just asking...

thanks
pecan
Title: Re: The 08 June 2006 build is out.
Post by: killerbot on June 09, 2006, 07:49:13 pm
since we already have made a few wx263 builds, were little or no bugs were discovered, we will try to have RC3 being based upon wx263 ...
Title: Re: The 08 June 2006 build is out.
Post by: sethjackson on June 09, 2006, 07:56:49 pm
since we already have made a few wx263 builds, were little or no bugs were discovered, we will try to have RC3 being based upon wx263 ...

w00t  8)

C::B is working just fine for me with 2.6.3. :)
Title: Re: The 08 June 2006 build is out.
Post by: PsYhLo on June 09, 2006, 08:08:11 pm
from 2 months i use SVN builds with wx2.6.3
it's work fine for me with one bug when closeing codeblocks after i compile big workspace Code::Blocks crash
Title: Re: The 08 June 2006 build is out.
Post by: byo on June 09, 2006, 11:17:52 pm
Hello,

I was just wondering if there is any possibility to add support for control arrays in wxSmith. For example I have created TaggleButton[16] array but each time I'm openning project it is still creating 16 TaggleButton controls.

Nice Idea, I like that. But it will have to wait for some time. Surely won't be released in 1.0 but 1.5 should be able to use this :). Please send feature request at berlios.de so it would be easier to forget ;) I don't want to loose this feature :D
Title: Re: The 08 June 2006 build is out.
Post by: Phoenix on June 12, 2006, 10:39:39 am
Sorry, I will next time. Thanks.