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 07-05-2011, 10:03   #16
Registered User

Join Date: Jan 2008
Location: New Bern, NC until January
Boat: Catalina 42
Posts: 18
Re: OpenCPN Version 2.4 Beta Build 506

I had been using 2.3.1 for some time before just switching to the newer 2.4.423, both running on Windows XP. At one time, using an earlier version, I could get the Grib files to display but I have no idea what I changed that resulted in not being able to use the Grib feature.

Where is the logfile located?
Roger Hutchinson is offline   Reply With Quote
Old 07-05-2011, 10:32   #17
Registered User

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

Quote:
Originally Posted by cagney View Post
To compile a package on amd64 one change is needed. line 75 -77 in CMakeLists.txt must be changed to this.

Which I think means that Cmake is not correctly identifying amd64, actually don't find an architecture at all. The default, above was i386.
Hi,

There's a new option to cmake to make it easier to build for 64 bit arch. No more need to edit CMakeLists.txt
For Ubuntu, just run:
Code:
cmake -DARCH=amd64 ../
For Fedora:
Code:
cmake -DARCH=x86_64 ../
and you're done.

This will make it possible to do cross compile in the future. I'll enhance it to for default detecting locale build arch soon.
SethDart is offline   Reply With Quote
Old 07-05-2011, 10:43   #18
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,211
Re: OpenCPN Version 2.4 Beta Build 506

Quote:
Originally Posted by Roger Hutchinson View Post
Where is the logfile located?
Installing OpenCPN | Official OpenCPN Homepage - scroll down to Location of Important Files. Log and config files.
nohal is offline   Reply With Quote
Old 07-05-2011, 12:19   #19
mrm
Registered User

Join Date: Feb 2011
Location: Poland, EU
Boat: crew on Bavaria 38 Cruiser
Posts: 654
Re: OpenCPN Version 2.4 Beta Build 506

Quote:
Originally Posted by bdbcat View Post
Ahoy OpenCPN'ers...

OpenCPN Version 2.4 Beta Build 506 will soon be available for download from opencpn.org.[...]
Source code documentation generated and uploaded to the usual place.

Marius
mrm is offline   Reply With Quote
Old 07-05-2011, 13:22   #20
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,401
Re: OpenCPN Version 2.4 Beta Build 506

ChuckSK....

Has that debug break in cm93.cpp ever hit for you?

Code:
 *(int *)(0) = 0;                              // error
//               return 0;               // error, bad pointer
Dave
bdbcat is offline   Reply With Quote
Old 07-05-2011, 14:40   #21
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,401
Re: OpenCPN Version 2.4 Beta Build 506

Hi folks...

What I now know about ABI compatibility of PlugIns:

1. Our PlugIn architecture is close, but not quite able to guarantee compatibility between old PlugIns and new OCPN versions. It has to do with the nuances of C++ compiler design. This is of course a goal, so we need to address this shortfall.

2. There are ways to fix it. I found some open source library templates that we can use/adapt for our purposes.

3. However, I judge it too much effort and risk for the OCPN 2.5 Release target in June. But, I think we can expect to have this new PlugIn interface in place for the next (2.7) Release in the Fall.

4. So, near term:
a. We should freeze the PlugIn API now. If PlugIn writers are thinking of asking for new interfaces, now would be a good time...
b. All of the third-party PlugIns will need to be rebuilt for the 2.5 Release, linking against the current (2.4.506) API. (unless, of course, the API has to change again before June)
This should be not too big an issue, since we are hosting them anyway....
c. I'll try to come up with a way to make OCPN 2.5 fail gracefully to load an existing incompatible PlugIn. Better than crashing, I think.....

Sorry for the snafu. I guess it took a full set of varied PlugIns to expose this problem. Better now than later.

But we have a plan....

Dave
bdbcat is offline   Reply With Quote
Old 07-05-2011, 15:26   #22
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,211
Re: OpenCPN Version 2.4 Beta Build 506

Dave...
Of course there would be a few nice additions to the API, but if they will not make it to 2.5 it's not a big deal, I can keep myself busy over the summer with what we have now and actually already am busy enough not to design these additions right now
To name what comes to my mind right now:
- access to the navobjects (read-only good enough for the start)
- access to the paths where we have plugins and localization stuff to implement a plugin manager plugin
- access to active route and waypoint with an event when there's a change to do vmg and other calculations without having to change the core
- plugin intercom infrastructure
- access to the chart database
If we don't implement anything of that, nothing happens - 2.7 is coming soon enough...

Pavel
nohal is offline   Reply With Quote
Old 07-05-2011, 17:30   #23
Registered User

Join Date: Apr 2009
Location: Marina Del Rey
Boat: Hylas 44
Posts: 387
Re: OpenCPN Version 2.4 Beta Build 506

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

Has that debug break in cm93.cpp ever hit for you?

Code:
 *(int *)(0) = 0;                              // error
//               return 0;               // error, bad pointer
Dave
Yes. In a cm93 display with no outlines selected and a scale of about 1,460,000 , pan to 58N 11E. Then turn the "show outlines" option on. Traps every time.
ChuckSK is offline   Reply With Quote
Old 07-05-2011, 19:14   #24
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,401
Re: OpenCPN Version 2.4 Beta Build 506

ChuckSK...

Oh.
Thanks. I've never hit this, and it was left in from long ago....

On the list

Dave
bdbcat is offline   Reply With Quote
Old 08-05-2011, 00:44   #25
Registered User
 
Gilletarom's Avatar

Join Date: Mar 2010
Location: France
Boat: 10.50 mètres
Posts: 2,988
Re: OpenCPN Version 2.4 Beta Build 506

Hello,

I do not know if my log files will give you something but who knows.

I started with WMM 0.3 loaded on the site but I note that in the toolbox, it is still writing version 0.2.

I then downloaded and installed 240-506.

I tried to run with plugins and I had a crash.

I uninstalled and reinstalled version 204-506 and I had another crash uin. It seems to happen out of the toolbox.

See 4 attached files, 2 jpg and 2 .log.doc (change .log.doc in .log)

Best regards

Gilletarom.
Attached Thumbnails
Click image for larger version

Name:	2011-05-08_Crash_1.jpg
Views:	197
Size:	31.9 KB
ID:	27090   Click image for larger version

Name:	2011-05-08_Crash_2.jpg
Views:	118
Size:	33.7 KB
ID:	27091  

Attached Files
File Type: doc 2011-05-08_240-506_opencpn_1.log.doc (40.5 KB, 44 views)
File Type: doc 2011-05-08_240-506_opencpn_2.log.doc (29.3 KB, 48 views)
Gilletarom is offline   Reply With Quote
Old 08-05-2011, 00:49   #26
Registered User
 
HamishB's Avatar

Join Date: Jan 2010
Location: New Zealand
Posts: 286
Re: OpenCPN Version 2.4 Beta Build 506

Quote:
Originally Posted by bdbcat View Post
84. Various CMake and PlugIn patches, thanks to Jean-Eudes.
any thoughts about including this one?
[pkg-grass] View of /packages/opencpn/trunk/debian/patches/rm_embedded_zlib.patch

Quote:
82. This is new. Note the "grabber" symbol at the far right side of the toolbar. Use this handle to drag the toolbar wherever you want it.
It "snaps" to the edges. Right click on the grabber, and the toolbar shifts to vertical format. On Windows (at least), the toolbar dims down transparently until you roll over it. Have fun....
feedback from debian/stable:
(wx 2.8.10.1)

dragging to the bottom edge of the chart canvas it sticks leaving a 2px gap below it. also in full-screen mode, a 1px gap to the right when trying to snap to the right-side edge.

put into vertical mode, the grabber is still a vertical bar of dots to the right of the first row (+) mag glass. Could it be a horiz bar of dots above the (+) mag glass? the current way creates a column of wasted grey space below it.

In general the drag-around, right-click-to-flip, and transparency all seems a tad bit buggy still, but you can see that it will be useful.

Right-click to change orientation req'd me to exit opencpn and restart it to see the (working) change.

I made the mistake of right clicking to go horiz while it was vertically snapped to the right edge, pushing the grabber off-screen. alt-left click drag didn't help; had to exit and rm the .conf file to get it back in control.

it would be nice if the alpha didn't happen in one big jump, it's a bit jarring. maybe add one or two more steps keeping the period between each step the same as it is now? (so overall shading takes 'x' times longer, but if we were in a rush we would all buy cigarette boats not sailboats, right?)

Quote:
85. Shift key with F6 reverses dimming direction, allowing easier control. Find just the level you want.
F6 has never worked for me on debian, but maybe it is just intended to be a MS Windows thing. No complains because F5 and xcalib do the trick just fine.

I notice my .conf file ends ChartDir1 with a weird string. Intended?
Quote:
[ChartDirectories]
ChartDir1=/path/to/charts^438117445504
finally, the blue-box line above the status line below the chart canvas leaves about 25% of the width of the window as a light grey, even in NGT mode colors (right-hand end). This, together with a single pixel wide border around everything is a bit distracting in night mode. If it has to stay for whatever reason, it would be nice if that border + block of the available charts line could turn black when in NGT mode.

thanks,
Hamish

ps- debian packaging rules updated for 2.4.506 in debian svn, amd64 binaries for debian/stable avail upon request, but I expect the ubuntu 10.04 ones will work just fine there as they are essentially the same vintage.
HamishB is offline   Reply With Quote
Old 08-05-2011, 01:04   #27
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,211
Re: OpenCPN Version 2.4 Beta Build 506

Gilletarom,
for whichever reason github's download system didn't have a good day yesterday and kept serving an old version of the file... Please redownload the plugin - unless it says 0.3 in the Toolbox, you don't have the new version. I've checked now and what gets downloaded should be right.

Pavel
nohal is offline   Reply With Quote
Old 08-05-2011, 05:08   #28
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,401
Re: OpenCPN Version 2.4 Beta Build 506

Hamish...

Thanks for the comments. I'll look at the zlib patch, and start to look again at all the debain repo "suggestions". Thanks for pushing this one ahead.

New toolbar: This Beta is really a "proof of concept", and to get some live feedback, such as yours. I appreciate it, and will refine the implementation as we go along. I think the idea has merit, though.

Funny that F6 does not work for you, but toolbar dimming does. They use similar wxWindows capabilities. Maybe you could step through the F6 code and have a look at where it fails? It uses wxTopLevelWindow::CanSetTransparent() and builds a full screen black "curtain" window which has its transparency set variably by F6.

The funny string on Chartdir is something like a homemade checksum of the dir, as an assist to detect changed directory contents.

Thanks
Dave
bdbcat is offline   Reply With Quote
Old 08-05-2011, 10:14   #29
Registered User

Join Date: Oct 2009
Location: West coast of Sweden
Boat: Najad391
Posts: 169
Re: OpenCPN Version 2.4 Beta Build 506

Thanks for the new version, but.....when updating to 506 the new version will not start. Running XP SP3. Revert to 423 and the program is running ok again.
Here is the install log:

Målkatalog: C:\Program\OpenCPN
Kör: "C:\Program\OpenCPN\Uninstall 2.4.423.exe" /S /type=1 _?=C:\Program\OpenCPN
Error on uninstalling
Radera fil: C:\Program\OpenCPN\Uninstall 2.4.423.exe
Skapa genväg: C:\Documents and Settings\All Users\Skrivbord\OpenCPN 2.4.506.lnk
Extrahera: license.txt... 100%
Extrahera: opencpn.exe... 100%
Extrahera: wxbase28u_net_vc_custom.dll... 100%
Extrahera: wxbase28u_vc_custom.dll... 100%
Extrahera: wxbase28u_xml_vc_custom.dll... 100%
Extrahera: wxmsw28u_adv_vc_custom.dll... 100%
Extrahera: wxmsw28u_aui_vc_custom.dll... 100%
Extrahera: wxmsw28u_core_vc_custom.dll... 100%
Målkatalog: C:\Program\OpenCPN\doc
Extrahera: help_en_US.html... 100%
Extrahera: help_web.html... 100%
Målkatalog: C:\Program\OpenCPN\doc\css
Extrahera: print.css... 100%
Målkatalog: C:\Program\OpenCPN\doc\images
Extrahera: 48px-Under_construction_icon-blue.png
Extrahera: DeviceManager-1.jpg... 100%
Extrahera: Fonts.png... 100%
Extrahera: GPS.png... 100%
Extrahera: Linux_0.png
Extrahera: Mob.png... 100%
Extrahera: Mob1.png... 100%
Extrahera: Mob2.png... 100%
Extrahera: Prolific.jpg... 100%
Extrahera: RM_wpt.png... 100%
Extrahera: Route_Properties.png... 100%
Extrahera: StatusBar.png
Extrahera: TS1.png... 100%
Extrahera: TS2.png... 100%
Extrahera: ToolBar_0.png
Extrahera: ToolBoxVector.png... 100%
Extrahera: Track%20Properties.png... 100%
Extrahera: Vista_0.png
Extrahera: ais-classB_0.png... 100%
Extrahera: ais-green.png
Extrahera: ais-lost.png
Extrahera: ais-moor.png
Extrahera: ais-red.png
Extrahera: ais-target%20list.png
Extrahera: ais-target-query.png... 100%
Extrahera: ais-yellow.png
Extrahera: ais.png
Extrahera: ais1.png... 100%
Extrahera: ais11.png... 100%
Extrahera: ais2.png... 100%
Extrahera: ais4.png
Extrahera: ais_0.png
Extrahera: ais_alarm.png
Extrahera: ais_disabled.png
Extrahera: ais_supressed.png
Extrahera: aistoolbox.png... 100%
Extrahera: anchor-watch.png... 100%
Extrahera: anchor-watch1.png... 100%
Extrahera: anchor-watch2.png... 100%
Extrahera: anchor-watch3.png... 100%
Extrahera: anchor-watch4.png... 100%
Extrahera: anchor-watch5.png... 100%
Extrahera: anchorwatch6.png... 100%
Extrahera: auto-follow_0.png
Extrahera: blue.png... 100%
Extrahera: chart-tab.png... 100%
Extrahera: cm93setting.png... 100%
Extrahera: colscheme.png
Extrahera: context.png... 100%
Extrahera: course-up_0.png
Extrahera: current.png
Extrahera: current_detail.png... 100%
Extrahera: currents.png
Extrahera: currents_box.png... 100%
Extrahera: default.png... 100%
Extrahera: etc.png... 100%
Extrahera: europe1.png... 100%
Extrahera: europe3.png... 100%
Extrahera: europe4.png... 100%
Extrahera: gc.png
Extrahera: gps1.png
Extrahera: gps2.png
Extrahera: gps3.png
Extrahera: gpsGrn.png... 100%
Extrahera: gpsRed.png
Extrahera: gpx_export.png
Extrahera: gpx_import.png
Extrahera: gpx_options_0.png
Extrahera: gpxin.png... 100%
Extrahera: grib-tb.png... 100%
Extrahera: grib.png... 100%
Extrahera: grib_0.png
Extrahera: grib_002.png
Extrahera: help.png
Extrahera: hidden-quilt.png
Extrahera: instchart.png... 100%
Extrahera: leginfo.png... 100%
Extrahera: lock_wpt_Etc.png... 100%
Extrahera: log.PNG... 100%
Extrahera: lookahead.png... 100%
Extrahera: measure.png... 100%
Extrahera: mob_btn.png
Extrahera: mp.png... 100%
Extrahera: north-up.png
Extrahera: not_participate.png
Extrahera: offset1.png... 100%
Extrahera: offset2.png... 100%
Extrahera: offset3.png... 100%
Extrahera: offset4.png... 100%
Extrahera: offset5.png... 100%
Extrahera: outline.png... 100%
Extrahera: pen1.png... 100%
Extrahera: pen2.png... 100%
Extrahera: pencil2.png... 100%
Extrahera: plugin-1.png... 100%
Extrahera: plugin-2.png... 100%
Extrahera: plugin-3.png... 100%
Extrahera: polyconic.png
Extrahera: print.html... 100%
Extrahera: print.png
Extrahera: query%20dialog.png... 100%
Extrahera: query2.png... 100%
Extrahera: quilt2.png
Extrahera: quilt3.png
Extrahera: quilt4.png
Extrahera: quilt5.png
Extrahera: right_rnc.png... 100%
Extrahera: right_vec.png... 100%
Extrahera: rollover.png... 100%
Extrahera: route-button.png... 100%
Extrahera: route-info1.png
Extrahera: route-info2.png
Extrahera: route-manager.png... 100%
Extrahera: route.png
Extrahera: route_manager.png
Extrahera: route_right_click.png... 100%
Extrahera: routes.png... 100%
Extrahera: scin.png
Extrahera: scout.png
Extrahera: seg.png
Extrahera: settings.png
Extrahera: settings_002.png
Extrahera: ship_grey.png
Extrahera: ship_red.png
Extrahera: skewed.png... 100%
Extrahera: skewed_0.png... 100%
Extrahera: sounding.png... 100%
Extrahera: tb11242.png
Extrahera: text.png
Extrahera: tide.jpg... 100%
Extrahera: tide.png
Extrahera: tides_detail.png... 100%
Extrahera: tidesml.png
Extrahera: tmerc.png
Extrahera: toolbar-2.png
Extrahera: toolbox-1.png... 100%
Extrahera: toolbox-etc.png... 100%
Extrahera: toolbox-grib.png... 100%
Extrahera: toolbox-vec.png... 100%
Extrahera: toolbox.png... 100%
Extrahera: toolbox1.png... 100%
Extrahera: toolbox2.png... 100%
Extrahera: toolbox4.png... 100%
Extrahera: toolbox7.png... 100%
Extrahera: tooltabs.png... 100%
Extrahera: track-prop.png... 100%
Extrahera: track.png
Extrahera: track_0.png... 100%
Extrahera: track_1.png... 100%
Extrahera: trail.png... 100%
Extrahera: version.png... 100%
Extrahera: wx1.png... 100%
Extrahera: wx3.png... 100%
Extrahera: wx4.png... 100%
Extrahera: zoomin.png
Extrahera: zoomout.png
Målkatalog: C:\Program\OpenCPN\doc\js
Extrahera: jquery-1.4.3.min.js... 100%
Extrahera: jquery-ui-1.8.5.custom.min.js... 100%
Målkatalog: C:\Program\OpenCPN\plugins
Extrahera: dashboard_pi.dll... 100%
Extrahera: grib_pi.dll... 100%
Målkatalog: C:\Program\OpenCPN\s57data
Extrahera: S52RAZDS.RLE... 100%
Extrahera: attdecode.csv... 100%
Extrahera: s57attributes.csv... 100%
Extrahera: s57expectedinput.csv... 100%
Extrahera: s57objectclasses.csv... 100%
Målkatalog: C:\Program\OpenCPN\share
Målkatalog: C:\Program\OpenCPN\share\locale
Målkatalog: C:\Program\OpenCPN\share\locale\cs
Målkatalog: C:\Program\OpenCPN\share\locale\cs\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\da
Målkatalog: C:\Program\OpenCPN\share\locale\da\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\de
Målkatalog: C:\Program\OpenCPN\share\locale\de\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\el_GR
Målkatalog: C:\Program\OpenCPN\share\locale\el_GR\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\es
Målkatalog: C:\Program\OpenCPN\share\locale\es\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\et
Målkatalog: C:\Program\OpenCPN\share\locale\et\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\fi_FI
Målkatalog: C:\Program\OpenCPN\share\locale\fi_FI\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\fr
Målkatalog: C:\Program\OpenCPN\share\locale\fr\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\it
Målkatalog: C:\Program\OpenCPN\share\locale\it\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\nb_NO
Målkatalog: C:\Program\OpenCPN\share\locale\nb_NO\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\nl
Målkatalog: C:\Program\OpenCPN\share\locale\nl\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\pl
Målkatalog: C:\Program\OpenCPN\share\locale\pl\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\pl_PL
Målkatalog: C:\Program\OpenCPN\share\locale\pl_PL\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\pt_BR
Målkatalog: C:\Program\OpenCPN\share\locale\pt_BR\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\pt_PT
Målkatalog: C:\Program\OpenCPN\share\locale\pt_PT\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\ru
Målkatalog: C:\Program\OpenCPN\share\locale\ru\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\sv
Målkatalog: C:\Program\OpenCPN\share\locale\sv\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\tr_TR
Målkatalog: C:\Program\OpenCPN\share\locale\tr_TR\LC_MESSAGES
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\share\locale\zh_TW
Målkatalog: C:\Program\OpenCPN\share\locale\zh_TW\LC_MESSAGES
Extrahera: opencpn-dashboard_pi.mo... 100%
Extrahera: opencpn-grib_pi.mo... 100%
Extrahera: opencpn.mo... 100%
Målkatalog: C:\Program\OpenCPN\sounds
Extrahera: 1bells.wav... 100%
Extrahera: 2bells.wav... 100%
Extrahera: 3bells.wav... 100%
Extrahera: 4bells.wav... 100%
Extrahera: 5bells.wav... 100%
Extrahera: 6bells.wav... 100%
Extrahera: 7bells.wav... 100%
Extrahera: 8bells.wav... 100%
Extrahera: README.bells... 100%
Målkatalog: C:\Program\OpenCPN\tcdata
Extrahera: HARMONIC... 100%
Extrahera: HARMONIC.IDX... 100%
Extrahera: README.harmonics... 100%
Målkatalog: C:\Program\OpenCPN\vc9
Extrahera: vcredist_x86.exe
Målkatalog: C:\Program\OpenCPN\wvsdata
Extrahera: readmewvs.txt... 100%
Extrahera: wvs1.dat... 100%
Extrahera: wvs43.dat... 100%
Målkatalog: C:\Program\OpenCPN
Kör: "C:\Program\OpenCPN\vc9\vcredist_x86.exe" /qb
Radera fil: C:\Program\OpenCPN\vc9\vcredist_x86.exe
Ta bort katalog: C:\Program\OpenCPN\vc9\
Skapade avinstallationsprogram: C:\Program\OpenCPN\Uninstall 2.4.506.exe
janp391 is offline   Reply With Quote
Old 08-05-2011, 10:43   #30
Registered User

Join Date: Jan 2008
Location: New Bern, NC until January
Boat: Catalina 42
Posts: 18
Re: OpenCPN Version 2.4 Beta Build 506

Dave,
Thanks for the help! I thought I had messed something up during my use of the software. I can easily wait for the next version to correct the problem.

I just want to say how great this software is as compared to many of the other navigation software systems we have used. It is intuitive, and easily set-up and run. Thanks for the great software, I recommend it to everyone we sail with and new friends we meet!
Roger Hutchinson 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
OpenCPN Version 2.4 Beta Build 423 bdbcat OpenCPN 66 05-05-2011 05:45
OpenCPN Version 2.4 Beta Build 412 bdbcat OpenCPN 63 22-04-2011 18:19
OpenCPN Version 2.4 Beta Build 324 bdbcat OpenCPN 141 12-04-2011 14:15
OpenCPN Version 2.4 Beta Build 310 bdbcat OpenCPN 53 27-03-2011 11:05

Advertise Here


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


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.