Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on November 10, 2013, 06:47:14 pm

Title: The 10 November 2013 build (9446) is out.
Post by: killerbot on November 10, 2013, 06:47:14 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_wx2812_gcc471-TDM.7z

For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://prdownload.berlios.de/codeblocks/mingwm10_gcc471-TDM.7z
And the exception handler dll (for better crash reports) : http://prdownload.berlios.de/codeblocks/exchndl_gcc471-TDM.7z

The 10 November 2013 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20131110_rev9446_win32.7z
  - Linux :
   none

Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 10 November 2013 build (9446) is out.
Post by: dmoore on November 10, 2013, 07:09:57 pm
Ubuntu packages (i386 + AMD64 for Precise through Trusty) will soon be available here (https://code.launchpad.net/~damien-moore/+archive/codeblocks-nightly).

Code
sudo add-apt-repository ppa:damien-moore/codeblocks-nightly
sudo apt-get update
sudo apt-get install codeblocks codeblocks-contrib

Note: If you are using Code::Blocks from Pasgui's repository you will need to uninstall it and disable that repo before adding this one and reinstalling.

Workaround for possible crash related to compiler plugin at start up (if you are migrating from an older version of Code::Blocks):
1. Open terminal, run "codeblocks --safe-mode"
2. Plugins -> Manage Plugins -> Compiler plugin -> Enable, then close the dialog
3. Accept all prompts
4. Close codeblocks
5. Start codeblocks as you normally would and everything should work normally.
Title: Re: The 10 November 2013 build (9446) is out.
Post by: dmoore on November 10, 2013, 07:11:39 pm
Nice to see the new feature in rev. 9446  ;D
Title: Re: The 10 November 2013 build (9446) is out.
Post by: Xaviou on November 11, 2013, 09:38:09 pm
Hi to all.

As wxWidgets is about to be released to v3.0.0, isn't-it time to update CB's scripted wizard ?
See here : http://forums.codeblocks.org/index.php/topic,18460.0.html

Regards

Xav'
Title: Re: The 10 November 2013 build (9446) is out.
Post by: Alpha on November 12, 2013, 04:07:23 am
Nice to see the new feature in rev. 9446  ;D
Yeah; I thought it probably time :).

As wxWidgets is about to be released to v3.0.0, isn't-it time to update CB's scripted wizard ?
See here : http://forums.codeblocks.org/index.php/topic,18460.0.html
I think we should.  My opinion is to re-brand the current 2.9.x (SVN) as 3.0.x (and fix up the appropriate references within, of course).
Title: Re: The 10 November 2013 build (9446) is out.
Post by: Xaviou on November 12, 2013, 09:45:51 pm
As wxWidgets is about to be released to v3.0.0, isn't-it time to update CB's scripted wizard ?
See here : http://forums.codeblocks.org/index.php/topic,18460.0.html
I think we should.  My opinion is to re-brand the current 2.9.x (SVN) as 3.0.x (and fix up the appropriate references within, of course).
You're right : 2.9.x (SVN) makes no more sense since the official 3.0 has been release.

Regards
Xav'
Title: Re: The 10 November 2013 build (9446) is out.
Post by: killerbot on November 12, 2013, 10:15:04 pm
I think indeed we can start replacing all those 2.9 by 3.0 and next step is see how well we can build a CB with it ;-) or a regular wx test project.
Step by step.
Title: Re: The 10 November 2013 build (9446) is out.
Post by: Jenna on November 12, 2013, 10:48:10 pm
C::B builds fine with wx3.0 (I did it on linux and windows with wxtrunk aka 3.0 rc?).
Almost everything works, but it is still not as stable as with wx2.8 .
Title: Re: The 10 November 2013 build (9446) is out.
Post by: ToApolytoXaos on November 12, 2013, 11:03:08 pm
I think indeed we can start replacing all those 2.9 by 3.0 and next step is see how well we can build a CB with it ;-) or a regular wx test project.
Step by step.

And the GUI wizard too that shows versions 2.6, 2.8, and 2.9.x; Oh, I almost forgot! The C::B workspace 3.0 shows 2.9 in it.
Title: Re: The 10 November 2013 build (9446) is out.
Post by: xawari on November 13, 2013, 08:25:36 am
Awesome!

wx30 release will be a new year surprise :)
Title: Re: The 10 November 2013 build (9446) is out.
Post by: stahta01 on November 15, 2013, 06:08:49 pm
The Global Variable built-in lflags does NOT get saved; this is the first time I ever used lflags GV.
Problem likely existed for a long time.

Patch to fix.

Code
Index: src/sdk/uservarmanager.cpp
===================================================================
--- src/sdk/uservarmanager.cpp (revision 9452)
+++ src/sdk/uservarmanager.cpp (working copy)
@@ -62,7 +62,7 @@
     _T("cflags"),
     _T("lflags")
 };
-const wxArrayString builtinMembers((size_t) 6, bim);
+const wxArrayString builtinMembers((size_t) 7, bim);
 
 class UsrGlblMgrEditDialog : public wxScrollingDialog
 {

Tim S.
Title: Re: The 10 November 2013 build (9446) is out.
Post by: oBFusCATed on November 15, 2013, 09:03:16 pm
In svn, thanks.