Cruisers Forum
 

Go Back   Cruisers & Sailing Forums > Seamanship, Navigation & Boat Handling > OpenCPN
Cruiser Wiki Click Here to Login
Register Vendors FAQ Community Calendar Today's Posts Log in

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 19-07-2013, 11:13   #1
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,401
OpenCPN Beta Version 3.3.719 Released

Ahoy, OpenCPN'ers...

OpenCPN Version 3.3 Beta Build 719
will soon be available for download from opencpn.org.

Monitor the opencpn.org Downloads page to find and download the latest Beta version binaries.....

Source is available now on github at:
https://github.com/OpenCPN/OpenCPN
Branch: master

Changelog:

54. Process UCS-2/UTF-16 encoding of ENC attributes NOBJNM, NINFOR and NTXTDS (FS#919)
55. Implement optional display of localized object names on S57 charts. (FS#919)
56. Correct crash on some Dutch ENC's due to bad ENC encoding (FS#1028)
57. Correct Unicode character storage and translation in navobj items.
58. Correct for multiple AIS alert sound instances on linux (FS#1030)
59. Correct Windows Sound test logic.
60. Correct loss of focus on Ctrl-I (FS#1001)
61. Correct for incorrect action on repeated access to Help dialog tab. (FS#1038)
62. Correct Extended light sector display for "obscured" sectors (FS#1039)
63. Correct Mac Route/Waypoint dialog modality hang when called from RouteManagerDialog.
64. Correct Topmark display on cm93/ENC for Mac
65. Correct GPX waypoint http link description field decoding.
66. Correct S57 SENC format for International language feature/attributes (FS#1034)
67. Correct decoding of WAV sound files with "fact" chunks embedded (FS#1037)
68. Correct occasional Route/Waypoint scrambling on MacBook
69. Correct loading of routes/tracks in layers (FS#1040)
70. Fix track color GPX persistency .
71. Improve TCP datastream restartability. (FS#1031)
72. Add AIS AtoN type information to rollover and target query (FS#1041, FS#340)
73. Update to Track Properties Dialog

Release 3.3.719

Notes:

This beta gives us a significant performance upgrade for Macintosh builds. OpenCPN is now a true 64-bit application on Mac, and uses the wxWidgets 2.9 version with native Cocoa support. Please report even the slightest anomaly on Mac install or runtime behaviour.

66. If you are using S57 ENCs with non-english text embedded, you will need to rebuild the SENCs for the affected chart cells.

Thanks, and happy testing
Dave
bdbcat is offline   Reply With Quote
Old 19-07-2013, 12:39   #2
Registered User

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

The packages for Win, Mac and Ubuntu 13.04, are now available.
Download OpenCPN | Official OpenCPN Homepage

Thomas
cagney is offline   Reply With Quote
Old 19-07-2013, 13:08   #3
Registered User

Join Date: Feb 2011
Posts: 1,108
Re: OpenCPN Beta Version 3.3.719 Released

Thanks a lot for the new edition (3.3.719) for Windows. It load much faster the weather over a wide area (say North Atlantic). How do you down load the climatology? For the ENC it seems OK.
Regards
P_Dub
P_Dub is offline   Reply With Quote
Old 19-07-2013, 13:47   #4
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,208
Re: OpenCPN Beta Version 3.3.719 Released

Testers...
The beta PPA for all the various Ubuntus (and Debian) is currently building, the i386 packages are mostly done, amd64 will be available in a couple of hours.

Please pay attention to testing point 73 as it's the first in a series of substantial changes to the Track and Route Properties and what will be caught with tracks won't reappear in routes.
Also if you are missing any features there, please take the time to describe them in flyspray requests, they will be at least considered for the next beta - I'm really trying to follow the various forum threads but to be honest most of what I read there gets pushed out of my brain by other stuff before I get to implementing it...

Thanks

Pavel
nohal is online now   Reply With Quote
Old 19-07-2013, 16:41   #5
Registered User

Join Date: Apr 2009
Location: Marina Del Rey
Boat: Hylas 44
Posts: 387
Re: OpenCPN Beta Version 3.3.719 Released

This patch fixes exported route files so they can be read by Garmin HomePort.

Code:
diff --git a/src/NavObjectCollection.cpp b/src/NavObjectCollection.cpp
index 2385738..0d0b5a1 100644
--- a/src/NavObjectCollection.cpp
+++ b/src/NavObjectCollection.cpp
@@ -548,12 +548,7 @@ bool GPXCreateWpt( pugi::xml_node node, RoutePoint *pr, unsigned int flags )
     node.append_attribute("lat") = s.mb_str();
     s.Printf(_T("%.9f"), pr->m_lon);
     node.append_attribute("lon") = s.mb_str();
- 
-    if(flags & OUT_TYPE) {
-        child = node.append_child("type");
-        child.append_child(pugi::node_pcdata).set_value("WPT");
-    }
-        
+
     if(flags & OUT_TIME) {
             child = node.append_child("time");
             if( pr->m_timestring.Len() )
@@ -588,7 +583,12 @@ bool GPXCreateWpt( pugi::xml_node node, RoutePoint *pr, unsigned int flags )
         else {
             child.append_child("empty");
         }
-    }       
+    }
+
+    if(flags & OUT_TYPE) {
+        child = node.append_child("type");
+        child.append_child(pugi::node_pcdata).set_value("WPT");
+    }
  
     if( (flags & OUT_GUID) || (flags & OUT_VIZ) || (flags & OUT_VIZ_NAME) || (flags & OUT_SHARED)
             || (flags & OUT_AUTO_NAME) ) {
@@ -1191,6 +1191,7 @@ void NavObjectCollection1::SetRootGPXNode(void)
         m_gpx_root.append_attribute( "xmlns" ) = "http://www.topografix.com/GPX/1/1";
         m_gpx_root.append_attribute( "xmlns:gpxx" ) =  "http://www.garmin.com/xmlschemas/GpxExtensions/v3";
         m_gpx_root.append_attribute( "xsi:schemaLocation" ) = "http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd";
+        m_gpx_root.append_attribute( "xmlns:opencpn" ) = "http://www.opencpn.org";
         
     }
 }
Chuck
ChuckSK is offline   Reply With Quote
Old 19-07-2013, 19:19   #6
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,401
Re: OpenCPN Beta Version 3.3.719 Released

Hello testers...

I concur and reinforce what Pavel said about using Flyspray for feature requests. There are many very good ideas that fly by on the Forum, but don't make it into code simply because the developers are working from Task Lists, checking off the boxes as they go along. When we get enough new boxes ticked, we release a Beta. The chances of a non-listed item being implemented in a Beta release are consequently quite low.

As an example: user configurable arrival circle radius is a good and simple idea, that came as a "drive-by" suggestion in another thread. However, it never made it onto any list, so it slipped our minds and did not happen in this Beta. Sorry, maybe next Beta..if it is on a list.

Notwithstanding the above, we thank you all for your testing efforts. We really appreciate it.

Dave
bdbcat is offline   Reply With Quote
Old 20-07-2013, 10:49   #7
Registered User
 
sinbad7's Avatar

Join Date: Sep 2003
Location: Ubatuba,SP,Brazil (Ex Norway)
Boat: (Ex) Alu. 60' yacht-"Eight Bells"
Posts: 2,731
Images: 57
Send a message via Skype™ to sinbad7
Re: OpenCPN Beta Version 3.3.719 Released

Dave/Pavel...

Thanks for the new Version 3.3 Beta Build 719....

The Route Manager is still not showing the ´Link Description´ but instead displays the entire ´Link´ I thought we were clear on this?

I will test the POI editing/exporting a little later.

Tore
Attached Thumbnails
Click image for larger version

Name:	link description.png
Views:	203
Size:	46.0 KB
ID:	64342   Click image for larger version

Name:	links.png
Views:	173
Size:	23.4 KB
ID:	64343  

__________________
"And all I ask is a tall ship and a star to steer her by."
sinbad7 is offline   Reply With Quote
Old 20-07-2013, 11:43   #8
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,401
Re: OpenCPN Beta Version 3.3.719 Released

Tore...

Please post a short POI file from your set for specific testing of the link description field.

Thanks
Dave
bdbcat is offline   Reply With Quote
Old 20-07-2013, 15:19   #9
Registered User
 
sinbad7's Avatar

Join Date: Sep 2003
Location: Ubatuba,SP,Brazil (Ex Norway)
Boat: (Ex) Alu. 60' yacht-"Eight Bells"
Posts: 2,731
Images: 57
Send a message via Skype™ to sinbad7
Re: OpenCPN Beta Version 3.3.719 Released

Dave..

Here´s a short typical POI...

https://docs.google.com/file/d/0B3t9...it?usp=sharing

Tore
__________________
"And all I ask is a tall ship and a star to steer her by."
sinbad7 is offline   Reply With Quote
Old 20-07-2013, 15:34   #10
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,208
Re: OpenCPN Beta Version 3.3.719 Released

Tore...
The link in the GPX you posted has no description at all. In such case we display the address so there's at least something to click on...
Code:
<?xml version="1.0"?>
<gpx version="1.1" creator="OpenCPN" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.topografix.com/GPX/1/1" xmlns:gpxx="http://www.garmin.com/xmlschemas/GpxExtensions/v3" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd">
  <wpt lat="-23.461076667" lon="-45.079211667">
    <type>WPT</type>
    <time>2013-04-14T14:39:56Z</time>
    <name>BlooSee</name>
    <sym>info</sym>
    <extensions>
      <opencpn:guid>52b0ffff-254c-49b5-a53b-fc09654affff</opencpn:guid>
      <opencpn:viz>1</opencpn:viz>
      <opencpn:viz_name>1</opencpn:viz_name>
    </extensions>
    <link href="http://www.bloosee.com/explore/#lt=-23.471504&amp;ln=-45.123559&amp;z=12&amp;m=1&amp;c=111111111111">
       <text></text>
    </link>
  </wpt>
</gpx>
Or did it have the description before? I can't make 3.3.719 forget the link description whatever I try.

Pavel
nohal is online now   Reply With Quote
Old 20-07-2013, 15:48   #11
Registered User
 
sinbad7's Avatar

Join Date: Sep 2003
Location: Ubatuba,SP,Brazil (Ex Norway)
Boat: (Ex) Alu. 60' yacht-"Eight Bells"
Posts: 2,731
Images: 57
Send a message via Skype™ to sinbad7
Re: OpenCPN Beta Version 3.3.719 Released

Pavel..

They all have/had a Link Description..

I just imported the same BlooSee.gpx POI for editing. BOTH fields contained the link. I changed the Link description and it now works normally.

Here´s one of the shortest group POI files which ALL have Link descriptions:
Quote:
<?xml version="1.0" encoding="utf-8"?>
<gpx xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.topografix.com/GPX/1/1" xmlns:gpxx="http://www.garmin.com/xmlschemas/GpxExtensions/v3" xmlnspencpn="http://www.opencpn.org" version="1.1" creator="OpenCPN" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd">
<wpt lat="35.579157320" lon="-102.633375291">
<time>2012-04-22T16:20:11Z</time>
<name>FIND US CITIES</name>
<link href="file:/C:/MARINE FACIL/LOCLATLON/LOCATIONS.csv">
<text>US location-lat lon database</text>
</link>
<sym>info-L</sym>
<type>WPT</type>
<extensions>
<opencpn:guid>14490000-f807-441c-87e2-10a04726ffff</opencpn:guid>
<opencpn:viz>1</opencpn:viz>
<opencpn:viz_name>1</opencpn:viz_name>
</extensions>
</wpt>
<wpt lat="26.657298611" lon="-81.001648889">
<time>2013-04-22T19:32:07Z</time>
<name>US Naut.Maps</name>
<link href="http://j.mp/ZIuzaW">
<text>NOAA nautical maps of Flrida &amp; Caribbean</text>
</link>
<sym>ge-icon.44</sym>
<type>WPT</type>
<extensions>
<opencpn:guid>0da20000-13d6-47c8-8f5d-a0775ca5ffff</opencpn:guid>
<opencpn:viz>1</opencpn:viz>
<opencpn:viz_name>1</opencpn:viz_name>
</extensions>
</wpt>
<wpt lat="31.684516667" lon="-83.199911667">
<time>2012-04-25T02:14:38Z</time>
<name>GPX</name>
<link href="file:/C:/Program Files/4shared Desktop/desktop.exe">
<text>Get .GPX track/route</text>
</link>
<sym>info-L</sym>
<type>WPT</type>
<extensions>
<opencpn:guid>6409ffff-0554-4667-b97e-992566b9ffff</opencpn:guid>
<opencpn:viz>1</opencpn:viz>
<opencpn:viz_name>1</opencpn:viz_name>
</extensions>
</wpt>
</gpx>

Tore
Attached Thumbnails
Click image for larger version

Name:	bloosee edited.png
Views:	196
Size:	41.4 KB
ID:	64356  
__________________
"And all I ask is a tall ship and a star to steer her by."
sinbad7 is offline   Reply With Quote
Old 20-07-2013, 16:41   #12
Registered User
 
sinbad7's Avatar

Join Date: Sep 2003
Location: Ubatuba,SP,Brazil (Ex Norway)
Boat: (Ex) Alu. 60' yacht-"Eight Bells"
Posts: 2,731
Images: 57
Send a message via Skype™ to sinbad7
Re: OpenCPN Beta Version 3.3.719 Released

Pavel..

Seems <name>BlooSee</name> and <text>BlooSee POIS</text> gets mixed up somehow?

Here is MY original BlooSee.gpx:

Quote:
<?xml version="1.0"?>
<gpx version="1.1" creator="OpenCPN" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.topografix.com/GPX/1/1" xmlns:gpxx="http://www.garmin.com/xmlschemas/GpxExtensions/v3" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd">
<wpt lat="-23.461076667" lon="-45.079211667">
<type>WPT</type>
<time>2013-04-14T14:39:56Z</time>
<name>BlooSee</name>
<sym>info</sym>
<extensions>
<opencpn:guid>52b0ffff-254c-49b5-a53b-fc09654affff</opencpn:guid>
<opencpn:viz>1</opencpn:viz>
<opencpn:viz_name>1</opencpn:viz_name>
</extensions>
<link href="http://www.bloosee.com/explore/#lt=-23.471504&amp;ln=-45.123559&amp;z=12&amp;m=1&amp;c=111111111111">
<text>BlooSee POIS</text>
</link>
</wpt>
</gpx>

Tore
__________________
"And all I ask is a tall ship and a star to steer her by."
sinbad7 is offline   Reply With Quote
Old 20-07-2013, 17:03   #13
Registered User
 
sinbad7's Avatar

Join Date: Sep 2003
Location: Ubatuba,SP,Brazil (Ex Norway)
Boat: (Ex) Alu. 60' yacht-"Eight Bells"
Posts: 2,731
Images: 57
Send a message via Skype™ to sinbad7
Re: OpenCPN Beta Version 3.3.719 Released

Pavel..

There´s TWO ´descriptions´areas, Link description and Description in the BIG field.
Perhaps they were mixed up in the programing? Normally the ´Description´area can include imported optimized Route data in .gpx format from qtVlm but NOT POI data.

Tore
__________________
"And all I ask is a tall ship and a star to steer her by."
sinbad7 is offline   Reply With Quote
Old 20-07-2013, 17:27   #14
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,401
Re: OpenCPN Beta Version 3.3.719 Released

Tore...

I think some of your POI files were corrupted by the previous Beta 3.3.604, including the BlooSea.gpx link you included above. That one has, as Pavel notes, no Description field for the html link.

So, your corrected POI sets should now be OK in 3.3.719, whether imported or loaded as layers.

Sorry for giving you extra work to fix your POI sets.

Thanks
Dave
bdbcat is offline   Reply With Quote
Old 21-07-2013, 00:53   #15
Registered User

Join Date: Jun 2011
Location: 27south
Boat: Easton 47
Posts: 65
Re: OpenCPN Beta Version 3.3.719 Released

Dave
3.3.719 running on Mac OS 10.7.5 got an issue with the adjusting screen brightness button, clicking through the levels does not darken or brighten the main window but affects the toolbar, various objects on the chart and status bar only. Hope its not just me

Mo
Icnoships is offline   Reply With Quote
Reply

Tags
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


Advertise Here


All times are GMT -7. The time now is 03:58.


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.