Author Topic: The 28 august 2006 build is out.  (Read 10407 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
The 28 august 2006 build is out.
« on: August 28, 2006, 08:18:37 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://prdownload.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://prdownload.berlios.de/codeblocks/mingwm10.7z

For support of ansi builds, a link to the ansi windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw26_gcc_cb_wx2.6.3p2.7z

The 28 August 2006 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20060828_rev2918_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20060828_rev2918_Ubuntu6.06.deb
         http://prdownload.berlios.de/codeblocks/CB_20060828_rev2918_fc4+5.rpm


Resolved Fixed:

  • Fixed small bug with preprocessor directives handling in code-completion's parser.
    - Did I mention the huge speedup of the parser in the last couple commits? Parsing time has been cut down by about 50%
  • Fixed excessive redraws of the symbols browser
  • Fixed code-completion parsing of template-based types of variables/functions
  • Fixed crash handler saving to wrong path (one level above)
  • Added "project symbols" view filter in symbols browser
  • Do not try to build the projects tree if the app is shutting down (rare but possible crash)

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: August 29, 2006, 08:31:49 am by killerbot »

Offline Vampyre_Dark

  • Regular
  • ***
  • Posts: 255
  • Hello!
    • Somewhere Over The Rainbow...
Re: The 28 august 2006 build is out.
« Reply #1 on: August 28, 2006, 08:36:14 pm »
Added "project symbols" view filter in symbols browser

Who do I have to thank for this?  :D :) :( :o
C::B Wishlist
~BOYCOTT THE EVIL YELLOW BOXES~

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 28 august 2006 build is out.
« Reply #2 on: August 28, 2006, 08:40:52 pm »
Added "project symbols" view filter in symbols browser

Who do I have to thank for this?  :D :) :( :o

Seems like you have to change part of your sig now ;)
Be patient!
This bug will be fixed soon...

Offline Vampyre_Dark

  • Regular
  • ***
  • Posts: 255
  • Hello!
    • Somewhere Over The Rainbow...
Re: The 28 august 2006 build is out.
« Reply #3 on: August 28, 2006, 08:51:59 pm »
C::B Wishlist
~BOYCOTT THE EVIL YELLOW BOXES~

Kreso

  • Guest
Re: The 28 august 2006 build is out.
« Reply #4 on: August 28, 2006, 09:05:54 pm »

- Did I mention the huge speedup of the parser in the last couple commits? Parsing time has been cut down by about 50%[/color][/li][/list]


 :D :D :D :D

Keep it up guys!

sethjackson

  • Guest
Re: The 28 august 2006 build is out.
« Reply #5 on: August 28, 2006, 10:08:06 pm »
Windows ANSI build is here.

Offline oz

  • Multiple posting newcomer
  • *
  • Posts: 47
Re: The 28 august 2006 build is out.
« Reply #6 on: August 29, 2006, 09:32:03 am »
long time nerver been here, it seems some significant improvements recently. Thanks.

Phoenix

  • Guest
Re: The 28 august 2006 build is out.
« Reply #7 on: August 29, 2006, 12:53:33 pm »
Great job with class parser. It is working fine now. There is one small think that I would like to point at. When I create a prototype class in header file and then include class header in source file C::B is not able to “link” my prototype with class body. Here is example (there is no code-completion popup for test->):

main.h
Code
class test;
class main_window
{
public:
main_window();

test *my_class;
};

main.cpp
Code
#include "test.h"

main_window::main_window()
{
my_class = new test();
my_class->my_function();    // no code-completion popup for my_class
}

*EDIT*
Also I have noticed that function arguments are not parsed. For example:

Code
void main_window::read_data(wxInputStream &in)
{
in. // doesn’t show anything
}
*/EDIT*
« Last Edit: August 29, 2006, 03:08:31 pm by Phoenix »

Offline Sagrer

  • Multiple posting newcomer
  • *
  • Posts: 12
Re: The 28 august 2006 build is out.
« Reply #8 on: August 29, 2006, 11:23:02 pm »
"this->" code completion not working again - no any popup, or, in case if i declared namespace in *.h file and used "using" for this namespace in *.cpp file - it shows this namespace's contents (why? it is not members of this-es class.... when i write ClassName:: - there is not anything from that namespace....)

27 august's build all was fine except this bug: http://forums.codeblocks.org/index.php?topic=3911.msg30860#msg30860