Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on November 14, 2010, 09:59:34 am

Title: The 14 November 2010 build (6846) is out.
Post by: killerbot on November 14, 2010, 09:59:34 am
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_wx2810_gcc441.7z

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

The 14 November 2010 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20101114_rev6846_win32.7z
  - Linux :
   none

Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 14 November 2010 build (6846) is out.
Post by: Jenna on November 14, 2010, 02:32:10 pm
Debian packages (binaries and sources) for 32-bit and 64-bit systems can be found in my repo (http://apt.jenslody.de/).
Title: Re: The 14 November 2010 build (6846) is out.
Post by: Phenom on November 14, 2010, 08:38:04 pm
Considering the code:

Code
struct GameData
{
    Z_GLC::ZGLDevice        *device;
    Z_GLC::ZTextDrawer2     *text_drawer;
    Z_GLC::ZTextureManager2 *texture_manager;
    Ball_manager            *ball_manager;
    Paddle                  *paddle1, *paddle2;
};

class Game
{
    public:
        Game();
        ~Game();

        Z_GLC::ZGLDevice *get_device const       { return data.device; }
        Ball_manager     *get_ball_manager const { return data.ball_manager; }
        Paddle           *get_paddle1 const      { return data.paddle1; }
        Paddle           *get_paddle2 const      { return data.paddle2; }

    private:
        GameData data;
        int num_balls;
        unsigned texid[2];
};

in symbol list the class member is noted:

Code
 data : GameData**** 

If I place semicolons after each closing brace it works right.

Code
        Z_GLC::ZGLDevice *get_device() const       { return data.device; };        //< note the semicolons here
        Ball_manager     *get_ball_manager const { return data.ball_manager; };
        Paddle           *get_paddle1 const      { return data.paddle1; };
        Paddle           *get_paddle2 const      { return data.paddle2; };

EDIT: Seems I forgot some parenthesis...
Title: Re: The 14 November 2010 build (6846) is out.
Post by: bug1z on November 14, 2010, 09:08:35 pm
Sorry, it will work on х64?
Title: Re: The 14 November 2010 build (6846) is out.
Post by: Folco on November 14, 2010, 09:27:53 pm
The color of the "Background" and "Foreground" buttons in "Settings -> Editor -> Syntax highlighting" is always blank, even if you set an element to various colors. Before, they was colourized in the same color that the current text.

SVN 6845 for Kubuntu 10.10 64b.
Title: Re: The 14 November 2010 build (6846) is out.
Post by: Jenna on November 14, 2010, 10:08:32 pm
No problems here with svn 6850.
Title: Re: The 14 November 2010 build (6846) is out.
Post by: Folco on November 14, 2010, 10:45:48 pm
Still present with svn 6850 (make uninstall + remove ~/.codeblocks).
I don't know why...
Title: Re: The 14 November 2010 build (6846) is out.
Post by: Xaviou on November 14, 2010, 10:58:26 pm
Ubuntu 10.04 Amd64 tar.gz archive (containing '.deb' installers builds with wx2810 from Ubuntu's official repository) can be found  here (http://www.archive-host.com/compteur.php?url=http://codeblocks.archive-host.com/CB_20101114_1005_rev6846_Ubuntu1004_wx2810_amd64tar.gz) (direct link).

".mo" file for french translation can be founded here (http://www.archive-host.com/compteur.php?url=http://codeblocks.archive-host.com/CB_20101114_rev6846_fr.zip) (see below for installation instructions)
Full Win32 French Version (including wxWidgets and MinGW dlls and french ".mo" and ".po" files) can be founded here (http://www.archive-host.com/compteur.php?url=http://codeblocks.archive-host.com/CB_20101114_rev6846_win32_fr.7z)

Installing french language file:

Do not forget to remove old translations files !

Regards
Xav'
Title: Re: The 14 November 2010 build (6846) is out.
Post by: ahui886 on November 15, 2010, 02:11:14 am
thanks

good job!
Title: Re: The 14 November 2010 build (6846) is out.
Post by: Jenna on November 15, 2010, 07:33:41 am
Still present with svn 6850 (make uninstall + remove ~/.codeblocks).
I don't know why...
make uninstall might not be enough.
Use checkinstall for the make install-step to create a package which can be cleanly removed.

And before running make do a make distclean and run ./bootstrap .
Title: Re: The 14 November 2010 build (6846) is out.
Post by: Folco on November 15, 2010, 09:59:29 am
Ok, I remove all and recompile from fresh sources, without my own patches.
Title: Re: The 14 November 2010 build (6846) is out.
Post by: Folco on November 15, 2010, 11:16:40 am
Ok, done. svn 6852 without any change, after having cleaned all, building from fresh sources.

The problem is still here. The buttons are always in the default color :(http://www.mirari.fr/MUli) (http://www.mirari.fr/I7kI)

However, I can change correctly the color, and the color chooser works fine : (http://www.mirari.fr/ZMLL) (http://www.mirari.fr/XqIN)

FYI, I use this package to get a nice look for C::B : http://packages.ubuntu.com/maverick/oxygen-molecule
It could be that which messes up the buttons ?

---

I have also tested under XP SP3 : 10.05 release works fine, current nightly too.

---

BTW : Reconfiguring my new copy of C::B : the "Colour" button in "Settings -> Margins and caret -> Caret" has the same problem.
Title: Re: The 14 November 2010 build (6846) is out.
Post by: vermi on November 16, 2010, 11:29:25 am
Hi,
I would like to make a bug report. I don't know if it came with this version, but I just figured it out.

I have a workspace with 7 D projects. I use the define column to make conditionnal compilation in each project. When I compile each project independently, eveything is OK. If I use the "rebuild workspace" command, the defines are kind of shared between projects.

I have a simple define in the first project, and this define seem to be activated in other projects. (I hope I'm clear, it's not really easy to explain).

By the way, thank you very much for you work ! CodeBlocks is very great :)

Juste before posting, I see a new bug : in the last version, the auto-completition don't work, it hang with the message "The parser is still parsing files...". It worked fine before.
Title: Re: The 14 November 2010 build (6846) is out.
Post by: oBFusCATed on November 16, 2010, 12:05:30 pm
Read this: http://wiki.codeblocks.org/index.php?title=FAQ#Q:_How_do_I_troubleshoot_an_compiler_problem.3F

CC doesn't work for D projects, only C and C++
Title: Re: The 14 November 2010 build (6846) is out.
Post by: vermi on November 19, 2010, 09:48:26 am
Thank you, I just understood the problem. The obj files were chached. I will put 1 folder for each project, and the problem will be solved ;)
Regards
Title: Re: The 14 November 2010 build (6846) is out.
Post by: Folco on November 22, 2010, 11:29:27 pm
I dont find where is the debugger branch in the SVN : http://svn.berlios.de/svnroot/repos/codeblocks/branches/

Could someone help me please ?

Thanks in advance.
Title: Re: The 14 November 2010 build (6846) is out.
Post by: Jenna on November 22, 2010, 11:37:12 pm
http://svn.berlios.de/svnroot/repos/codeblocks/branches/wxpropgrid_debugger/  (http://svn.berlios.de/svnroot/repos/codeblocks/branches/wxpropgrid_debugger/)
Title: Re: The 14 November 2010 build (6846) is out.
Post by: Folco on November 22, 2010, 11:38:56 pm
Erf, thank you, I didn't think that branch had such a name.
Title: Re: The 14 November 2010 build (6846) is out.
Post by: Jenna on November 22, 2010, 11:44:17 pm
Erf, thank you, I didn't think that branch had such a name.
The name has "historical" reasons, it was the test-branch for wxPropgrid (after it has moved from wxSmith to core sdk, needed for the new debugger), too.
The "new" wxPropgrid is merged into trunk, the merge of the debugger-branch will (most likely) be the next major change.
Title: Re: The 14 November 2010 build (6846) is out.
Post by: Folco on November 23, 2010, 09:09:46 am
Thanks for the explanation !


In the "Comipler" toolbar, would it be possible to have the "Target" list nearer of the "Build" text ?
Here, I loose about 45 pixels, and due to the new debugger toolbar, the bar at the right doesn't fit anymore in my screen (about 40 px).
I wouldn't want to waste another toolbar line just for one toolbar.

(By the way, the harder choice would be to remove "Build", it's not the most important information, and it's >40 px large ^^)


Thanx in advance to consider that. :)

(http://www.mirari.fr/HzOr)

edit -> My config : Kubuntu 64b, svn 6834, debugger branch.
Title: Re: The 14 November 2010 build (6846) is out.
Post by: killerbot on November 29, 2010, 08:51:08 am
for me that area is occupied by the word "target", so for me it says : "build target", and then the combobox. As such in my case, no waste of space.
That's on trunk : maybe this is different on the debugger branch ?
Title: Re: The 14 November 2010 build (6846) is out.
Post by: xawari on December 03, 2010, 11:50:09 am
At startup I get this error twice since ver. 6527 (or maybe older). CB works after pressing Close/Ignore.
(http://img4.imageshack.us/img4/4070/codebugs.png)

Also, CB OFTEN crashes when I try to reorder/customize some toolbars (since september, AFAIR).
Title: Re: The 14 November 2010 build (6846) is out.
Post by: xawari on December 03, 2010, 11:59:01 am
Oh, sorry, I forgot:
Windows 5.2 sp2, 32 bit.