Author Topic: The 25 September 2010 build (6634) is out.  (Read 31663 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
The 25 September 2010 build (6634) is out.
« on: September 27, 2010, 06:02:17 pm »
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 25 September 2010 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20100925_rev6634_win32.7z
  - Linux :
   none

Resolved Fixed:

  • "fixed" build bug by applying path to remove dependency on libintl (thanks Loaden)
    - removed target "exchndl" anyways from virtual target "All" thus it won't built until explicitly done
  • fix for editor-folding bug (see http://forums.codeblocks.org/index.php/topic,13336.msg89748.html#msg89748);
    make interpretation of #if,#else, #endif to grey out inactive preprocessor-code optional (default is off);
    fix for broken wxSmith colour-property
  • applied patch from Cryogen to fix some issues, namely:
    - documented the important event ID requirement for wxFindReplaceDialog;
    - generate a wxRichTextStyleSheet for wxRichTextStyleOrganiserDialog;
    - fixed a bug in wxsRichTextStyleOrganiserDialog that caused dialogue styles to be omitted.
  • applied patch from Cryogen to add the following controls to wxSmith:
    - wxRichTextStyleComboCtrl
    - wxRichTextStyleListBox
    - wxRichTextStyleListCtrl
  • applied patch from Cryogen to add new image tools to wxSmith, namely:
    - wxImage
    - wximageList
  • applied patch by mmkider to correct a recursive bug in the classwizard

Regressions/Confirmed/Annoying/Common bugs:



    Offline Jenna

    • Administrator
    • Lives here!
    • *****
    • Posts: 7255
    Re: The 25 September 2010 build (6634) is out.
    « Reply #1 on: September 27, 2010, 07:28:54 pm »
    Debian packages (binaries and sources) for 32-bit and 64-bit systems can be found in my repo.

    Revision is 6647

    Additional changes (committed after the windows nightlies have been built):
    • * Build system clean-up: Unnecessary Makefiles are removed. Scripted wizard plugin uses a number of Makefiles to install files. This clean-up exercise aims at reducing their numbers. Necessary chages are made to ensure build system integrity, functionality are not reduced anyway.
    • * Build system clean-up: Removed unnecessary automake files from ARM project wizard.
    • * fix for broken wxSmith-properties, that base on wxsCustomEditorProperty
    • - update script in debian-directory to create orig-tarball from svn
    • - remove version-numbers from two xrc-files, to avoid warnings if additional debug-logging is turned on
    • - wxSmith: implement GetStr() for wxsBitMapIconProperty and wxsFontProperty, to show the content of the property in the propgrid (not just "click to edit")
    • - DoxyBlocks-plugin: fix incorrect regex
    • - update-script on linux: make the created run.sh-script portable
    • * fix bug #17256 (C::B crashes if a watch is deleted, that has an active command, but the output is not yet parsed)

    Offline ahui886

    • Multiple posting newcomer
    • *
    • Posts: 29
    Re: The 25 September 2010 build (6634) is out.
    « Reply #2 on: September 28, 2010, 07:41:58 am »
    good job,thanks

    Offline WillyCat

    • Single posting newcomer
    • *
    • Posts: 5
    Re: The 25 September 2010 build (6634) is out.
    « Reply #3 on: September 28, 2010, 09:21:01 am »
    Debian packages (binaries and sources) for 32-bit and 64-bit systems can be found in my repo.

    Revision is 6647


    I found a problem in this revision: In the editor/folding section, except the "Enable folding", all other parameters have no effect.

    Willy.

    Offline Jenna

    • Administrator
    • Lives here!
    • *****
    • Posts: 7255
    Re: The 25 September 2010 build (6634) is out.
    « Reply #4 on: September 28, 2010, 10:33:42 am »
    Debian packages (binaries and sources) for 32-bit and 64-bit systems can be found in my repo.

    Revision is 6647


    I found a problem in this revision: In the editor/folding section, except the "Enable folding", all other parameters have no effect.

    Willy.

    I just tested and almost everything works as expected.
    Fold all on file open does not work, Underline folded line has no effect (folded line is always underlined).
    Folding depth limit is not (yet) tested, because I don't know what it should do.
    I will look into it.

    Offline MortenMacFly

    • Administrator
    • Lives here!
    • *****
    • Posts: 9694
    Re: The 25 September 2010 build (6634) is out.
    « Reply #5 on: September 28, 2010, 10:42:33 am »
    Folding depth limit is not (yet) tested, because I don't know what it should do.
    IMHO it controls if you fold sub-fold elements, too. E.g. folding the following code actually folds two times: The inner if and the outer if.
    Code
    if (blah)
    {
      if (blubb)
      {
        // ...
      }
    }
    Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
    C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
    C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

    Offline xawari

    • Multiple posting newcomer
    • *
    • Posts: 36
    • programming, usability ctrl
      • welcome to reality
    Re: The 25 September 2010 build (6634) is out.
    « Reply #6 on: September 28, 2010, 11:12:19 am »
    Great to see so many wxSmith additions!  :D

    BTW, are you planning to move to wxWidgets 2.9.1 in near future?
    (I ask because I'm about to start a large project and really want it to be up-to-date so I wonder if C::B and, especially, wxSmith will be wxWidgets 2.9.1 compatible)
    ┌──────────────────────────────────────────────────────╖
    in another thousand years we'll be machines or gods█
    ╘══════════════════════════════════════════════════════╝

    Offline Jenna

    • Administrator
    • Lives here!
    • *****
    • Posts: 7255
    Re: The 25 September 2010 build (6634) is out.
    « Reply #7 on: September 28, 2010, 12:37:38 pm »
    Folding depth limit is not (yet) tested, because I don't know what it should do.
    IMHO it controls if you fold sub-fold elements, too. E.g. folding the following code actually folds two times: The inner if and the outer if.

    Thank you, just tested and it works also.

    The other issues should be fixed in svn r6651 .

    laokai134

    • Guest
    Re: The 25 September 2010 build (6634) is out.
    « Reply #8 on: September 28, 2010, 03:43:12 pm »
    How to hide title bar, but not use the Full screen mode?

    Offline MortenMacFly

    • Administrator
    • Lives here!
    • *****
    • Posts: 9694
    Re: The 25 September 2010 build (6634) is out.
    « Reply #9 on: September 28, 2010, 06:16:11 pm »
    BTW, are you planning to move to wxWidgets 2.9.1 in near future?
    As this is not an official release but a developer release (a.k.a. as "may contain bugs" and "not recommended for production"), we won't most likely. Once this becomes official we might.
    Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
    C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
    C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

    Offline alb_cb_moon

    • Multiple posting newcomer
    • *
    • Posts: 25
    Re: The 25 September 2010 build (6634) is out.
    « Reply #10 on: September 28, 2010, 11:13:00 pm »
    C::B crash when I try to change Editor settings, no matter the option, it fails when you press ok button.

    OS: Windows XP SP2
    GUI Library: wxWidgets 2.8.10
    IDE: CodeBlocks SVN / Nigth Builds Compiler: MinGW & gcc 3.4.5

    Offline Jenna

    • Administrator
    • Lives here!
    • *****
    • Posts: 7255
    Re: The 25 September 2010 build (6634) is out.
    « Reply #11 on: September 28, 2010, 11:23:56 pm »
    C::B crash when I try to change Editor settings, no matter the option, it fails when you press ok button.


    Works here.
    Which OS ?

    Offline alb_cb_moon

    • Multiple posting newcomer
    • *
    • Posts: 25
    Re: The 25 September 2010 build (6634) is out.
    « Reply #12 on: September 28, 2010, 11:46:04 pm »
    C::B crash when I try to change Editor settings, no matter the option, it fails when you press ok button.


    Works here.
    Which OS ?

    This data are at footer of reply::
    OS: Windows XP SP2
    GUI Library: wxWidgets 2.8.10
    IDE: CodeBlocks SVN / Nigth Builds
    Compiler: MinGW & gcc 3.4.5
    OS: Windows XP SP2
    GUI Library: wxWidgets 2.8.10
    IDE: CodeBlocks SVN / Nigth Builds Compiler: MinGW & gcc 3.4.5

    Offline Loaden

    • Lives here!
    • ****
    • Posts: 1014
    Re: The 25 September 2010 build (6634) is out.
    « Reply #13 on: September 29, 2010, 03:20:09 am »
    C::B crash when I try to change Editor settings, no matter the option, it fails when you press ok button.


    Works here.
    Which OS ?

    This data are at footer of reply::
    OS: Windows XP SP2
    GUI Library: wxWidgets 2.8.10
    IDE: CodeBlocks SVN / Nigth Builds
    Compiler: MinGW & gcc 3.4.5
    If you build CB by yourself, you need run "src/update.bat" first!

    Offline Jenna

    • Administrator
    • Lives here!
    • *****
    • Posts: 7255
    Re: The 25 September 2010 build (6634) is out.
    « Reply #14 on: September 29, 2010, 07:23:41 am »
    C::B crash when I try to change Editor settings, no matter the option, it fails when you press ok button.


    Works here.
    Which OS ?

    This data are at footer of reply::
    OS: Windows XP SP2
    GUI Library: wxWidgets 2.8.10
    IDE: CodeBlocks SVN / Nigth Builds
    Compiler: MinGW & gcc 3.4.5
    If you build CB by yourself, you need run "src/update.bat" first!
    Did not read your signature, sorry.

    If you have a self-compiled C::B, running update.bat is always needed .

    You should also think about doing a rebuild (clean and build).

    You sometimes have to manually delete the pch-files in src/include .
    You also can try to delete src/devel and src/output to force a relink of all libs without a complete rebuild.