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.next.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:
- we can not use mozilla's debug-stuff; undef DEBUG in mozilla's nsDebug.h, in case we configure with --enable-debug; fixes issue described here: http://forums.next.codeblocks.org/index.php/topic,18528.msg126866.html#msg126866
- CC: fix bug ##19186, http://developer.berlios.de/bugs/?func=detailbug&bug_id=19186&group_id=5358, when a file was re-parsed, the Token name for the unnamed struct always changed, this is because we use a global counter for all the unnamed struct/enum. Solution: let these counters file related, which means each file have its own counter staring from zero, and the Token name has a file index prefix like __UnnamedStruct70, where 7 is refer to a file index, the 0 donates the unnamed struct counter. Also, the counter is started from 0, it was 1 before. Reparse does not change the file index, so we will not produce garbage token names.
- autotools: change configure-script, so "--with-contrib-plugins=<list>" accepts "yes" and "no" as equivalent for "all" and "none"; so default "--with-contrib-plugins" and "--without-contrib-plugins" can be used. Fixes #19156 .
- CC: Fix merged Token names bug introduced in rev9438 by adding a underscore between the file index and unnamed class/struct/enum Token index. See discussion in http://forums.next.codeblocks.org/index.php/topic,18542.0.html.
- compiler: add registry based autodetection of TDM-GCC
Regressions/Confirmed/Annoying/Common bugs:
Ubuntu packages (i386 + AMD64 for Precise through Trusty) will soon be available here (https://code.launchpad.net/~damien-moore/+archive/codeblocks-nightly).
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.
Nice to see the new feature in rev. 9446 ;D
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.next.codeblocks.org/index.php/topic,18460.0.html
Regards
Xav'
Quote from: dmoore on November 10, 2013, 07:11:39 PM
Nice to see the new feature in rev. 9446 ;D
Yeah; I thought it probably time :).
Quote from: Xaviou on November 11, 2013, 09:38:09 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.next.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).
Quote from: Alpha on November 12, 2013, 04:07:23 AM
Quote from: Xaviou on November 11, 2013, 09:38:09 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.next.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'
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.
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 .
Quote from: 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.
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.
Awesome!
wx30 release will be a new year surprise :)
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.
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.
In svn, thanks.