Author Topic: wxTeam is working on version 3.1.3  (Read 9745 times)

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7582
    • My Best Post
wxTeam is working on version 3.1.3
« on: October 27, 2019, 09:34:58 pm »
wxTeam is working on version 3.1.3; release tag was created today.

Edit: Add link https://github.com/wxWidgets/wxWidgets/releases

Edit2: They normally do a few days of testing before the release is ready for wide spread use!

Tim S.

« Last Edit: October 28, 2019, 12:46:05 am by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5910
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: wxTeam is working on version 3.1.3
« Reply #1 on: October 28, 2019, 10:51:32 am »
Great!
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: 5490
Re: wxTeam is working on version 3.1.3
« Reply #2 on: October 28, 2019, 01:22:05 pm »
fingers crossed it only brings solutions and not new problems

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5910
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: wxTeam is working on version 3.1.3
« Reply #3 on: October 28, 2019, 01:41:56 pm »
Announcing wxWidgets 3.1.3 release in the wx-user mail list.
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 stahta01

  • Lives here!
  • ****
  • Posts: 7582
    • My Best Post
Re: wxTeam is working on version 3.1.3
« Reply #4 on: October 28, 2019, 03:08:49 pm »
Still not listed here https://www.wxwidgets.org/downloads/
When they change that link is when I think it is ready for wide spread use.

No idea when the C::B Devs should start testing, now or when listed on the above URL.

Tim S.
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline gd_on

  • Lives here!
  • ****
  • Posts: 796
Re: wxTeam is working on version 3.1.3
« Reply #5 on: October 28, 2019, 04:40:00 pm »
For information : I have used wxwidgets 3.1.3 for approximately 1 month (downloaded via git, in beta state of course) without finding any problems in C::B itself or my own wxwidgets programs.
Of course, it's only a partial test, but for me, it's quite good. At least, the bug found in 3.1.2 is solved (the one concerning a # in the 1rst column of a new line).

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: 1553
Re: wxTeam is working on version 3.1.3
« Reply #6 on: October 28, 2019, 05:06:04 pm »
It is already out, see:

https://github.com/wxWidgets/wxWidgets/releases/tag/v3.1.3

Remember activating Direct2D in setup.h before compiling wxWidgets, and apply patches in tickets 860 and 874 before compiling C::B

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7582
    • My Best Post
Re: wxTeam is working on version 3.1.3
« Reply #7 on: October 28, 2019, 06:49:31 pm »
It is already out, see:

https://github.com/wxWidgets/wxWidgets/releases/tag/v3.1.3

Remember activating Direct2D in setup.h before compiling wxWidgets, and apply patches in tickets 860 and 874 before compiling C::B

That is just the release tag I posted about in the first post in this thread!

Tim S.
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: wxTeam is working on version 3.1.3
« Reply #8 on: October 28, 2019, 07:47:15 pm »
@killerbot: Could you build two sets of night build? One with 3.1.1 and one with 3.1.3, so we can tell users to compare them. This would make it a bit easier to pinpoint if there are regressions.
(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: 5490
Re: wxTeam is working on version 3.1.3
« Reply #9 on: October 29, 2019, 08:12:58 pm »
ok will do that, this weekend.

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: wxTeam is working on version 3.1.3
« Reply #10 on: November 01, 2019, 09:44:50 pm »
It is already out, see:

https://github.com/wxWidgets/wxWidgets/releases/tag/v3.1.3

Remember activating Direct2D in setup.h before compiling wxWidgets, and apply patches in tickets 860 and 874 before compiling C::B

I did not need the patches from those 2 tickets.

Offline sodev

  • Regular
  • ***
  • Posts: 497
Re: wxTeam is working on version 3.1.3
« Reply #11 on: November 01, 2019, 10:03:31 pm »
You need 874 (and 704) only when you disable wxWidgets 3.0 compatibility which is enabled by default. I also don't need 860, maybe again some kind of PCH/non-PCH issue?

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: wxTeam is working on version 3.1.3
« Reply #12 on: November 02, 2019, 08:21:44 am »
the latest nightly has also a wx3.1.3 based version, please test it.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: wxTeam is working on version 3.1.3
« Reply #13 on: November 02, 2019, 11:06:50 am »
The macOS version seems to be pretty broken, so wx-devs are planing a 3.1.4 to be released shortly after 3.1.3!
(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: 5490
Re: wxTeam is working on version 3.1.3
« Reply #14 on: November 03, 2019, 10:22:48 am »
wait do we do for the nightlies, switch already ? or wait on the 3.1.4 ?

I kind of feel like to prefer to switch ....