Author Topic: The 18 January 2020 build (11954) is out.  (Read 46665 times)

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: The 18 January 2020 build (11954) is out.
« Reply #15 on: January 22, 2020, 08:37:30 pm »
It is up to killerbot to post the details. He is building it. ;)
(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 killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: The 18 January 2020 build (11954) is out.
« Reply #16 on: January 23, 2020, 07:16:18 am »
will post them this evening.

Offline gd_on

  • Lives here!
  • ****
  • Posts: 795
Re: The 18 January 2020 build (11954) is out.
« Reply #17 on: January 23, 2020, 09:41:29 am »
@Killerbot :
in the announcement of a nightly you have a special paragraph "Regressions/Confirmed/Annoying/Common bugs:" which is generally empty.
It could be nice to tell here that for some (may be still unknown) reasons some plugins have been temporarily disabled because they produce errors.

gd_on

PS : the bug described on IncrementalSearch behaviour seems to have disappeared in wxWidgets 3.1.4 (git version)
« Last Edit: January 23, 2020, 09:55:57 am by gd_on »
Windows 11 64 bits (23H2), svn C::B (last version or almost!), wxWidgets 3.2.4 (tests with 3.3), Msys2 Compilers 13.2.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).

Offline Miguel Gimenez

  • Developer
  • Lives here!
  • *****
  • Posts: 1549
Re: The 18 January 2020 build (11954) is out.
« Reply #18 on: January 23, 2020, 10:22:48 am »
PS : the bug described on IncrementalSearch behaviour seems to have disappeared in wxWidgets 3.1.4 (git version)

The commit that broke the plugin was reverted soon after, but wx3.1.3 was released before reversion took place; see

http://forums.codeblocks.org/index.php/topic,23606.msg161103.html#msg161103

Offline Jewest

  • Multiple posting newcomer
  • *
  • Posts: 31
Re: The 18 January 2020 build (11954) is out.
« Reply #19 on: January 23, 2020, 01:58:12 pm »
What is the suggested approach for testing the nightly build? (Debian x64)
Since I am still using the official released version, and this will be the last version in the repository for ever.

As I use the program regularly I want to build it, evaluate if moving is the right way, and then move to this version.
This way updating is "controlled".
Can C::B be compiled in a single folder and run? before running the install?

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: The 18 January 2020 build (11954) is out.
« Reply #20 on: January 23, 2020, 07:09:23 pm »
Yes, pass --prefix to the configure script. I use --prefix=/home/myuser/software/cb.
Another option is to build packages using the standard debian command for this. We have all the files needed, so building packages is a single command and it should be reliable.
(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 AndyJ

  • Multiple posting newcomer
  • *
  • Posts: 24
Re: The 18 January 2020 build (11954) is out.
« Reply #21 on: January 24, 2020, 10:37:42 am »
A tiny gripe...

Unmentioned in the changes for this nightly is the inclusion of a new? plugin called 'Header guard'. Unfortunately it appears to be enabled by default and makes unexpected and unwanted changes to my header files. I eventually tracked down the cause but it would be useful in future to highlight such additions and not enable them by default. I've got 3 machines that I use, each of which have 3+ CodeBlocks profiles, so thats 9+ instances that I need to make manual changes to to prevent this behavior.

Otherwise, thank you for another great nightly with a number of useful improvements!

Andy

Offline trivia21

  • Single posting newcomer
  • *
  • Posts: 9
Re: The 18 January 2020 build (11954) is out.
« Reply #22 on: January 29, 2020, 11:04:02 am »
In Settings/Editor/Keyboard shortcuts when I try to add a shortcut for View/Perspectives/Code::Blocks default or minimal, I get the error message "KeyBinding file corrupted. Please delete" and the setting is not applied.

Ubuntu 18.04, this nightly build with official wx3.1.1.

Offline cacb

  • Lives here!
  • ****
  • Posts: 536
Re: The 18 January 2020 build (11954) is out.
« Reply #23 on: January 29, 2020, 02:56:12 pm »
I have seen a strange bug in the editor a couple of times in this release:

1. In a C++ header file within a class declaration, go to a blank line and type

private:

2. Press <Return> key, you then end up with

private:private


See attachment. Why does this happen?


Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2743
Re: The 18 January 2020 build (11954) is out.
« Reply #24 on: January 29, 2020, 07:42:19 pm »
In Settings/Editor/Keyboard shortcuts when I try to add a shortcut for View/Perspectives/Code::Blocks default or minimal, I get the error message "KeyBinding file corrupted. Please delete" and the setting is not applied.

Ubuntu 18.04, this nightly build with official wx3.1.1.

That happens when wxWidgets reports a non-existent menu id. That menu is dynamic and probably has unique (new) menu items assigned as it is built, ie., unknown to KeyBinder.

I'll look into it.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: The 18 January 2020 build (11954) is out.
« Reply #25 on: January 29, 2020, 07:55:38 pm »
cacb:
Can you try to reproduce it with a simple project?
What happens if you do this in a function?
Does case statements work correctly?
What are your editor settings?

Can you try the previous night build to be sure it is not an old problem?
(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 Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2743
Re: The 18 January 2020 build (11954) is out.
« Reply #26 on: February 03, 2020, 07:58:16 pm »
In Settings/Editor/Keyboard shortcuts when I try to add a shortcut for View/Perspectives/Code::Blocks default or minimal, I get the error message "KeyBinding file corrupted. Please delete" and the setting is not applied.

Ubuntu 18.04, this nightly build with official wx3.1.1.

Fixed; svn r11957
The menu item label contained "::" within "Code::Blocks" text caused the scan routine to fail.

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5905
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: The 18 January 2020 build (11954) is out.
« Reply #27 on: February 05, 2020, 02:39:11 am »
will post them this evening.

Hi, killerbot, did you post it somewhere?
I don't see this information in this thread.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: The 18 January 2020 build (11954) is out.
« Reply #28 on: February 05, 2020, 09:08:15 pm »
forgot about it, will do when I reboot into my windows (probably tomorrow), my apologies for the delay.

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: The 18 January 2020 build (11954) is out.
« Reply #29 on: February 08, 2020, 10:44:03 am »
these are the adjustments I carry out on the wx :

1) include/wx/msw/setup.h   (for the 2D support)
Code
#if defined(_MSC_VER) && _MSC_VER >= 1600
    #define wxUSE_GRAPHICS_DIRECT2D wxUSE_GRAPHICS_CONTEXT
#else
    #define wxUSE_GRAPHICS_DIRECT2D 0
#endif

==> just 1 line
Code
    #define wxUSE_GRAPHICS_DIRECT2D wxUSE_GRAPHICS_CONTEXT

2) combo.h and combocmn.cpp
Quote
This is the offending commit: Make wxComboCtrl a wxCompositeWindow

https://github.com/wxWidgets/wxWidgets/commit/70e9dbd756cb321fb85d6380b3e37bcd59604e09

This commit was reverted after wx3.1.3 release in commit https://github.com/wxWidgets/wxWidgets/commit/6b00cc80f1fdb3ef134e2df694a0c34905442042
« Last Edit: February 08, 2020, 10:53:24 am by killerbot »