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-09-2012, 05:14   #1
Marine Service Provider
 
bdbcat's Avatar

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

Ahoy, OpenCPN'ers...

OpenCPN Version 3.1 Beta Build 919 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: beta31_stable

Changelog

54. Correct crash on Options dialog invocation.
55. Correct typo in CMake Mac build instructions to include styles in bundle.

Release Beta 3.1.919

Release Notes:
This quick turn Beta release is done to correct random crashes on Options dialog startup. Sorry for the glitch.

Thanks for your continued testing support!

Good Luck
Dave
bdbcat is online now   Reply With Quote
Old 19-09-2012, 09:49   #2
Registered User

Join Date: Jul 2009
Location: The Netherlands
Boat: Koopmans, 33 ft cutter
Posts: 170
Re: OpenCPN Beta Version 3.1.919 Released

Great that the update is so quickly available. But: where can I download the Windows version?
Zoef is offline   Reply With Quote
Old 19-09-2012, 12:33   #3
Registered User

Join Date: Sep 2012
Boat: Sampson, Ketch, 45'
Posts: 2
Re: OpenCPN Beta Version 3.1.919 Released

Thanks for the quick response/fix. But where/when can I get the Windows version?
MQVirtual is offline   Reply With Quote
Old 19-09-2012, 14:31   #4
Registered User

Join Date: Aug 2012
Location: San Jose, CA, USA
Posts: 83
Re: OpenCPN Beta Version 3.1.919 Released

Just tried (compiled myself under Linux 64bit) and there seems to be a problem with the Mariner's Standard checkbox list for vector charts. I noticed more or less randomly things disappearing from the display (bridges, marks) and they re-appear when I select "Select All". One concrete example (visible e.g. in the San Francisco Bay): I'm not able to unselect "Ferry Route".

Test case:
1) open "Options"
2) select "Charts"
3) select "Vector charts"
4) select "Mariners Standard"
5) click on "Select All"
6) uncheck "Ferry Route"
7) click "Ok" => Ferry routes are still displayed
8) repeat 1-3 => "Ferry Route" is checked, but "Lake" is unchecked

So seems that the mapping from display names to internal names is broken somewhere. Have no time right now to debug, but might do so tomorrow if needed.
nkiesel is offline   Reply With Quote
Old 19-09-2012, 15:28   #5
Registered User

Join Date: Aug 2012
Location: San Jose, CA, USA
Posts: 83
Re: OpenCPN Beta Version 3.1.919 Released

The following hack (dropping the wxLB_SORT) fixes the problem, but of course results in an unsorted list (note: actually resulting list is mostly sorted, just the last 15 or so elements are unsorted).

I also used wxLB_MULTIPLE instead of wxLB_SINGLE just because that seems to be the correct choice, although even with wxLB_SINGLE multi-selects are obviously possibe (looks like a wx bug to me).

Code:
diff --git a/src/options.cpp b/src/options.cpp
index be08f11..c3b76b9 100644
--- a/src/options.cpp
+++ b/src/options.cpp
@@ -827,7 +827,7 @@ void options::CreatePanel_VectorCharts( size_t parent, int border_size, int grou
 
     wxString* ps57CtlListBoxStrings = NULL;
     ps57CtlListBox = new wxCheckListBox( ps57Ctl, ID_CHECKLISTBOX, wxDefaultPosition,
-            wxSize( 200, 250 ), 0, ps57CtlListBoxStrings, wxLB_SINGLE | wxLB_HSCROLL | wxLB_SORT );
+            wxSize( 200, 250 ), 0, ps57CtlListBoxStrings, wxLB_MULTIPLE | wxLB_HSCROLL );
     marinersSizer->Add( ps57CtlListBox, 1, wxALL | wxEXPAND, group_item_spacing );
 
     wxBoxSizer* btnRow = new wxBoxSizer( wxHORIZONTAL );
nkiesel is offline   Reply With Quote
Old 19-09-2012, 16:42   #6
Registered User

Join Date: Mar 2009
Posts: 83
Re: OpenCPN Beta Version 3.1.919 Released

Dave

The beta 915 and then the 919 releases were and are readily available on the Downloads page for Ubuntu and Mac users but not Windows users.

The Windows release for 915 was very delayed and it appears that it will be the same for the 919 release.

Surely it cannot be TOO hard to ensure that they are all be released together at the same time - unless there is a specific reason for not releasing the Windows version ???
dougwm10 is offline   Reply With Quote
Old 19-09-2012, 20:31   #7
Marine Service Provider
 
bdbcat's Avatar

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

Dougwm10...

I (and some other developers) work at the very skinny end of a long internet connection. I'm a full-time cruiser and work from my floating home. My last mile is always Wifi, and sometimes nothing at all.

At this very moment, the Wifi connection I am (legally) using precludes FTP uploads. That's their policy, and its not unusual.

Our other two Windows builders are away from the net at the moment as well.

So, no 30 MB uploads are possible at the moment. Mac and Windows versions are ready, but have no way to upload.

The only alternative to the present discomfort would be to hold back the 3.1.919 Beta until all three platforms are uploaded and ready, whenever that may be. Of course, that makes no sense at all.

So, we do the best we can do with the volunteer resources at hand.

Of course, wired Windows developers interested in becoming Release builders are always welcome to the team. Or a sufficient donation stream to enable a high bandwidth cellular connection would also help the situation.

I am sorry for the deferred Windows Release. I really want to get the Beta feedback from the 85% of OpenCPN user base on Windows. Really.

Dave
bdbcat is online now   Reply With Quote
Old 20-09-2012, 00:27   #8
Registered User

Join Date: Mar 2010
Location: Normandy, France
Boat: Flush Poker, 8.25m (Point Barre)
Posts: 340
Re: OpenCPN Beta Version 3.1.919 Released

I just built and uploaded 3.1.919
You can find it here: Download OpenCPN | Official OpenCPN Homepage

PS: I'm not an official Windows packager. I hope I did it well ;-)
SethDart is offline   Reply With Quote
Old 20-09-2012, 01:26   #9
Registered User

Join Date: Jan 2011
Location: France/UK
Boat: Gib'Sea 402
Posts: 547
Re: OpenCPN Beta Version 3.1.919 Released

Quote:
Originally Posted by nkiesel View Post
Just tried (compiled myself under Linux 64bit) and there seems to be a problem with the Mariner's Standard checkbox list for vector charts. I noticed more or less randomly things disappearing from the display (bridges, marks) and they re-appear when I select "Select All". One concrete example (visible e.g. in the San Francisco Bay): I'm not able to unselect "Ferry Route".

Test case:
1) open "Options"
2) select "Charts"
3) select "Vector charts"
4) select "Mariners Standard"
5) click on "Select All"
6) uncheck "Ferry Route"
7) click "Ok" => Ferry routes are still displayed
8) repeat 1-3 => "Ferry Route" is checked, but "Lake" is unchecked

So seems that the mapping from display names to internal names is broken somewhere. Have no time right now to debug, but might do so tomorrow if needed.
Same on Windows version - installed on Win7 ult.
hoolie is offline   Reply With Quote
Old 20-09-2012, 01:29   #10
Registered User

Join Date: Jan 2011
Location: France/UK
Boat: Gib'Sea 402
Posts: 547
Re: OpenCPN Beta Version 3.1.919 Released

Quote:
Originally Posted by SethDart View Post
I just built and uploaded 3.1.919
You can find it here: Download OpenCPN | Official OpenCPN Homepage

PS: I'm not an official Windows packager. I hope I did it well ;-)
You did! Thanks - it installs and runs just fine (well nearly)
hoolie is offline   Reply With Quote
Old 20-09-2012, 01:43   #11
Registered User
 
yachtvalhalla's Avatar

Join Date: Aug 2009
Location: Philippines
Boat: Formerly Fuji 32 Ketch
Posts: 1,017
Re: OpenCPN Beta Version 3.1.919 Released

Quote:
Originally Posted by SethDart View Post
I hope I did it well ;-)
It runs fine on both XP and W7Ultimate.

Interestingly the Toolbar is the old style on W7U and the new style on XP

Many thanks for the quick work.

Terry
yachtvalhalla is offline   Reply With Quote
Old 20-09-2012, 03:58   #12
Registered User

Join Date: Dec 2008
Boat: Journeyman
Posts: 705
Re: OpenCPN Beta Version 3.1.919 Released

Quote:
Originally Posted by yachtvalhalla View Post
Interestingly the Toolbar is the old style on W7U and the new style on XP
You can change easily under Options > User Interface.

Could be caused by you having run earlier betas on the XP machine. They defaulted to the new style.
JesperWe is offline   Reply With Quote
Old 20-09-2012, 04:08   #13
Registered User

Join Date: Dec 2008
Boat: Journeyman
Posts: 705
Re: OpenCPN Beta Version 3.1.919 Released

Quote:
Originally Posted by dougwm10 View Post
Surely it cannot be TOO hard to ensure that they are all be released together at the same time - unless there is a specific reason for not releasing the Windows version ???
Well I can tell you that for me it certainly was TOO hard. I was fighting 60 knot winds and howling rain all day in the marina. Both my neighbors were unattended, and poorly fendered. One was loosely moored and swung badly back and forth between me and the next yacht. We had half a meter of water ON TOP of the pier we're moored to, which was kind of good because all the boats would have crashed into the pier otherwise, now they went over it instead. Some rudders were centimeters from crushing. All the boats moving around had fenders popping out all over the place, once cleanly routed mooring lines getting stuck and snapping as a result of chafe etc etc.

Not the day to sit down and do an OpenCPN build...
JesperWe is offline   Reply With Quote
Old 20-09-2012, 04:23   #14
Registered User

Join Date: Jan 2011
Location: France/UK
Boat: Gib'Sea 402
Posts: 547
Re: OpenCPN Beta Version 3.1.919 Released

Sounds horrendous. What part of the world are you moored at present?

BTW, we DO appreciate what the development team accomplish, in spite of limited time and resources. Many thanks!
hoolie is offline   Reply With Quote
Old 20-09-2012, 04:36   #15
Registered User
 
yachtvalhalla's Avatar

Join Date: Aug 2009
Location: Philippines
Boat: Formerly Fuji 32 Ketch
Posts: 1,017
Re: OpenCPN Beta Version 3.1.919 Released

Quote:
Originally Posted by JesperWe View Post
You can change easily under Options > User Interface.
Guess I need to RTFM

At my age I prefer 'traditional'

Terry
yachtvalhalla 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 07:04.


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.