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 27-01-2015, 08:18   #211
Registered User

Join Date: Feb 2010
Posts: 619
Re: OpenCPN Version 4.0 Released

Quote:
Originally Posted by cagney View Post
The first sentence has a wrong check-sum, should be 45 instead of 65 at the end.
Don't know how much does it change, but the error in the first sentence seems to be the blank between Acknowledgement Type (S) and Expansion Indicator (E). If removed, checksum value 65 is correct...

I noticed quite often spurious blanks in code copied off screen in CF posts.
PjotrC is offline   Reply With Quote
Old 27-01-2015, 10:23   #212
Registered User

Join Date: Jul 2010
Location: Hannover - Germany
Boat: Amel Sharki
Posts: 2,546
Re: OpenCPN Version 4.0 Released

Quote:
Originally Posted by CarCode View Post
Bug in OpenCPN 4.0 Mac version
Open Properties window of a waypoint.
Try to write the small chars (no uppercase) a, c, l, m, o, q, s or t in the Description field of the Properties window.
This will trigger the shortcut function only but not write these chars.
For Linux or Windows version this does not happen.
Gerhard
Reason is that these single chars are used in the menu shortcuts and therefore catched for menu functions. However single chars as menu shortcuts are not allowed for Mac OS X but only together with an accelerator. Please alter in RegisterGlobalMenuItems() e.g. _T("A") to _T("Alt-A") and all other single chars the same.

Next in routeprop.h these lines are needed:
Code:
#ifdef __WXOSX__
#define SYMBOL_ROUTEPROP_STYLE wxCAPTION|wxRESIZE_BORDER|wxSYSTEM_MENU|wxCLOSE_BOX|wxSTAY_ON_TOP
#else
#define SYMBOL_ROUTEPROP_STYLE wxCAPTION|wxRESIZE_BORDER|wxSYSTEM_MENU|wxCLOSE_BOX
#endif
to get the Properties window in front of the RouteManager window.

Gerhard
CarCode is offline   Reply With Quote
Old 27-01-2015, 14:49   #213
Registered User
 
Gilletarom's Avatar

Join Date: Mar 2010
Location: France
Boat: 10.50 mètres
Posts: 3,012
Re: OpenCPN Version 4.0 Released

Hello Anyone,

This evening, the tracker is impossible to load. Pfuuu.

Gilletarom
Gilletarom is offline   Reply With Quote
Old 28-01-2015, 00:18   #214
Registered User

Join Date: Aug 2009
Location: oriental
Boat: crowther trimaran 33
Posts: 4,425
Re: OpenCPN Version 4.0 Released

Quote:
Originally Posted by nohal View Post
No. OpenCPN is not built on top of the Qt toolkit, but wxWidgets/GTK. Once the QT backend for wxWidgets gets usable, then perhaps.

Pavel
It already is usable, at least with opencpn -> wxwidgets -> qt -> x11

The android backend is still very experimental, but is also usable (just a lot of features missing)

Quote:
Originally Posted by Wrong View Post
A simple solution?

When zyGrib and qtcreator are launched as 'zyGrib' and 'qtcreator' icons and text do not display properly as the first two screenshots reveal.

However, when launched with '-graphicssystem native', they do as in the second set of screenshots.

Trying to launch OpenCPN as 'opencpn -graphicssystem native' returns 'Unknown option -graphicssystem'.

Can this be made possible with OpenCPN?
Try recompiling opencpn using wxwidgets under qt (requires recompiling wxwidgets) and then it will be possible.
seandepagnier is offline   Reply With Quote
Old 28-01-2015, 02:27   #215
Registered User
 
Gilletarom's Avatar

Join Date: Mar 2010
Location: France
Boat: 10.50 mètres
Posts: 3,012
Re: OpenCPN Version 4.0 Released

If you uninstall a plugin, without disabling the first plugin, and if you reinstall again, so it is already enabled in O.

This should not be the case. For an alpha user, this should not inspire confidence in O.

When installing a plugin, once used, in the initialization file O, there is a series of line concerning this plugin.

BUT

When you uninstall the same plugin, the initialization file is not cleaned.

For example, installing and using the plugin Climatology, include approximately 130 lines in the opencpn.ini file. These lines are not cleaned.

and this for each plugin uninstalled.

If one day developers find some free minutes, in their TODO, it would be nice that all deinstallation software are improved.

Best regards. Gilletarom.
Gilletarom is offline   Reply With Quote
Old 28-01-2015, 06:59   #216
Registered User

Join Date: Nov 2014
Location: Netherlands
Posts: 219
Re: OpenCPN Version 4.0 Released

I also see this problem in the logbookkonni plugin for OSX.
No possibility to enter characters in e.g. Remarks that are used as shortcuts.
So this solution below looks good to me.

Peter

Quote:
Originally Posted by CarCode View Post
Reason is that these single chars are used in the menu shortcuts and therefore catched for menu functions. However single chars as menu shortcuts are not allowed for Mac OS X but only together with an accelerator. Please alter in RegisterGlobalMenuItems() e.g. _T("A") to _T("Alt-A") and all other single chars the same.

Next in routeprop.h these lines are needed:
Code:
#ifdef __WXOSX__
#define SYMBOL_ROUTEPROP_STYLE wxCAPTION|wxRESIZE_BORDER|wxSYSTEM_MENU|wxCLOSE_BOX|wxSTAY_ON_TOP
#else
#define SYMBOL_ROUTEPROP_STYLE wxCAPTION|wxRESIZE_BORDER|wxSYSTEM_MENU|wxCLOSE_BOX
#endif
to get the Properties window in front of the RouteManager window.

Gerhard
ptulp is offline   Reply With Quote
Old 28-01-2015, 07:22   #217
Registered User
 
Wrong's Avatar

Join Date: Jul 2013
Posts: 1,702
Re: OpenCPN Version 4.0 Released

Quote:
Originally Posted by boat_alexandra View Post
It already is usable, at least with opencpn -> wxwidgets -> qt -> x11

The android backend is still very experimental, but is also usable (just a lot of features missing)



Try recompiling opencpn using wxwidgets under qt (requires recompiling wxwidgets) and then it will be possible.
"Currently, wxQT needs Qt 5 or later" and my system has 4.8. So, its not quite that simple. Means I'd have to compile Qt 5 first, which takes 24 hours on my xoom. Been there, done that but was running out of space and deleted the whole enchilada; compiled source and Qt 5 files in /usr/local. Using the customized CMakeList.txt file is easier for people following my instructions than to go through the steps necessary to enable the -graphicssystem command. Can you imagine???

Thanks for your response though.
Wrong is offline   Reply With Quote
Old 28-01-2015, 07:23   #218
Registered User

Join Date: Jul 2010
Location: Hannover - Germany
Boat: Amel Sharki
Posts: 2,546
Re: OpenCPN Version 4.0 Released

Peter,
if you cannot compile OpenCPN yourself and don't want to wait for a bug fix of OpenCPN Mac you can override the key shortcuts yourself as a temporary solution.
Go to the settings in OS X --> Keyboard --> Shortcuts and make a new item "OpenCPN.app".
The example below is for a german version. You have to enter the correct name of the menu item and make a new shortcut there for each OpenCPN menu which is bothered.
Gerhard
Attached Thumbnails
Click image for larger version

Name:	shortcuts.png
Views:	164
Size:	89.6 KB
ID:	96175  
CarCode is offline   Reply With Quote
Old 28-01-2015, 07:28   #219
Registered User

Join Date: Nov 2014
Location: Netherlands
Posts: 219
Re: OpenCPN Version 4.0 Released

Gerhard,

Thanks for the info.
Should we make a tracker entry for this??

Peter
ptulp is offline   Reply With Quote
Old 28-01-2015, 07:33   #220
Registered User

Join Date: Jul 2010
Location: Hannover - Germany
Boat: Amel Sharki
Posts: 2,546
Re: OpenCPN Version 4.0 Released

Quote:
Originally Posted by ptulp View Post
Gerhard,

Thanks for the info.
Should we make a tracker entry for this??

Peter
There are several issues in the Mac version and never anybody cares what I wrote.
Gerhard
CarCode is offline   Reply With Quote
Old 28-01-2015, 07:39   #221
bcn
Registered User

Join Date: May 2011
Location: underway whenever possible
Boat: Rangeboat 39
Posts: 4,796
Re: OpenCPN Version 4.0 Released

Quote:
Originally Posted by ptulp View Post
Gerhard,

Thanks for the info.
Should we make a tracker entry for this??

Peter
Peter,

yes, please go ahead

Hubert
bcn is offline   Reply With Quote
Old 28-01-2015, 09:31   #222
Registered User

Join Date: Nov 2014
Location: Netherlands
Posts: 219
Re: OpenCPN Version 4.0 Released

Quote:
Originally Posted by bcn View Post
Peter,

yes, please go ahead

Hubert

I would like to, but tracker is not accessible at this moment.
Maybe later.

Peter
ptulp is offline   Reply With Quote
Old 28-01-2015, 13:25   #223
Registered User

Join Date: Dec 2005
Location: Helsingborg
Boat: Dufour 35
Posts: 3,891
Re: OpenCPN Version 4.0 Released

Quote:
Originally Posted by CarCode View Post
There are several issues in the Mac version and never anybody cares what I wrote.
Gerhard
Exactly which tasks, of those you entered in the tracker, are you referring to?
I suppose you are only talking about those as, Dave repeatedly said that entering bugs in the tracker is the only way that guarantees his attention.
Please enter all your observed bugs etc. in the tracker, asap.

Thomas
cagney is offline   Reply With Quote
Old 28-01-2015, 14:02   #224
Registered User
 
marinux's Avatar

Join Date: Dec 2010
Location: Kourou French Guiana South America
Boat: Trismus 37'
Posts: 98
Re: OpenCPN Version 4.0 Released

Nice, wonderfull, OpenCPN is the best ! but ...
I have no found occurences about this trouble:
Display raster charts with V4.0 is very bad - unusable.
Any touble with OCPN 3.X, on the same machine, with the same OS (future Xinutop Trusty based), with or without OpenGL.
Am I only one to have this problem ?
Bon vent, belle mer
__________________
Cordialement
Frank Marinux
FY4PS
marinux is offline   Reply With Quote
Old 28-01-2015, 15:07   #225
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,234
Re: OpenCPN Version 4.0 Released

Frank...
Screenshot? A chart causing problem? So far the only display "problem" I have seen with 4.0 were charts broken by manual header editing and not corrected by bsbfix.

Pavel
nohal is offline   Reply With Quote
Reply

Tags
enc, lease, opencpn


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
OpenCPN Beta Version 3.1.814 Released bdbcat OpenCPN 185 14-09-2012 07:43
OpenCPN Beta Version 3.1.802 Released bdbcat OpenCPN 158 14-08-2012 10:07
OpenCPN Beta Version 3.1.714 Released bdbcat OpenCPN 91 01-08-2012 17:08

Advertise Here


All times are GMT -7. The time now is 13:22.


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.