Author Topic: The 08 June 2006 build is out.  (Read 11913 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
The 08 June 2006 build is out.
« 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:

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

« Last Edit: June 09, 2006, 01:44:20 pm by killerbot »

Offline skirby

  • Almost regular
  • **
  • Posts: 137
Re: The 08 June 2006 build is out.
« Reply #1 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:


After:


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.
« Last Edit: June 09, 2006, 05:54:11 pm by skirby »

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 08 June 2006 build is out.
« Reply #2 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 ;-)

Phoenix

  • Guest
Re: The 08 June 2006 build is out.
« Reply #3 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;

Offline sergi

  • Single posting newcomer
  • *
  • Posts: 4
Re: The 08 June 2006 build is out.
« Reply #4 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?

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 08 June 2006 build is out.
« Reply #5 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

Offline sergi

  • Single posting newcomer
  • *
  • Posts: 4
Re: The 08 June 2006 build is out.
« Reply #6 on: June 09, 2006, 04:46:49 pm »
Great. Thanks!

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2775
Re: The 08 June 2006 build is out.
« Reply #7 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

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 08 June 2006 build is out.
« Reply #8 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 ...

sethjackson

  • Guest
Re: The 08 June 2006 build is out.
« Reply #9 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. :)

Offline PsYhLo

  • Almost regular
  • **
  • Posts: 157
Re: The 08 June 2006 build is out.
« Reply #10 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

Offline byo

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 837
Re: The 08 June 2006 build is out.
« Reply #11 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

Phoenix

  • Guest
Re: The 08 June 2006 build is out.
« Reply #12 on: June 12, 2006, 10:39:39 am »
Sorry, I will next time. Thanks.