Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on March 18, 2008, 09:15:56 pm

Title: The 18 March 2008 build (4966) is out.
Post by: killerbot on March 18, 2008, 09:15:56 pm
Get quick announcements through the RSS feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml

Before you use a nightly make sure you understand how it works (http://forums.codeblocks.org/index.php/topic,3232.0.html).

A link to the unicode windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw28u_gcc_cb_wx287.7z

For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://prdownload.berlios.de/codeblocks/mingwm10_gcc421.7z

The 18 March 2008 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20080318_rev4966_win32.7z
  - Linux :
   none

Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 18 March 2008 build (4966) is out.
Post by: Jenna on March 18, 2008, 11:36:22 pm
A source-tarball and binaries for debian (32- and 64-bit) can be downloaded from my server (see signature).
There are also precompiled packages with wxWidgets cross-compile libraries available.

Last week I moved my server from home-dsl to a (more or less) real server.
Download should be much faster now.
Title: Re: The 18 March 2008 build (4966) is out.
Post by: Loaden on March 19, 2008, 04:04:33 am
Code-Completion not work! when i use WTL (http://wtl.sourceforge.net) or ATL project.
example:
CString str;
when i type 'str.', it not show the function of CString.
Title: Re: The 18 March 2008 build (4966) is out.
Post by: dronT78 on March 19, 2008, 06:24:55 am
http://www.codeblocks.org/nightly/CodeBlock_RSS.xml
RSS is broken again.
Title: Re: The 18 March 2008 build (4966) is out.
Post by: killerbot on March 19, 2008, 07:41:58 am
http://www.codeblocks.org/nightly/CodeBlock_RSS.xml
RSS is broken again.
is still broken ;-) (server change ...)
Title: Re: The 18 March 2008 build (4966) is out.
Post by: Xaviou on March 19, 2008, 09:30:11 am
Ubuntu 6.10 & 7.04 Amd64 tar.gz archive (containing '.deb' installers builds with wx284) can be found here (http://www.esnips.com/web/CodeBlocks).
Title: Re: The 18 March 2008 build (4966) is out.
Post by: BrianSidebotham on March 20, 2008, 03:05:37 pm
Quote
Fixed: Wrong command line option in AVR wizard

What command line option is wrong?
Title: Re: The 18 March 2008 build (4966) is out.
Post by: Jenna on March 20, 2008, 03:11:03 pm
Quote
Fixed: Wrong command line option in AVR wizard

What command line option is wrong?

Look here (http://forums.codeblocks.org/index.php/topic,7029.msg59844.html#msg59844)
Title: Re: The 18 March 2008 build (4966) is out.
Post by: pasgui on March 21, 2008, 10:43:08 am
Build for Ubuntu i386/amd64 can be found here (http://lgp203.free.fr/spip/spip.php?article1)

Regards, pasgui
Title: Re: The 18 March 2008 build (4966) is out.
Post by: Grom on March 22, 2008, 07:53:10 pm
Would be grate to have automatic doxygen comments generation in new class plugin.
Title: Re: The 18 March 2008 build (4966) is out.
Post by: Gerome on March 23, 2008, 02:46:52 pm
Hello,

The function list does not seem to work also, it's empty :(
I'm under Win XP with latest C::B installed completely + 18th of March update file.
Thanks a lot.
Title: Re: The 18 March 2008 build (4966) is out.
Post by: PsYhLo on March 24, 2008, 07:11:46 am
i found one bug i thing so

so everyone type in english alphabet but with cyrillic ones too
when i start to type some text in my native language (Bulgarian) and when i press Backspace to delete some mismatched chars and try to type again nothing happen no chars appear on screen
when i switch to eng and after that back to BG i start to type again this is kind of annoying

my editor is configed for UTF-8
svn 4966


PS
sorry for my english hope you understand my problem
Title: Re: The 18 March 2008 build (4966) is out.
Post by: MortenMacFly on March 24, 2008, 07:13:36 am
Would be grate to have automatic doxygen comments generation in new class plugin.
Indeed, I thought about that, too already. Would be pretty easy to realise though.
Title: Re: The 18 March 2008 build (4966) is out.
Post by: stahta01 on March 24, 2008, 10:13:55 pm
Change Needed to Compile under Windows without Pre-Compiled Headers (PCH).

The header compilerfactory.h needs added.

May patch adds compilerfactory.h and re-orders the headers so it uses CB_PRECOMP macro.

Tim S

Code
Index: src/plugins/compilergcc/compilerICC.cpp
===================================================================
--- src/plugins/compilergcc/compilerICC.cpp (revision 4970)
+++ src/plugins/compilergcc/compilerICC.cpp (working copy)
@@ -8,16 +8,21 @@
  */
 
 #include <sdk.h>
-#include <prep.h>
-#include "compilerICC.h"
-#include <wx/intl.h>
-#include <wx/regex.h>
+#ifndef CB_PRECOMP
+    #include <wx/intl.h>
+    #include <wx/msgdlg.h>
+    #include <wx/regex.h>
+   
+    #include <compilerfactory.h>
+    #include <logmanager.h>
+    #include <manager.h>
+#endif  // CB_PRECOMP
+
 #include <wx/config.h>
 #include <wx/fileconf.h>
-#include <wx/msgdlg.h>
-#include "manager.h"
-#include "logmanager.h"
 
+#include "compilerICC.h"
+
 CompilerICC::CompilerICC()
     : Compiler(_("Intel C/C++ Compiler"), _T("icc"))
 {

Title: Re: The 18 March 2008 build (4966) is out.
Post by: killerbot on March 24, 2008, 10:49:47 pm
applied
Title: Re: The 18 March 2008 build (4966) is out.
Post by: Seronis on March 25, 2008, 04:20:08 pm
Bug Found on  8.02 Vista release (mingw prepackaged)

After creating a project and setting up some compiler and linker paths and adding a few libs, when choosing to  "Save project as user-template" and then creating a new project using that template,  the compiler toolbar is disabled.  Going to the build menu and choosing 'build' works and after doing so the compiler toolbar is active again.
Title: Re: The 18 March 2008 build (4966) is out.
Post by: zxpyld3x on March 29, 2008, 12:44:02 pm
Don't down CB_20080318_rev4966_win32.7z
Title: Re: The 18 March 2008 build (4966) is out.
Post by: Jenna on March 29, 2008, 01:23:02 pm
Don't down CB_20080318_rev4966_win32.7z

:? What do you want to say? :?
Title: Re: The 18 March 2008 build (4966) is out.
Post by: PsYhLo on March 29, 2008, 08:45:34 pm
i found one bug i thing so

so everyone type in english alphabet but with cyrillic ones too
when i start to type some text in my native language (Bulgarian) and when i press Backspace to delete some mismatched chars and try to type again nothing happen no chars appear on screen
when i switch to eng and after that back to BG i start to type again this is kind of annoying

my editor is configed for UTF-8
svn 4966


PS
sorry for my english hope you understand my problem

any one just
someone can confirm that? this is realy nasty bug
Title: Re: The 18 March 2008 build (4966) is out.
Post by: zortich on March 29, 2008, 09:39:11 pm
Yes I can confirm thise bug.
It hapense then I switch to russian language.
Title: Re: The 18 March 2008 build (4966) is out.
Post by: zxpyld3x on March 30, 2008, 03:28:22 am
Download slow
http://download.berlios.de/codeblocks/CB_20080318_rev4966_win32.7z
Title: Re: The 18 March 2008 build (4966) is out.
Post by: oz on March 30, 2008, 10:53:24 am
Is this a newer version than 8.02 release?
Title: Re: The 18 March 2008 build (4966) is out.
Post by: killerbot on March 30, 2008, 11:05:03 am
yes it is, contains fixes and minor functionality extensions. But it is a nightly build, means snapshot build of our code ...
Title: Re: The 18 March 2008 build (4966) is out.
Post by: kurapix on March 30, 2008, 11:46:19 am
Found a bug :
When creating a new project, C::B doesn't check for the characters in the name, meaning when we have something like  : "A_project_for_me&others", the creation will work but it won't compile : it will search for a directory named something like "A_project_for_me" (it cuts when it "sees" the character '&').
Further searching and testing is needed (I don't know if there is only the '&' character which does that).

An annoying behavior :
When you open a project with globals variables that you didn't define then there is the global variable windows which popup infinitely ... making the program unusable (have to kill C::B then).

Kurapix