Cruisers Forum
 


Reply
  This discussion is proudly sponsored by:
Please support our sponsors and let them know you heard about their products on Cruisers Forums. Advertise Here
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 29-04-2016, 11:55   #1681
Registered User

Join Date: Nov 2012
Location: Orust Sweden
Boat: Najad 34
Posts: 4,286
Re: Beta Test / Technical

Win10. VS2013

Since some of the commits after change to version 4.2.1 is the program icon not longer showed correct by Win10. I use the package installer.
Below pict. shows the new desktop icon and below that the icon from 4.2.0. (My portable OCPN instance copied from 4.2 2016-04-18)
Attached Images
 
Hakan is online now   Reply With Quote
Old 30-04-2016, 03:01   #1682
Registered User

Join Date: Jul 2010
Location: Hannover - Germany
Boat: Amel Sharki
Posts: 2,547
Re: Beta Test / Technical

Commit "Correct Waypoint Properties Dialog icon drop-down list height (FS#2000)" of today (30.04.2016)

For Mac OS X the line "WX_DECLARE_LIST(wxBitmap, BitmapList);" should be in routeprop.h and not in routeprop.cpp.

Gerhard
CarCode is offline   Reply With Quote
Old 30-04-2016, 03:20   #1683
Registered User

Join Date: Oct 2011
Location: Apeldoorn
Boat: Ovni 385
Posts: 342
Re: Beta Test / Technical

Some functions of the br24radar_pi version1.32 plugin only work correctly with the latest version of OpenCPN/master. To be more specific: for the correct orientation of the boat symbol in radar-only mode and when passing a heading to OpenCPN, pull request #621 (merged) is needed.
For many of our users compiling OpenCPN is just too much. Is there already a planning for bringing out a next beta version of OpenCPN?
Douwe Fokkema is offline   Reply With Quote
Old 02-05-2016, 19:27   #1684
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,500
Re: Beta Test / Technical

@CarCode...

re:
Commit "Correct Waypoint Properties Dialog icon drop-down list height (FS#2000)" of today (30.04.2016)

For Mac OS X the line "WX_DECLARE_LIST(wxBitmap, BitmapList);" should be in routeprop.h and not in routeprop.cpp.


I don't see any problem building from the current github master.
Do you?

Dave
bdbcat is offline   Reply With Quote
Old 03-05-2016, 02:06   #1685
Registered User

Join Date: Jul 2010
Location: Hannover - Germany
Boat: Amel Sharki
Posts: 2,547
Re: Beta Test / Technical

Quote:
Originally Posted by bdbcat View Post
@CarCode...

re:
Commit "Correct Waypoint Properties Dialog icon drop-down list height (FS#2000)" of today (30.04.2016)

For Mac OS X the line "WX_DECLARE_LIST(wxBitmap, BitmapList);" should be in routeprop.h and not in routeprop.cpp.


I don't see any problem building from the current github master.
Do you?

Dave
Yes, otherwise I don't wrote this.

Gerhard
CarCode is offline   Reply With Quote
Old 03-05-2016, 04:29   #1686
Registered User

Join Date: Dec 2005
Location: Helsingborg
Boat: Dufour 35
Posts: 3,891
Re: Beta Test / Technical

Dave!
Testing the latest Git I get repeated crashes when handling mark properties.
Click image for larger version

Name:	N431.png
Views:	206
Size:	66.3 KB
ID:	123607

/Thomas
cagney is offline   Reply With Quote
Old 03-05-2016, 05:26   #1687
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,500
Re: Beta Test / Technical

@Carcode....

Maybe a little bit more detail would be useful.

Thanks
Dave
bdbcat is offline   Reply With Quote
Old 03-05-2016, 05:29   #1688
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,500
Re: Beta Test / Technical

Thomas...

Do you crash always when showing the Mark Prop dialog, or only on some conditions?

Thanks
Dave
bdbcat is offline   Reply With Quote
Old 03-05-2016, 09:20   #1689
Registered User

Join Date: Jul 2010
Location: Hannover - Germany
Boat: Amel Sharki
Posts: 2,547
Re: Beta Test / Technical

Quote:
Originally Posted by bdbcat View Post
@Carcode....

Maybe a little bit more detail would be useful.

Thanks
Dave
Simply read the wxWidgets include files, yes, you find listimpl.cpp in the includes.
If "WX_DECLARE_LIST()" is in the *.cpp and not in *.h a smart compiler says "Called C++ object pointer is null".
There are several other such cases in the source.

Gerhard
CarCode is offline   Reply With Quote
Old 03-05-2016, 13:42   #1690
Registered User

Join Date: Dec 2005
Location: Helsingborg
Boat: Dufour 35
Posts: 3,891
Re: Beta Test / Technical

Quote:
Originally Posted by bdbcat View Post
Thomas...

Do you crash always when showing the Mark Prop dialog, or only on some conditions?

Thanks
Dave
Dave
I see a crash in 75 to 80% of the cases, when handling properties and then change the icon selection. The crash comes, sometimes when opening the properties dialog, and sometimes when activating a new icon, in other words when pressing "OK".

/Thomas
cagney is offline   Reply With Quote
Old 03-05-2016, 14:01   #1691
Registered User

Join Date: Nov 2012
Location: Orust Sweden
Boat: Najad 34
Posts: 4,286
Re: Beta Test / Technical

Thomas crash report confirmed:
Win10. VS2013. The code's last commit 0bb01aa......... "Correct Waypoint Properties Dialog icon drop-down list height (FS#2000)"

Method to reproduce the crash:
- Create a WP
- Left click the WP - Properties - give it a name - OK
- Open Route & Mark manager tool.
- Select tab Waypoints
- Select the created WP and open properties.
- Change icon - OK
- Select the WP again. - Click properties -> crash.
(If I not change the icon - no crash. Then the properties box can be opened and closed without problem)

Håkan
Hakan is online now   Reply With Quote
Old 03-05-2016, 16:06   #1692
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,500
Re: Beta Test / Technical

@Carcode...

Not to be too pedantic, but...

The only requirement is that the various macro definitions come in the following order within a single compiled module:

Code:
WX_DECLARE_LIST(wxBitmap, BitmapList);
#include <wx/listimpl.cpp>
WX_DEFINE_LIST(BitmapList);
The existence in or out of an include file is not relevant. In this case, since the list and its container class are not to be referenced outside of the instant compile module, the list declaration doesn't need to be in the include file at all.

If you have a real compile time or runtime failure related to this, lets see it.

Dave
bdbcat is offline   Reply With Quote
Old 03-05-2016, 16:22   #1693
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,500
Re: Beta Test / Technical

Thomas/Hakan...

re:
Thomas crash report confirmed:
Win10. VS2013. The code's last commit 0bb01aa......... "Correct Waypoint Properties Dialog icon drop-down list height (FS#2000)"


Fault confirmed. Corrected in github now.

Thanks
Dave
bdbcat is offline   Reply With Quote
Old 03-05-2016, 23:14   #1694
Registered User

Join Date: Nov 2012
Location: Orust Sweden
Boat: Najad 34
Posts: 4,286
Re: Beta Test / Technical

Dave..
Correction confirmed.
Thanks
Håkan
Hakan is online now   Reply With Quote
Old 04-05-2016, 05:28   #1695
Registered User

Join Date: Jul 2010
Location: Hannover - Germany
Boat: Amel Sharki
Posts: 2,547
Re: Beta Test / Technical

Quote:
Originally Posted by bdbcat View Post
@Carcode...

Not to be too pedantic, but...

Dave
That is why I make my own version for OS X since a long time now.
BTW your date format changed in TCwin.cpp yesterday is wrong also.

Gerhard
CarCode is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Beta Marine Diesel michaelmrc Engines and Propulsion Systems 48 23-03-2016 13:44
Need some technical advice....antennas. Just a Tinch Marine Electronics 15 01-12-2007 15:57
Blue Sea Systems Technical Brief GordMay Electrical: Batteries, Generators & Solar 0 16-03-2007 04:16
technical difficulties witchcraft The Sailor's Confessional 1 30-05-2005 14:09
Dow Corning Technical Manual GordMay The Library 0 12-04-2005 16:25

Advertise Here


All times are GMT -7. The time now is 05:09.


Google+
Powered by vBulletin® Version 3.8.8 Beta 1
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Social Knowledge Networks
Powered by vBulletin® Version 3.8.8 Beta 1
Copyright ©2000 - 2024, vBulletin Solutions, Inc.

ShowCase vBulletin Plugins by Drive Thru Online, Inc.