Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on March 23, 2006, 11:48:40 pm

Title: The 23 march 2006 build is out.
Post by: killerbot on March 23, 2006, 11:48:40 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://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 23 March 2006 build is out.
  - Windows : http://download.berlios.de/codeblocks/CB_20060323_rev2236_win32.7z
  - Linux :
         http://download.berlios.de/codeblocks/CB_20060323_rev2236_ubuntu.deb
         http://download.berlios.de/codeblocks/CB_20060323_rev2236_fc4.rpm
Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 23 march 2006 build is out.
Post by: wvdakker on March 24, 2006, 08:16:32 am
Perhaps stupid question and a little bit off-topic...
Is this snapshot already build with 2.6.3 of wxWidgets? Because one of the bugs is
a toolbar problem, which may been fixed in the new version of wxWidgets.
Can't see any differences yet...
Title: Re: The 23 march 2006 build is out.
Post by: killerbot on March 24, 2006, 08:41:35 am
nope still 2.6.2, once 2.6.3 (official release) is out, I provide some builds like that, so we can have quick feedback.
Title: Re: The 23 march 2006 build is out.
Post by: skirby on March 24, 2006, 10:34:27 am
Hello,

This build still have a problem when you open an old project and if the option "Show Spash screen at startup" option is enabled.
The DDE problem seems having disapeared (good) but another one has taken the place.
Please, follow these two examples and you will see you I mean.

You can find my project here : http://www.badongo.com/file/350291

1./ With "Show Spash screen at startup" option disabled
Doucle click on the cbp file. As you can see on screnshots, I have two message boxes opened (you have to move the top one).
(http://img88.imageshack.us/img88/2826/img16pe.th.jpg) (http://img88.imageshack.us/my.php?image=img16pe.jpg)

Close the topmost one. You should have this
(http://img240.imageshack.us/img240/2672/img23fu.th.jpg) (http://img240.imageshack.us/my.php?image=img23fu.jpg)

Now Close all message boxes. C::B has the same project opened two times
(http://img92.imageshack.us/img92/4141/img32vi.th.jpg) (http://img92.imageshack.us/my.php?image=img32vi.jpg)


2./ With "Show Spash screen at startup" option enabled
(http://img20.imageshack.us/img20/5705/img42as.th.jpg) (http://img20.imageshack.us/my.php?image=img42as.jpg)

If you close all message boxes, you should have this
(http://img96.imageshack.us/img96/5246/img58vr.th.jpg) (http://img96.imageshack.us/my.php?image=img58vr.jpg)

And C::B enter in a infinite loop  :(

Hope you could fix it.

Thanks and have a nice day.
Title: Re: The 23 march 2006 build is out.
Post by: phlox81 on March 24, 2006, 10:48:59 am
Hm, yes, nasty bug when you click on a cbp file, which hasn't the newest format.
But when starting CB normally, or opening a project which is up-to-date, its not happening.
you even can open then older projectversions.
Title: Re: The 23 march 2006 build is out.
Post by: skirby on March 24, 2006, 10:52:43 am
Hello phlox81,

You are right but it not user friendly.

Otherwise, there is exactly the same problem with DevCPP project
(http://img91.imageshack.us/img91/4324/errordevcpp2ny.th.jpg) (http://img91.imageshack.us/my.php?image=errordevcpp2ny.jpg)

You can download my project file here in order to reproduce the problem: http://www.badongo.com/file/350410
Title: Re: The 23 march 2006 build is out.
Post by: Ceniza on March 24, 2006, 04:07:13 pm
I still suggest moving to the latest cbSplashScreen and be sure to do it like in the wxWidgets example.
Title: Re: The 23 march 2006 build is out.
Post by: yop on March 25, 2006, 05:04:43 pm
  • some include fixes
You got a little typo in this one
Code: diff
Index: src/sdk/projectmanager.cpp
===================================================================
--- src/sdk/projectmanager.cpp  (revision 2256)
+++ src/sdk/projectmanager.cpp  (working copy)
@@ -46,7 +46,7 @@
     #include "xtra_classes.h"
     #include <wx/dir.h>
     #include "globals.h"
-       #include "cbexecption.h"  // for cbassert
+       #include "cbexception.h"  // for cbassert
 #endif

 #include <wx/utils.h>
Title: Re: The 23 march 2006 build is out.
Post by: killerbot on March 25, 2006, 05:27:16 pm
  • some include fixes
You got a little typo in this one
Code: diff
Index: src/sdk/projectmanager.cpp
===================================================================
--- src/sdk/projectmanager.cpp  (revision 2256)
+++ src/sdk/projectmanager.cpp  (working copy)
@@ -46,7 +46,7 @@
     #include "xtra_classes.h"
     #include <wx/dir.h>
     #include "globals.h"
-       #include "cbexecption.h"  // for cbassert
+       #include "cbexception.h"  // for cbassert
 #endif

 #include <wx/utils.h>


fixed, thanks.