Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on August 28, 2006, 08:18:37 pm

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


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 28 august 2006 build is out.
Post by: Vampyre_Dark 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
Title: Re: The 28 august 2006 build is out.
Post by: mandrav 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 ;)
Title: Re: The 28 august 2006 build is out.
Post by: Vampyre_Dark on August 28, 2006, 08:51:59 pm
(http://img.photobucket.com/albums/v227/Vampyre_Dark/smileys/wave1.gif)(http://img.photobucket.com/albums/v227/Vampyre_Dark/smileys/bowdown.gif)(http://img.photobucket.com/albums/v227/Vampyre_Dark/smileys/wave1.gif)
Title: Re: The 28 august 2006 build is out.
Post by: Kreso 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!
Title: Re: The 28 august 2006 build is out.
Post by: sethjackson on August 28, 2006, 10:08:06 pm
Windows ANSI build is here (http://rapidshare.de/files/31105140/output.7z.html).
Title: Re: The 28 august 2006 build is out.
Post by: oz on August 29, 2006, 09:32:03 am
long time nerver been here, it seems some significant improvements recently. Thanks.
Title: Re: The 28 august 2006 build is out.
Post by: Phoenix 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*
Title: Re: The 28 august 2006 build is out.
Post by: Sagrer 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