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 14 November 2010 build (6846) is out.

Started by killerbot, November 14, 2010, 09:59:34 AM

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_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:




Jenna

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

Phenom

#2
Considering the 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:

data : GameData****


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


       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...

bug1z


Folco

#4
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.
Kernel Extremist - PedroM power ©

Jenna


Folco

Still present with svn 6850 (make uninstall + remove ~/.codeblocks).
I don't know why...
Kernel Extremist - PedroM power ©

Xaviou

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'
My wxWidgets's stuff : [url="https://wxstuff.xaviou.fr/"]https://wxstuff.xaviou.fr/[/url]

ahui886


Jenna

Quote from: Folco on November 14, 2010, 10:45:48 PM
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 .

Folco

Ok, I remove all and recompile from fresh sources, without my own patches.
Kernel Extremist - PedroM power ©

Folco

#11
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.
Kernel Extremist - PedroM power ©

vermi

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.

oBFusCATed

(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!]

vermi

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