News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

The 08 June 2006 build is out.

Started by killerbot, June 09, 2006, 12:11:07 AM

Previous topic - Next topic

killerbot

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:


  • removed some compiler warnings
  • Hopefully fixed all breakpoint syncing issues when adding/removing lines in the editor

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)


skirby

#1
Thanks for this new build.

I have found a small bug with Comment / Uncomment functionality.
Please, have a look to these screenshot
Before:


After:


Here is my piece of code in order you to reproduce this bug.
#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.

killerbot

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 ;-)

Phoenix

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;

sergi

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?

killerbot

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

sergi


Pecan

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

killerbot

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 ...

sethjackson

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

w00t  8)

C::B is working just fine for me with 2.6.3. :)

PsYhLo

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
[url="http://img529.imageshack.us/img529/822/3664286vy.png"]http://img529.imageshack.us/img529/822/3664286vy.png[/url]

byo

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

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

Phoenix

Sorry, I will next time. Thanks.