News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

The 28 December 2010 build (6906) is out.

Started by killerbot, December 28, 2010, 04:57:20 PM

Previous topic - Next topic

killerbot

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.

A link to the unicode windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw28u_gcc_cb_wx2810_gcc451-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_gcc451-TDM.7z

The 28 December 2010 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20101228_rev6906_win32.7z
  - Linux :
   none

Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:




killerbot

SPECIAL NOTE :

Quote
10) all is now build with TDM-GCC 4.5.1 (28 December 2010)
Therefor it is advised to also redownload the mingwm dll and the wx dll. Since these have also been rebuild with the TDM GCC 4.5.1 compiler.


killerbot

be patient, the original post will come online, due to some internal policies it is currently not visible ...

Jenna

Quote from: killerbot on December 28, 2010, 05:02:19 PM
be patient, the original post will come online, due to some internal policies it is currently not visible ...
It's there now, debian nightlies follow this evening.

Jenna

Quote from: jens on December 28, 2010, 05:13:05 PM
Quote from: killerbot on December 28, 2010, 05:02:19 PM
be patient, the original post will come online, due to some internal policies it is currently not visible ...
It's there now, debian nightlies follow this evening.

Debian packages (binaries and sources) for 32-bit and 64-bit systems can be found in my repo.

dk

Has been fixed bug in EditorTweaks when right-click in editor with non-english locale?

emptymind

Why is TODO list  empty. Example of my todo :
// TODO: Add freq update here?

keenblade

#7
C::B svn revision 6906 fails to compile on my gentoo ~amd64 with both wxGTK-2.8.11 and 2.9.1 giving this same error:

cbauibook.cpp: In member function 'void cbAuiNotebook::OnDwellTimerTrigger(wxTimerEvent&)':
cbauibook.cpp:96:9: error: 'wxTheApp' was not declared in this scope
make[3]: *** [cbauibook.lo] Error 1
make[3]: Leaving directory `/var/tmp/portage/dev-util/codeblocks-9999/work/codeblocks-9999/src/sdk'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/var/tmp/portage/dev-util/codeblocks-9999/work/codeblocks-9999/src/sdk'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/dev-util/codeblocks-9999/work/codeblocks-9999/src'
make: *** [all-recursive] Error 1
emake failed

My system: ~amd64, gcc-4.5.2, glibc-2.12.1-r3, wxGTK-2.8.11 and 2.9.1
Anyway it\'s all the same at the end...

Jenna

Quote from: keenblade on January 02, 2011, 12:25:24 PM
C::B svn revision 6906 fails to compile on my gentoo ~amd64 with both wxGTK-2.8.11 and 2.9.1 giving this same error:

Works fine with wx2.8.10 on debian, openSuse and windows.

Nevertheless, it should be fixed in svn r6907.

Pecan

Quote from: emptymind on January 01, 2011, 06:02:35 PM
Why is TODO list  empty. Example of my todo :
// TODO: Add freq update here?


I find that when I enter a new TODO, I have to do a refresh. See if that helps.
You must also choose the appropriate Scope (see Scope button) to see the listing.



keenblade

Quote from: jens on January 02, 2011, 01:31:52 PM
...Nevertheless, it should be fixed in svn r6907.
jens, thanks for fixing. Now, I have another error:

editorbase.cpp: In member function 'virtual void EditorBase::InitFilename(const wxString&)':
editorbase.cpp:92:5: error: 'ProjectsArray' was not declared in this scope
editorbase.cpp:92:20: error: 'projects' was not declared in this scope
editorbase.cpp:92:66: error: invalid use of incomplete type 'struct ProjectManager'
../../src/include/manager.h:26:7: error: forward declaration of 'struct ProjectManager'
make[3]: *** [editorbase.lo] Error 1
make[3]: Leaving directory `/var/tmp/portage/dev-util/codeblocks-9999/work/codeblocks-9999/src/sdk'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/var/tmp/portage/dev-util/codeblocks-9999/work/codeblocks-9999/src/sdk'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/dev-util/codeblocks-9999/work/codeblocks-9999/src'
make: *** [all-recursive] Error 1
emake failed
Anyway it\'s all the same at the end...

oBFusCATed

Quote from: jens on January 02, 2011, 01:31:52 PM
Works fine with wx2.8.10 on debian, openSuse and windows.
Jens, if I remember correctly he is using -disable-pch, that's why it is working for you :)
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

stahta01

#12
Patch needed for NON-PCH Build Under Windows. Tim S.

Index: src/sdk/editorbase.cpp
===================================================================
--- src/sdk/editorbase.cpp (revision 6907)
+++ src/sdk/editorbase.cpp (working copy)
@@ -19,6 +19,7 @@
    #include "editormanager.h"
    #include "pluginmanager.h"
    #include "cbproject.h" // FileTreeData
+    #include "projectmanager.h" // ProjectsArray
    #include <wx/wfstream.h>
#endif




Index: src/plugins/contrib/ThreadSearch/ThreadSearchView.cpp
===================================================================
--- src/plugins/contrib/ThreadSearch/ThreadSearchView.cpp (revision 6907)
+++ src/plugins/contrib/ThreadSearch/ThreadSearchView.cpp (working copy)
@@ -17,6 +17,7 @@
     #include "cbeditor.h"
     #include "configmanager.h"
     #include "editorcolourset.h"
+    #include "logmanager.h"
#endif

#include "cbstyledtextctrl.h"
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

Pecan

#13
Alt-g is showing every file in every project in the workspace. It used to show only the files in the activated workspace.

This is very confusing. If you pick a file from an inactive project, (say version.h), it can take hours to figure out what went wrong.

If this is going to change, it should be made an option or the picker dialog should show which project the file is associated with.


Jenna

Quote from: stahta01 on January 02, 2011, 06:26:09 PM
Patch needed for NON-PCH Build Under Windows. Tim S.

fixed in svn r6908

Thanks Tim !