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 24 June 2007 build is out.

Started by killerbot, June 24, 2007, 05:09:38 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_wx284.7z

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

The 24 June 2007 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20070624_rev4164_win32.7z
  - Linux :
   http://prdownload.berlios.de/codeblocks/CB_20070624_rev4164_Ubuntu6.10+7.04_wx2.8.4.deb (not yet)
   http://prdownload.berlios.de/codeblocks/CB_20070624_rev4164_suse100-102.wx28.i586.rpm (not yet)
   http://prdownload.berlios.de/codeblocks/CB_20070624_rev4164_fc4+5.i586.rpm (not yet)


Resolved Fixed:


  • CodeCompletion's function toolbar speedup. Now it only parses each file only once

Regressions/Confirmed/Annoying/Common bugs:


  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)


Grom

gcc+winXP+suse.

MortenMacFly

Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: [url="https://www.codeblocks.org/docs/main_codeblocks_en.html"]https://www.codeblocks.org/docs/main_codeblocks_en.html[/url]
C::B FAQ: [url="https://wiki.codeblocks.org/index.php?title=FAQ"]https://wiki.codeblocks.org/index.php?title=FAQ[/url]

BCCISProf

It appears to me that the Symbol Tree in the Management Window does not parse the workspace symbols unless you right click and choose re-parse tree. As far as I remember, in previous builds it would do so automatically as soon as a project was loaded.

Windows XP

Morphius Faydal

I'm trying to build a Fedora Core .rpm... I'm building it on FC7 on VMware.. Where can I get wx 2.8.4?

rolandixor

#5
Build your own???

I hope that's a joke...

And how come MortenMacFly is still at large?

Let's catch 'im and beat 'im and take 'im to microsoft, and say "Here he is! He's the guy causing you all the trouble!!!" :P

Good sport, yes...

(I'm not new to the forum, I've been reading this forum for a while, I just never took time to join!)

rickg22

#6
Quote from: rolandixor on June 24, 2007, 11:45:11 PM
Build your own???
I hope that's a joke...
new to the forum, I've been reading this forum for a while, I just never took time to join!)

Yes, it is. The joke is that RC3 is just around the corner, perhaps 2 or 3 weeks away, but it won't be very different than current nightlies, so it's the same if you make your own build, see. Actually it's a bit complicated to make your own C::B build, but after you do it the first time, it becomes quite easy.

rickg22

#7
Quote from: BCCISProf on June 24, 2007, 10:04:45 PM
It appears to me that the Symbol Tree in the Management Window does not parse the workspace symbols unless you right click and choose re-parse tree. As far as I remember, in previous builds it would do so automatically as soon as a project was loaded.

Windows XP

You're right! I'll fix that right away.
Edit: Fixed in my local copy. I'll commit as soon as I verify it won't break anything else.
Edit: Wow, I noticed something. ProjectManager needs to be updated for a special case. I'll keep you posted.
Edit: Fixed in rev 4168. Also cleaned up some code :)

skirby

Hello,

I have an error message box when I click on properties in contextual menu from project tree.


I have attached my test files in order to reproduce this small problem.
It is due to the character × in my comment

I don't know if I have to post it on BerliOS.

[attachment deleted by admin]

normunds

Code completion is not working for me in. I just upgraded from build 3002. It is showing only c++ keywords. "Follow LOCAL" and "Follow GLOBAL includes" are checked in options. Is it bug? (OS WinXP, current build)
[url="//www.valodas.com"]www.valodas.com[/url] - free cross-platform language learning software

dje

Hi !

Quote from: skirby on June 25, 2007, 01:48:29 PM
I have an error message box when I click on properties in contextual menu from project tree.

The same problem has been discussed there
The solution found by tiwag works both on properties and with ThreadSearch plugin.

-   if (file.Open(filename.GetFullPath()))
+   if (file.Open(filename.GetFullPath(),wxConvFile))


I don't know if a bug has been filled.

Dje

rickg22

Quote from: normunds on June 25, 2007, 02:30:00 PM
Code completion is not working for me in. I just upgraded from build 3002. It is showing only c++ keywords. "Follow LOCAL" and "Follow GLOBAL includes" are checked in options. Is it bug? (OS WinXP, current build)

Yes, mea culpa. That's fixed for the next nightly. In the meantime, go to the symbols tab in the left pane, rightclick on the tree, and select "reparse now".

indigo0086

There is still the problem with not parsing classes that are defined after a "using namespace::class" directive.

Xaviou

Ubuntu 6.10 & 7.04 Amd64 .deb installer (build with wx263 and wx284) can be found here.
My wxWidgets's stuff : [url="https://wxstuff.xaviou.fr/"]https://wxstuff.xaviou.fr/[/url]

stahta01

Patch needed to compile CB under windows without PCH.
Tim S



Index: src/sdk/editorcolourset.cpp
===================================================================
--- src/sdk/editorcolourset.cpp (revision 4173)
+++ src/sdk/editorcolourset.cpp (working copy)
@@ -31,6 +31,7 @@
     #include "cbeditor.h"
     #include "configmanager.h"
     #include "messagemanager.h"
+    #include "filemanager.h"
     #include "manager.h"
     #include <wx/log.h>
     #include <wx/dir.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]