Author Topic: The 14 November 2010 build (6846) is out.  (Read 29275 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
The 14 November 2010 build (6846) is out.
« 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.

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:

  • saved status bar displays status to the configuration file
  • changed status bar style from wxSB_NORMAL to wxSB_FLAT (only for Linux)
  • fixed an issue with split-view: non-default indicator settings (used by highlight occurrences, IncSearch, SpellChecker) have not been used directly after splitting (see here for an example: http://forums.codeblocks.org/index.php/topic,11307.msg91996.html#msg91996)
  • fixed a possible crash (on windows) or hang (on wxGTK), if a file was modified outside C::B, and the IDE regains focus with pressing the close-button on the editors tab.
  • remove the "ugly" part of wxToolbar, see http://forums.codeblocks.org/index.php/topic,13665.0.html for more information

Regressions/Confirmed/Annoying/Common bugs:



    Offline Jenna

    • Administrator
    • Lives here!
    • *****
    • Posts: 7255
    Re: The 14 November 2010 build (6846) is out.
    « Reply #1 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.

    Offline Phenom

    • Multiple posting newcomer
    • *
    • Posts: 57
    Re: The 14 November 2010 build (6846) is out.
    « Reply #2 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...
    « Last Edit: November 18, 2010, 08:49:56 pm by Phenom »

    Offline bug1z

    • Multiple posting newcomer
    • *
    • Posts: 10
    Re: The 14 November 2010 build (6846) is out.
    « Reply #3 on: November 14, 2010, 09:08:35 pm »
    Sorry, it will work on х64?

    Offline Folco

    • Regular
    • ***
    • Posts: 343
      • Folco's blog (68k lover)
    Re: The 14 November 2010 build (6846) is out.
    « Reply #4 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.
    « Last Edit: November 15, 2010, 02:27:49 am by Folco »
    Kernel Extremist - PedroM power ©

    Offline Jenna

    • Administrator
    • Lives here!
    • *****
    • Posts: 7255
    Re: The 14 November 2010 build (6846) is out.
    « Reply #5 on: November 14, 2010, 10:08:32 pm »
    No problems here with svn 6850.

    Offline Folco

    • Regular
    • ***
    • Posts: 343
      • Folco's blog (68k lover)
    Re: The 14 November 2010 build (6846) is out.
    « Reply #6 on: November 14, 2010, 10:45:48 pm »
    Still present with svn 6850 (make uninstall + remove ~/.codeblocks).
    I don't know why...
    Kernel Extremist - PedroM power ©

    Offline Xaviou

    • Regular
    • ***
    • Posts: 403
      • X@v's wxStuff
    Re: The 14 November 2010 build (6846) is out.
    « Reply #7 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 (direct link).

    ".mo" file for french translation can be founded here (see below for installation instructions)
    Full Win32 French Version (including wxWidgets and MinGW dlls and french ".mo" and ".po" files) can be founded here

    Installing french language file:
    • under Linux : put this file in /usr/share/codeblocks/locale/fr_FR/ (you'll have to create these folders the first time)
    • under Windows : put this file in $CodeBlocks_Install_Dir\share\CodeBlocks\locale\fr_FR\ (you'll have to create these folders the first time)

    Do not forget to remove old translations files !

    Regards
    Xav'
    The french wxWidgets site : http://www.wxdev.fr
    My wxWidgets's stuff : https://wxstuff.xaviou.fr/

    Offline ahui886

    • Multiple posting newcomer
    • *
    • Posts: 29
    Re: The 14 November 2010 build (6846) is out.
    « Reply #8 on: November 15, 2010, 02:11:14 am »
    thanks

    good job!

    Offline Jenna

    • Administrator
    • Lives here!
    • *****
    • Posts: 7255
    Re: The 14 November 2010 build (6846) is out.
    « Reply #9 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 .

    Offline Folco

    • Regular
    • ***
    • Posts: 343
      • Folco's blog (68k lover)
    Re: The 14 November 2010 build (6846) is out.
    « Reply #10 on: November 15, 2010, 09:59:29 am »
    Ok, I remove all and recompile from fresh sources, without my own patches.
    Kernel Extremist - PedroM power ©

    Offline Folco

    • Regular
    • ***
    • Posts: 343
      • Folco's blog (68k lover)
    Re: The 14 November 2010 build (6846) is out.
    « Reply #11 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 :

    However, I can change correctly the color, and the color chooser works fine :

    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.
    « Last Edit: November 15, 2010, 11:23:23 am by Folco »
    Kernel Extremist - PedroM power ©

    Offline vermi

    • Single posting newcomer
    • *
    • Posts: 2
    Re: The 14 November 2010 build (6846) is out.
    « Reply #12 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.

    Offline oBFusCATed

    • Developer
    • Lives here!
    • *****
    • Posts: 13413
      • Travis build status
    Re: The 14 November 2010 build (6846) is out.
    « Reply #13 on: November 16, 2010, 12:05:30 pm »
    (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!]

    Offline vermi

    • Single posting newcomer
    • *
    • Posts: 2
    Re: The 14 November 2010 build (6846) is out.
    « Reply #14 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

    Offline Folco

    • Regular
    • ***
    • Posts: 343
      • Folco's blog (68k lover)
    Re: The 14 November 2010 build (6846) is out.
    « Reply #15 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.
    Kernel Extremist - PedroM power ©

    Offline Jenna

    • Administrator
    • Lives here!
    • *****
    • Posts: 7255

    Offline Folco

    • Regular
    • ***
    • Posts: 343
      • Folco's blog (68k lover)
    Re: The 14 November 2010 build (6846) is out.
    « Reply #17 on: November 22, 2010, 11:38:56 pm »
    Erf, thank you, I didn't think that branch had such a name.
    Kernel Extremist - PedroM power ©

    Offline Jenna

    • Administrator
    • Lives here!
    • *****
    • Posts: 7255
    Re: The 14 November 2010 build (6846) is out.
    « Reply #18 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.

    Offline Folco

    • Regular
    • ***
    • Posts: 343
      • Folco's blog (68k lover)
    Re: The 14 November 2010 build (6846) is out.
    « Reply #19 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. :)



    edit -> My config : Kubuntu 64b, svn 6834, debugger branch.
    « Last Edit: November 23, 2010, 01:01:50 pm by Folco »
    Kernel Extremist - PedroM power ©

    Offline killerbot

    • Administrator
    • Lives here!
    • *****
    • Posts: 5491
    Re: The 14 November 2010 build (6846) is out.
    « Reply #20 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 ?

    Offline xawari

    • Multiple posting newcomer
    • *
    • Posts: 36
    • programming, usability ctrl
      • welcome to reality
    Re: The 14 November 2010 build (6846) is out.
    « Reply #21 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.


    Also, CB OFTEN crashes when I try to reorder/customize some toolbars (since september, AFAIR).
    ┌──────────────────────────────────────────────────────╖
    in another thousand years we'll be machines or gods█
    ╘══════════════════════════════════════════════════════╝

    Offline xawari

    • Multiple posting newcomer
    • *
    • Posts: 36
    • programming, usability ctrl
      • welcome to reality
    Re: The 14 November 2010 build (6846) is out.
    « Reply #22 on: December 03, 2010, 11:59:01 am »
    Oh, sorry, I forgot:
    Windows 5.2 sp2, 32 bit.
    ┌──────────────────────────────────────────────────────╖
    in another thousand years we'll be machines or gods█
    ╘══════════════════════════════════════════════════════╝