User forums > Nightly builds

The 12.11 RC1 (11 November 2012 build 8549) is out.

<< < (11/21) > >>

oBFusCATed:
I guess this will be the same as fixing the bug:)

Dreamy:
I'd like to ask if, when reaching another release, will the logo and possibly icons get upgraded as Alpha proposed some time ago. It might need some polishing, but I think some redesign might bring the release some shine. Anything may do just fine, just please no metro style.

oBFusCATed:
No icon change I think, but we have one killer feature which we won't tell you about it, but it will be the best thing in this release and people won't forget it.

Alpha:

--- Quote from: scarphin on November 14, 2012, 04:50:42 pm ---Sorry for the late reply. I didn't know that it was a feature and I filled in as a bug which was accepted. ;) Anyway is there a way to disable that cuz with my theme, colors are quite disturbing?

--- End quote ---
The only way to disable (currently) is to modify some code.  The initialization is here:
sdk/cbstyledtextctrl.cpp, line: 243

--- Code: ---            if (index != wxNOT_FOUND && (wxChar)GetCharAt(GetCurrentPos()) == s_rightBrace.GetChar(index))
            {
                const int pos = GetCurrentPos();
                if (pos != wxSCI_INVALID_POSITION)
                {
                    m_tabSmartJump = true;
                    m_bracePosition = pos;
                }
            }

--- End code ---

If you just want different colors, they have been hard-coded here:
sdk/cbstyledtextctrl.cpp, line: 430

--- Code: ---            if (s_rightBrace.Contains(cur))
            {
                SetCaretForeground(wxColour(255, 0, 0));
                SetCaretWidth(caretWidth + 1);

                IndicatorSetForeground(s_indicHighlight, wxColour(80, 236, 120));
                IndicatorSetStyle(s_indicHighlight, wxSCI_INDIC_HIGHLIGHT);
#ifndef wxHAVE_RAW_BITMAP
                IndicatorSetUnder(s_indicHighlight, true);
#endif
                SetIndicatorCurrent(s_indicHighlight);
                IndicatorFillRange(pos, 1);
                m_bracePosition = pos + 1;
                return;
            }

--- End code ---

Making these settings configurable would not be that difficult, just no one has yet had the motivation to do it.



--- Quote from: oBFusCATed on November 14, 2012, 09:36:58 pm ---No icon change I think [...]

--- End quote ---
I agree that the icons probably should not be changed (unless Code::Blocks wants to go through a complete graphics makeover...), but I think some of the icons should be swapped with higher quality (but still similarly themed) versions.  (Installing Code::Blocks on newer Windows machines looks rather bad with larger icon sizes.)  In a few days, I will have a package of icons (probably mostly just what I posted last time) that I will recommend be considered.

With regards to the logo, I presume there will be a splash contest soon :).

stefanos_:
Question: Why CodeBlocks_wx29.workspace compiles successfully, but upon running it CodeBlocks.exe crashes immediately? Am I doing something wrong that causes the crash? I have been trying to do this for ages now.

For some reason, after run it with gdb it complains about this:

--- Quote ---Program received signal SIGSEGV, Segmentation fault.
0x6e303042 in wxmsw294u_gcc_custom!_ZN12wxDropTarget6RevokeEP6HWND__ ()
--- End quote ---

I have installed the latest TDM's GCC (4.7.1), and recompiled both wxMSW-2.8.12 and wxWidgets-2.9.4 with this new compiler under Windows XP SP3 using the same arguments. Is it wrong to do so with 2.9.x? If yes, please advice, thank you.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version