├── .circleci └── config.yml ├── .clang-format ├── .cmake-format.yaml ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── MacOS.yaml │ ├── clang-format-check.yml │ ├── doxygen.yml │ ├── linux.yml │ ├── windows.yaml │ └── zulip.yml ├── .gitmodules ├── .pre-commit-config.yaml ├── .travis.yml ├── .vscode ├── c_cpp_properties.json └── settings.json ├── Authors.adoc ├── CMakeLists.txt ├── COPYING.gplv2 ├── COPYING.gplv3 ├── COPYING.lgplv2 ├── COPYING.lgplv3 ├── Docs └── OSENC ├── INSTALL ├── LICENSING ├── LINUX_DEVICES.md ├── MESSAGES.adoc ├── NSIS.template.in.in ├── README ├── VERSION.cmake ├── android ├── androidUTIL.cpp ├── androidUTIL.h └── crashlytics.h ├── app.manifest ├── check-pr ├── ci ├── api-docs.sh ├── appveyor-upload.sh ├── appveyor.bat ├── circleci-build-android-corelib-armhf.sh ├── circleci-build-flatpak.sh ├── control ├── docker-auth.sh ├── generic-build-debian.sh ├── generic-build-flatpak.sh ├── generic-build-macos.sh ├── generic-upload.sh ├── github-build-flatpak.sh ├── github-pre-build.sh ├── github-win_deps.bat ├── gpg.tar.gz.cpt ├── id_opencpn.tar.cpt ├── macos-deps ├── macos-sign-cleanup.sh ├── macos-sign-setup.sh ├── macos-universal-deps.sh └── universal-build-macos.sh ├── cli ├── CMakeLists.txt ├── api_shim.cpp └── console.cpp ├── cmake ├── BundleMingwLibs.cmake ├── FindEXIF.cmake ├── FindFFmpeg.cmake ├── FindGTK3.cmake ├── FindHarfBuzz.cmake ├── FindOcpnLibarchive.cmake ├── FindPANGO.cmake ├── FindPackageHandleStandardArgs.cmake ├── FindPackageMessage.cmake ├── FindPixman.cmake ├── FindTinyXML.cmake ├── FindZSTD.cmake ├── Findgps.cmake ├── GetArch.cmake ├── OcpnFindCairo.cmake ├── OcpnFindExpat.cmake ├── OcpnFindFfmpeg.cmake ├── OcpnFindGpsd.cmake ├── OcpnFindGtk.cmake ├── SimpleWxConfig.cmake ├── TargetSetup.cmake ├── Utils.cmake ├── gitcheck.cmake ├── in-files │ └── config.h.in ├── uninstall.cmake.in ├── version_git.cmake └── version_git.in ├── data ├── Authors.adoc ├── CoC-1973_2018-InlandECDIS_20220912.pdf ├── CoC-909_2013-InlandECDIS_20170308s.pdf ├── authors.html ├── basemap_shp │ ├── basemap_crude_10x10.cpg │ ├── basemap_crude_10x10.dbf │ ├── basemap_crude_10x10.prj │ ├── basemap_crude_10x10.qmd │ ├── basemap_crude_10x10.shp │ ├── basemap_crude_10x10.shx │ ├── basemap_low.cpg │ ├── basemap_low.dbf │ ├── basemap_low.prj │ ├── basemap_low.shp │ └── basemap_low.shx ├── changelog ├── changelog.gz ├── configs │ └── OCPNTemplate-Recovery.conf ├── copyright ├── doc │ └── help_web.html ├── filters │ ├── all-data.filter.json │ ├── all-nmea.filter.json │ ├── default.filter.json │ ├── malformed.filter.json │ ├── nmea-input.filter.json │ ├── nmea-output.filter.json │ └── plugin-msg.filter.json ├── gshhs │ ├── poly-c-1.dat │ ├── wdb_borders_c.b │ └── wdb_rivers_c.b ├── help_web.html ├── license.html ├── license.txt ├── ocpn-plugins.xml ├── opencpn.png ├── s57data │ ├── Helvetica.txf │ ├── S52RAZDS.RLE │ ├── attdecode.csv │ ├── chartsymbols.xml │ ├── rastersymbols-dark.png │ ├── rastersymbols-day.png │ ├── rastersymbols-dusk.png │ ├── s57attributes.csv │ ├── s57expectedinput.csv │ └── s57objectclasses.csv ├── sounds │ ├── 1bells.wav │ ├── 2bells.wav │ ├── README.bells │ ├── beep1.wav │ ├── beep3.wav │ ├── beep_ssl.wav │ └── phonering1.wav ├── ssfn │ └── FreeSans.sfn ├── styles │ └── qtstylesheet.qss ├── svg │ ├── MUI_flat │ │ ├── CompassRose.svg │ │ ├── CompassRoseBlue.svg │ │ ├── CompassRoseMag.svg │ │ ├── Dashboard.svg │ │ ├── Dashboard_rollover.svg │ │ ├── Dashboard_rollover_toggled.svg │ │ ├── Dashboard_toggled.svg │ │ ├── GRIB.svg │ │ ├── GRIB_rollover.svg │ │ ├── GRIB_rollover_toggled.svg │ │ ├── GRIB_toggled.svg │ │ ├── MUI_RMD.svg │ │ ├── MUI_Sconfig_1.svg │ │ ├── MUI_Sconfig_2.svg │ │ ├── MUI_colorscheme.svg │ │ ├── MUI_follow.svg │ │ ├── MUI_follow_active.svg │ │ ├── MUI_follow_ahead.svg │ │ ├── MUI_help.svg │ │ ├── MUI_menu.svg │ │ ├── MUI_menu_rollover.svg │ │ ├── MUI_print.svg │ │ ├── MUI_route.svg │ │ ├── MUI_route_rollover_toggled.svg │ │ ├── MUI_route_toggled.svg │ │ ├── MUI_settings.svg │ │ ├── MUI_settings_disabled.svg │ │ ├── MUI_track.svg │ │ ├── MUI_track_rollover.svg │ │ ├── MUI_track_rollover_toggled.svg │ │ ├── MUI_track_toggled.svg │ │ ├── MUI_zoom-in.svg │ │ ├── MUI_zoom-out.svg │ │ ├── WMM.svg │ │ ├── X_mult.svg │ │ ├── check_mark.svg │ │ ├── circle-off.svg │ │ ├── circle-on.svg │ │ ├── exclaim_mark.svg │ │ ├── gps1Bar.svg │ │ ├── gps2Bar.svg │ │ ├── gps3Bar.svg │ │ ├── gpsGrn.svg │ │ ├── gpsGry.svg │ │ ├── gpsRed.svg │ │ ├── help-info.svg │ │ ├── mob_btn.svg │ │ ├── notification-critical-1.svg │ │ ├── notification-critical-2.svg │ │ ├── notification-critical.svg │ │ ├── notification-info-1.svg │ │ ├── notification-info-2.svg │ │ ├── notification-info.svg │ │ ├── notification-warning-1.svg │ │ ├── notification-warning-2.svg │ │ ├── notification-warning.svg │ │ ├── setting_gear.svg │ │ └── trash_bin.svg │ ├── journeyman │ │ ├── CompassRose.svg │ │ ├── CompassRoseBlue.svg │ │ ├── gps1Bar.svg │ │ ├── gps2Bar.svg │ │ ├── gps3Bar.svg │ │ ├── gpsGrn.svg │ │ ├── gpsGry.svg │ │ └── gpsRed.svg │ ├── journeyman_flat │ │ ├── CompassRose.svg │ │ ├── CompassRoseBlue.svg │ │ ├── gps1Bar.svg │ │ ├── gps2Bar.svg │ │ ├── gps3Bar.svg │ │ ├── gpsGrn.svg │ │ ├── gpsGry.svg │ │ └── gpsRed.svg │ ├── markicons │ │ ├── 1st-Active-Waypoint.svg │ │ ├── 1st-Anchorage.svg │ │ ├── 1st-Diamond.svg │ │ ├── 1st-Man-Overboard.svg │ │ ├── 1st-No-Anchoring.svg │ │ ├── Activity-Campfire.svg │ │ ├── Activity-Camping.svg │ │ ├── Activity-Diving-Scuba-Flag.svg │ │ ├── Activity-Diving-Scuba-Tank.svg │ │ ├── Activity-Diving-Snorkel.svg │ │ ├── Activity-Diving-Spearing.svg │ │ ├── Activity-Fishing.svg │ │ ├── Authority-Customs.svg │ │ ├── Authority-Health.svg │ │ ├── Authority-Immigration.svg │ │ ├── Authority-Police.svg │ │ ├── Authority-Quarantine-Area.svg │ │ ├── Authority-Quarantine-Building.svg │ │ ├── Authority-Quarantine-Flag.svg │ │ ├── DragHandle.svg │ │ ├── Hazard-Airplane.svg │ │ ├── Hazard-Animals-Crocodile.svg │ │ ├── Hazard-Animals-Jellyfish.svg │ │ ├── Hazard-Animals-Shark.svg │ │ ├── Hazard-Danger.svg │ │ ├── Hazard-Dredging.svg │ │ ├── Hazard-Fish-Aquatic-Farm.svg │ │ ├── Hazard-Fish-Lobster-String.svg │ │ ├── Hazard-Fish-Nets.svg │ │ ├── Hazard-Lighthouse.svg │ │ ├── Hazard-Obstruction-Deep.svg │ │ ├── Hazard-Obstruction-Dry.svg │ │ ├── Hazard-Obstruction-Shallow.svg │ │ ├── Hazard-Oil-Platform.svg │ │ ├── Hazard-Overfalls.svg │ │ ├── Hazard-Pollution-Air.svg │ │ ├── Hazard-Pollution-Bio.svg │ │ ├── Hazard-Pollution-Nuclear.svg │ │ ├── Hazard-Pollution-Oil.svg │ │ ├── Hazard-Pollution-Quarantine-Area.svg │ │ ├── Hazard-Power-Cable.svg │ │ ├── Hazard-Power-Line1.svg │ │ ├── Hazard-Power-Line2.svg │ │ ├── Hazard-Rock-Awash.svg │ │ ├── Hazard-Rock-Exposed.svg │ │ ├── Hazard-Sandbar.svg │ │ ├── Hazard-Snag.svg │ │ ├── Hazard-Warning.svg │ │ ├── Hazard-Wind-Farm.svg │ │ ├── Hazard-Wreck1.svg │ │ ├── Hazard-Wreck2.svg │ │ ├── Info-Fish-Haven.svg │ │ ├── Info-Fish-Pelagic.svg │ │ ├── Info-Fish-Reef.svg │ │ ├── Info-Fish-Shark.svg │ │ ├── Info-Fish-Whale.svg │ │ ├── Info-Fish.svg │ │ ├── Info-Info.svg │ │ ├── Info-No-Discharge.svg │ │ ├── Info-Photo.svg │ │ ├── Info-Video.svg │ │ ├── Landmarks-Bridge1.svg │ │ ├── Landmarks-Bridge2.svg │ │ ├── Landmarks-Bridge3.svg │ │ ├── Landmarks-Pier1.svg │ │ ├── Landmarks-Pier2.svg │ │ ├── Landmarks-Pier3.svg │ │ ├── Landmarks-Stream-River.svg │ │ ├── Landmarks-Waterfall.svg │ │ ├── Marks-Active-Waypoint.svg │ │ ├── Marks-Beacon-Danger.svg │ │ ├── Marks-Beacon-SafeWater.svg │ │ ├── Marks-Blank.svg │ │ ├── Marks-Boarding-Location.svg │ │ ├── Marks-Boundary.svg │ │ ├── Marks-Buoy-Danger.svg │ │ ├── Marks-Buoy-Safe-Water.svg │ │ ├── Marks-Buoy-TypeA.svg │ │ ├── Marks-Buoy-TypeB.svg │ │ ├── Marks-Cardinal-East-Lighted.svg │ │ ├── Marks-Cardinal-East.svg │ │ ├── Marks-Cardinal-Nord-Lighted.svg │ │ ├── Marks-Cardinal-Nord.svg │ │ ├── Marks-Cardinal-North-Lighted.svg │ │ ├── Marks-Cardinal-North.svg │ │ ├── Marks-Cardinal-South-Lighted.svg │ │ ├── Marks-Cardinal-South.svg │ │ ├── Marks-Cardinal-West-Lighted.svg │ │ ├── Marks-Cardinal-West.svg │ │ ├── Marks-Caution-Lighted.svg │ │ ├── Marks-Caution.svg │ │ ├── Marks-Danger-Topmark-Lighted.svg │ │ ├── Marks-Danger-Topmark.svg │ │ ├── Marks-Lateral-Port-IALA-A-Lighted.svg │ │ ├── Marks-Lateral-Port-IALA-A.svg │ │ ├── Marks-Lateral-Port-IALA-B-Lighted.svg │ │ ├── Marks-Lateral-Port-IALA-B.svg │ │ ├── Marks-Lateral-Starboard-IALA-A-Lighted.svg │ │ ├── Marks-Lateral-Starboard-IALA-A.svg │ │ ├── Marks-Lateral-Starboard-IALA-B-Lighted.svg │ │ ├── Marks-Lateral-Starboard-IALA-B.svg │ │ ├── Marks-Light-Green.svg │ │ ├── Marks-Light-Red-Green.svg │ │ ├── Marks-Light-Red.svg │ │ ├── Marks-Light-TypeA.svg │ │ ├── Marks-Light-TypeB.svg │ │ ├── Marks-Light-Vessel.svg │ │ ├── Marks-Mooring-Buoy-Super.svg │ │ ├── Marks-Mooring-Buoy.svg │ │ ├── Marks-Mooring-Float.svg │ │ ├── Marks-Mooring-Pile.svg │ │ ├── Marks-New-Danger-Lighted.svg │ │ ├── Marks-New-Danger.svg │ │ ├── Marks-Race-Committee-Start-Boat.svg │ │ ├── Marks-Race-Finish.svg │ │ ├── Marks-Race-Start.svg │ │ ├── Marks-Race-Tetrahedron-Mark1.svg │ │ ├── Marks-Race-Tetrahedron-Mark2.svg │ │ ├── Marks-Race-Tetrahedron-Mark3.svg │ │ ├── Marks-Race-Tetrahedron-Mark4.svg │ │ ├── Marks-Race-Tetrahedron-Mark5.svg │ │ ├── Marks-Safe-Water-Lighted.svg │ │ ├── Marks-Safe-Water.svg │ │ ├── Sea-Current-Eastbound.svg │ │ ├── Sea-Current-N-Eastbound.svg │ │ ├── Sea-Current-N-Westbound.svg │ │ ├── Sea-Current-Northbound.svg │ │ ├── Sea-Current-S-Eastbound.svg │ │ ├── Sea-Current-S-Westbound.svg │ │ ├── Sea-Current-Southbound.svg │ │ ├── Sea-Current-Westbound.svg │ │ ├── Sea-DepthA-Black.svg │ │ ├── Sea-DepthA-Blue.svg │ │ ├── Sea-DepthA-Green.svg │ │ ├── Sea-DepthA-Magenta.svg │ │ ├── Sea-DepthA-Orange.svg │ │ ├── Sea-DepthA-Red.svg │ │ ├── Sea-DepthA-White.svg │ │ ├── Sea-DepthA-Yellow.svg │ │ ├── Sea-DepthB-Black.svg │ │ ├── Sea-DepthB-Blue.svg │ │ ├── Sea-DepthB-Green.svg │ │ ├── Sea-DepthB-Magenta.svg │ │ ├── Sea-DepthB-Orange.svg │ │ ├── Sea-DepthB-Red.svg │ │ ├── Sea-DepthB-White.svg │ │ ├── Sea-DepthB-Yellow.svg │ │ ├── Sea-Eddies-Black.svg │ │ ├── Sea-Eddies-Blue.svg │ │ ├── Sea-Eddies-Green.svg │ │ ├── Sea-Eddies-Magenta.svg │ │ ├── Sea-Eddies-Orange.svg │ │ ├── Sea-Eddies-Red.svg │ │ ├── Sea-Eddies-White.svg │ │ ├── Sea-Eddies-Yellow.svg │ │ ├── Sea-Floor-Coral.svg │ │ ├── Sea-Floor-Sea-Weed.svg │ │ ├── Sea-Floor-Text-Clay.svg │ │ ├── Sea-Floor-Text-Coral.svg │ │ ├── Sea-Floor-Text-Grass.svg │ │ ├── Sea-Floor-Text-Mud.svg │ │ ├── Sea-Floor-Text-Rock.svg │ │ ├── Sea-Floor-Text-Sand.svg │ │ ├── Sea-Height-Black.svg │ │ ├── Sea-Height-Blue.svg │ │ ├── Sea-Height-Green.svg │ │ ├── Sea-Height-Magenta.svg │ │ ├── Sea-Height-Orange.svg │ │ ├── Sea-Height-Red.svg │ │ ├── Sea-Height-White.svg │ │ ├── Sea-Height-Yellow.svg │ │ ├── Service-Chandlery.svg │ │ ├── Service-Dock-Dinghy.svg │ │ ├── Service-Dock.svg │ │ ├── Service-Food.svg │ │ ├── Service-Fuel-Jerry-Diesel.svg │ │ ├── Service-Fuel-Jerry-Petrol.svg │ │ ├── Service-Fuel-Jerry.svg │ │ ├── Service-Fuel-LPG.svg │ │ ├── Service-Fuel-Pump-Diesel-Petrol.svg │ │ ├── Service-Fuel-Pump-Diesel.svg │ │ ├── Service-Fuel-Pump-Petrol.svg │ │ ├── Service-Grocery1.svg │ │ ├── Service-Grocery2.svg │ │ ├── Service-Haulout.svg │ │ ├── Service-Ice1.svg │ │ ├── Service-Ice2.svg │ │ ├── Service-Ice3.svg │ │ ├── Service-Internet-Cafe.svg │ │ ├── Service-Internet-WiFi.svg │ │ ├── Service-Laundry.svg │ │ ├── Service-Marina.svg │ │ ├── Service-Public-Landing.svg │ │ ├── Service-Pump-Out-Boat.svg │ │ ├── Service-Pump-Out-Facility.svg │ │ ├── Service-Repairs.svg │ │ ├── Service-Water1.svg │ │ ├── Service-Water2.svg │ │ ├── Service-Wine&Dine.svg │ │ ├── Service-Yacht-Club.svg │ │ ├── Symbol-Anchor1.svg │ │ ├── Symbol-Anchor2.svg │ │ ├── Symbol-Anchor3.svg │ │ ├── Symbol-Arrow-Black.svg │ │ ├── Symbol-Arrow-Blue.svg │ │ ├── Symbol-Arrow-Green.svg │ │ ├── Symbol-Arrow-Magenta.svg │ │ ├── Symbol-Arrow-Orange.svg │ │ ├── Symbol-Arrow-Red.svg │ │ ├── Symbol-Arrow-White.svg │ │ ├── Symbol-Arrow-Yellow.svg │ │ ├── Symbol-Circle-Black.svg │ │ ├── Symbol-Circle-Blue.svg │ │ ├── Symbol-Circle-Green.svg │ │ ├── Symbol-Circle-Magenta.svg │ │ ├── Symbol-Circle-Orange.svg │ │ ├── Symbol-Circle-Red.svg │ │ ├── Symbol-Circle-White.svg │ │ ├── Symbol-Circle-Yellow.svg │ │ ├── Symbol-Circle.svg │ │ ├── Symbol-Diamond-Black.svg │ │ ├── Symbol-Diamond-Blue.svg │ │ ├── Symbol-Diamond-Green.svg │ │ ├── Symbol-Diamond-Magenta.svg │ │ ├── Symbol-Diamond-Orange.svg │ │ ├── Symbol-Diamond-Red.svg │ │ ├── Symbol-Diamond-White.svg │ │ ├── Symbol-Diamond-Yellow.svg │ │ ├── Symbol-Empty.svg │ │ ├── Symbol-Exclamation-Black.svg │ │ ├── Symbol-Exclamation-Blue.svg │ │ ├── Symbol-Exclamation-Green.svg │ │ ├── Symbol-Exclamation-Magenta.svg │ │ ├── Symbol-Exclamation-Orange.svg │ │ ├── Symbol-Exclamation-Red.svg │ │ ├── Symbol-Exclamation-White.svg │ │ ├── Symbol-Exclamation-Yellow.svg │ │ ├── Symbol-Glow-LargeBlack.svg │ │ ├── Symbol-Glow-LargeBlue.svg │ │ ├── Symbol-Glow-LargeGreen.svg │ │ ├── Symbol-Glow-LargeMagenta.svg │ │ ├── Symbol-Glow-LargeOrange.svg │ │ ├── Symbol-Glow-LargeRed.svg │ │ ├── Symbol-Glow-LargeWhite.svg │ │ ├── Symbol-Glow-LargeYellow.svg │ │ ├── Symbol-Glow-Small-Black.svg │ │ ├── Symbol-Glow-Small-Blue.svg │ │ ├── Symbol-Glow-Small-Green.svg │ │ ├── Symbol-Glow-Small-Magenta.svg │ │ ├── Symbol-Glow-Small-Orange.svg │ │ ├── Symbol-Glow-Small-Red.svg │ │ ├── Symbol-Glow-Small-White.svg │ │ ├── Symbol-Glow-Small-Yellow.svg │ │ ├── Symbol-Pin-Black.svg │ │ ├── Symbol-Pin-Blue.svg │ │ ├── Symbol-Pin-Green.svg │ │ ├── Symbol-Pin-Magenta.svg │ │ ├── Symbol-Pin-Orange.svg │ │ ├── Symbol-Pin-Red.svg │ │ ├── Symbol-Pin-White.svg │ │ ├── Symbol-Pin-Yellow.svg │ │ ├── Symbol-Question-Black.svg │ │ ├── Symbol-Question-Blue.svg │ │ ├── Symbol-Question-Green.svg │ │ ├── Symbol-Question-Magenta.svg │ │ ├── Symbol-Question-Orange.svg │ │ ├── Symbol-Question-Red.svg │ │ ├── Symbol-Question-White.svg │ │ ├── Symbol-Question-Yellow.svg │ │ ├── Symbol-Spot-Black.svg │ │ ├── Symbol-Spot-Blue.svg │ │ ├── Symbol-Spot-Green.svg │ │ ├── Symbol-Spot-Magenta.svg │ │ ├── Symbol-Spot-Orange.svg │ │ ├── Symbol-Spot-Red.svg │ │ ├── Symbol-Spot-White.svg │ │ ├── Symbol-Spot-Yellow.svg │ │ ├── Symbol-Square-Black.svg │ │ ├── Symbol-Square-Blue.svg │ │ ├── Symbol-Square-Green.svg │ │ ├── Symbol-Square-Magenta.svg │ │ ├── Symbol-Square-Orange.svg │ │ ├── Symbol-Square-Red.svg │ │ ├── Symbol-Square-White.svg │ │ ├── Symbol-Square-Yellow.svg │ │ ├── Symbol-Square.svg │ │ ├── Symbol-Star-Black.svg │ │ ├── Symbol-Star-Blue.svg │ │ ├── Symbol-Star-Green.svg │ │ ├── Symbol-Star-Magenta.svg │ │ ├── Symbol-Star-Orange.svg │ │ ├── Symbol-Star-Red.svg │ │ ├── Symbol-Star-White.svg │ │ ├── Symbol-Star-Yellow.svg │ │ ├── Symbol-Tick-Black.svg │ │ ├── Symbol-Tick-Blue.svg │ │ ├── Symbol-Tick-Green.svg │ │ ├── Symbol-Tick-Magenta.svg │ │ ├── Symbol-Tick-Orange.svg │ │ ├── Symbol-Tick-Red.svg │ │ ├── Symbol-Tick-White.svg │ │ ├── Symbol-Tick-Yellow.svg │ │ ├── Symbol-Triangle.svg │ │ ├── Symbol-X-Large-Black.svg │ │ ├── Symbol-X-Large-Blue.svg │ │ ├── Symbol-X-Large-Green.svg │ │ ├── Symbol-X-Large-Magenta.svg │ │ ├── Symbol-X-Large-Orange.svg │ │ ├── Symbol-X-Large-Red.svg │ │ ├── Symbol-X-Large-White.svg │ │ ├── Symbol-X-Large-Yellow.svg │ │ ├── Symbol-X-Small-Black.svg │ │ ├── Symbol-X-Small-Blue.svg │ │ ├── Symbol-X-Small-Green.svg │ │ ├── Symbol-X-Small-Magenta.svg │ │ ├── Symbol-X-Small-Orange.svg │ │ ├── Symbol-X-Small-Red.svg │ │ ├── Symbol-X-Small-White.svg │ │ ├── Symbol-X-Small-Yellow.svg │ │ ├── Weather-Hurricane-NH.svg │ │ ├── Weather-Hurricane-SH.svg │ │ ├── Weather-Tropical Depression.svg │ │ ├── Weather-Tropical High.svg │ │ ├── Weather-Tropical-Storm-NH.svg │ │ └── Weather-Tropical-Storm-SH.svg │ └── traditional │ │ ├── 4WayMove.svg │ │ ├── AIS.svg │ │ ├── AIS_AlertGeneral.svg │ │ ├── AIS_AlertGeneral_Active.svg │ │ ├── AIS_AlertGeneral_Active_rollover.svg │ │ ├── AIS_AlertGeneral_rollover.svg │ │ ├── AIS_Disabled.svg │ │ ├── AIS_Disabled_rollover.svg │ │ ├── AIS_Normal_Active.svg │ │ ├── AIS_Normal_Active_rollover.svg │ │ ├── AIS_Suppressed.svg │ │ ├── AIS_Suppressed_Active.svg │ │ ├── AIS_Suppressed_Active_rollover.svg │ │ ├── AIS_Suppressed_rollover.svg │ │ ├── AIS_rollover.svg │ │ ├── CompassRose.svg │ │ ├── CompassRoseBlue.png │ │ ├── CompassRoseBlue.svg │ │ ├── colorscheme.svg │ │ ├── colorscheme_rollover.svg │ │ ├── current.svg │ │ ├── current_rollover.svg │ │ ├── current_rollover_toggled.svg │ │ ├── current_toggled.svg │ │ ├── down.svg │ │ ├── emblem-default.svg │ │ ├── emblem-download.svg │ │ ├── emblem-legacy-update.svg │ │ ├── emblem-readonly.svg │ │ ├── emblem-system.svg │ │ ├── emblem-unmanaged.svg │ │ ├── follow.svg │ │ ├── follow_rollover.svg │ │ ├── follow_rollover_toggled.svg │ │ ├── follow_toggled.svg │ │ ├── ghost.svg │ │ ├── gps1Bar.svg │ │ ├── gps2Bar.svg │ │ ├── gps3Bar.svg │ │ ├── gpsGrn.svg │ │ ├── gpsGry.svg │ │ ├── gpsRed.svg │ │ ├── grabber.svg │ │ ├── grabber_ext.svg │ │ ├── grabber_hi.svg │ │ ├── help.svg │ │ ├── help_rollover.svg │ │ ├── left.svg │ │ ├── mob.svg │ │ ├── mob_btn.svg │ │ ├── mob_btn_rollover.svg │ │ ├── packageBox.svg │ │ ├── pencil.svg │ │ ├── print.svg │ │ ├── print_rollover.svg │ │ ├── right.svg │ │ ├── route.svg │ │ ├── route_manager.svg │ │ ├── route_manager_rollover.svg │ │ ├── route_rollover.svg │ │ ├── route_rollover_toggled.svg │ │ ├── route_toggled.svg │ │ ├── scin.svg │ │ ├── scin_disabled.svg │ │ ├── scin_rollover.svg │ │ ├── scout.svg │ │ ├── scout_disabled.svg │ │ ├── scout_rollover.svg │ │ ├── settings.svg │ │ ├── settings_disabled.svg │ │ ├── settings_rollover.svg │ │ ├── text.svg │ │ ├── text_rollover.svg │ │ ├── text_rollover_toggled.svg │ │ ├── text_toggled.svg │ │ ├── tide.svg │ │ ├── tide_rollover.svg │ │ ├── tide_rollover_toggled.svg │ │ ├── tide_toggled.svg │ │ ├── track.svg │ │ ├── track_rollover.svg │ │ ├── track_rollover_toggled.svg │ │ ├── track_toggled.svg │ │ ├── up.svg │ │ ├── zoomin.svg │ │ ├── zoomin_rollover.svg │ │ ├── zoomout.svg │ │ └── zoomout_rollover.svg ├── tcdata │ ├── HARMONICS_NO_US │ ├── HARMONICS_NO_US.IDX │ ├── README.harmonics │ └── harmonics-dwf-20210110-free.tcd ├── tools │ └── doc_from_wiki.sh └── wvsdata │ ├── readmewvs.txt │ ├── wvs1.dat │ └── wvs43.dat ├── deploy_rsa.enc ├── docker ├── Dockerfile.builder └── README.md ├── flatpak ├── Makefile ├── README.md ├── manifest.patch └── repo │ ├── index.html │ ├── opencpn.flatpakref │ └── opencpn.flatpakrepo ├── glutil ├── CMakeLists.txt └── console.cpp ├── gui ├── include │ └── gui │ │ ├── about.h │ │ ├── about_frame.h │ │ ├── about_frame_impl.h │ │ ├── adapter_info.h │ │ ├── ais.h │ │ ├── ais_info_gui.h │ │ ├── ais_target_alert_dlg.h │ │ ├── ais_target_list_dlg.h │ │ ├── ais_target_query_dlg.h │ │ ├── canvas_config.h │ │ ├── canvas_menu.h │ │ ├── canvas_options.h │ │ ├── cat_settings.h │ │ ├── catalog_mgr.h │ │ ├── ch_info_win.h │ │ ├── chart_ctx_factory.h │ │ ├── chartbase.h │ │ ├── chartdb.h │ │ ├── chartdbs.h │ │ ├── chartimg.h │ │ ├── chcanv.h │ │ ├── cm93.h │ │ ├── color_handler.h │ │ ├── compass.h │ │ ├── concanv.h │ │ ├── config_mgr.h │ │ ├── conn_params_panel.h │ │ ├── connection_edit.h │ │ ├── connections_dlg.h │ │ ├── crashprint.h │ │ ├── data_monitor.h │ │ ├── detail_slider.h │ │ ├── displays.h │ │ ├── download_mgr.h │ │ ├── dychart.h │ │ ├── emboss_data.h │ │ ├── filter_dlg.h │ │ ├── flex_hash.h │ │ ├── font_desc.h │ │ ├── font_mgr.h │ │ ├── gl_chart_canvas.h │ │ ├── gl_headers.h │ │ ├── gl_tex_cache.h │ │ ├── gl_texture_descr.h │ │ ├── gl_texture_mgr.h │ │ ├── go_to_position_dlg.h │ │ ├── gshhs.h │ │ ├── gui_lib.h │ │ ├── hotkeys_dlg.h │ │ ├── idx_entry.h │ │ ├── ienc_toolbar.h │ │ ├── kml.h │ │ ├── layer.h │ │ ├── link_prop_dlg.h │ │ ├── load_errors_dlg.h │ │ ├── mark_info.h │ │ ├── mbtiles.h │ │ ├── mui_bar.h │ │ ├── n0183_ctx_factory.h │ │ ├── navutil.h │ │ ├── notification_manager_gui.h │ │ ├── o_senc.h │ │ ├── ocp_cursor.h │ │ ├── ocpn_app.h │ │ ├── ocpn_aui_manager.h │ │ ├── ocpn_fontdlg.h │ │ ├── ocpn_frame.h │ │ ├── ocpn_gl_options.h │ │ ├── ocpn_list_ctrl.h │ │ ├── ocpn_pixel.h │ │ ├── ocpn_platform.h │ │ ├── ocpn_region.h │ │ ├── ocpndc.h │ │ ├── options.h │ │ ├── peer_client_dlg.h │ │ ├── piano.h │ │ ├── pluginmanager.h │ │ ├── print_dialog.h │ │ ├── printout_base.h │ │ ├── printout_chart.h │ │ ├── printtable.h │ │ ├── priority_gui.h │ │ ├── quilt.h │ │ ├── rest_server_gui.h │ │ ├── rollover_win.h │ │ ├── route_ctx_factory.h │ │ ├── route_gui.h │ │ ├── route_point_gui.h │ │ ├── route_printout.h │ │ ├── route_prop_dlg.h │ │ ├── route_prop_dlg_impl.h │ │ ├── route_validator.h │ │ ├── routeman_gui.h │ │ ├── routemanagerdialog.h │ │ ├── s57_light.h │ │ ├── s57_object_desc.h │ │ ├── s57_ocpn_utils.h │ │ ├── s57_query_dlg.h │ │ ├── s57_sector.h │ │ ├── s57chart.h │ │ ├── safe_mode_gui.h │ │ ├── senc_manager.h │ │ ├── send_to_gps_dlg.h │ │ ├── send_to_peer_dlg.h │ │ ├── shaders.h │ │ ├── shapefile_basemap.h │ │ ├── ssfn.h │ │ ├── station_data.h │ │ ├── styles.h │ │ ├── svg_icons.h │ │ ├── tc_data_factory.h │ │ ├── tc_data_source.h │ │ ├── tc_error_code.h │ │ ├── tc_win.h │ │ ├── tcds_ascii_harmonic.h │ │ ├── tcds_binary_harmonic.h │ │ ├── tcmgr.h │ │ ├── thumbwin.h │ │ ├── tide_time.h │ │ ├── time_textbox.h │ │ ├── timers.h │ │ ├── toolbar.h │ │ ├── tooltip.h │ │ ├── track_gui.h │ │ ├── track_printout.h │ │ ├── track_prop_dlg.h │ │ ├── tty_scroll.h │ │ ├── udev_rule_mgr.h │ │ ├── undo.h │ │ ├── update_mgr.h │ │ ├── usb_devices.h │ │ ├── viewport.h │ │ ├── waypointman_gui.h │ │ ├── wiz_ui.h │ │ └── wiz_ui_proto.h └── src │ ├── about.cpp │ ├── about_frame.cpp │ ├── about_frame_impl.cpp │ ├── adapter_info.cpp │ ├── ais.cpp │ ├── ais_info_gui.cpp │ ├── ais_target_alert_dlg.cpp │ ├── ais_target_list_dlg.cpp │ ├── ais_target_query_dlg.cpp │ ├── canvas_config.cpp │ ├── canvas_menu.cpp │ ├── canvas_options.cpp │ ├── cat_settings.cpp │ ├── catalog_mgr.cpp │ ├── ch_info_win.cpp │ ├── chartdb.cpp │ ├── chartdbs.cpp │ ├── chartimg.cpp │ ├── chcanv.cpp │ ├── cm93.cpp │ ├── color_handler.cpp │ ├── compass.cpp │ ├── concanv.cpp │ ├── config_mgr.cpp │ ├── conn_params_panel.cpp │ ├── connection_edit.cpp │ ├── connections_dlg.cpp │ ├── crashprint.cpp │ ├── data_monitor.cpp │ ├── detail_slider.cpp │ ├── displays.cpp │ ├── download_mgr.cpp │ ├── filter_dlg.cpp │ ├── flex_hash.cpp │ ├── font_desc.cpp │ ├── font_mgr.cpp │ ├── gl_chart_canvas.cpp │ ├── gl_tex_cache.cpp │ ├── gl_texture_descr.cpp │ ├── gl_texture_mgr.cpp │ ├── go_to_position_dlg.cpp │ ├── gshhs.cpp │ ├── gui_lib.cpp │ ├── hotkeys_dlg.cpp │ ├── idx_entry.cpp │ ├── ienc_toolbar.cpp │ ├── initwiz │ ├── init_wiz.fbp │ ├── wiz_ui.cpp │ └── wiz_ui_proto.cpp │ ├── kml.cpp │ ├── layer.cpp │ ├── link_prop_dlg.cpp │ ├── load_errors_dlg.cpp │ ├── mark_info.cpp │ ├── mbtiles │ ├── mbtiles.cpp │ ├── tile_cache.cpp │ ├── tile_cache.h │ ├── tile_descr.h │ ├── tile_queue.h │ ├── tile_thread.cpp │ └── tile_thread.h │ ├── mui_bar.cpp │ ├── navutil.cpp │ ├── notification_manager_gui.cpp │ ├── o_senc.cpp │ ├── ocp_cursor.cpp │ ├── ocpn_app.cpp │ ├── ocpn_aui_manager.cpp │ ├── ocpn_fontdlg.cpp │ ├── ocpn_frame.cpp │ ├── ocpn_gl_options.cpp │ ├── ocpn_list_ctrl.cpp │ ├── ocpn_pixel.cpp │ ├── ocpn_platform.cpp │ ├── ocpn_plugin_gui.cpp │ ├── ocpn_region.cpp │ ├── ocpndc.cpp │ ├── options.cpp │ ├── peer_client_dlg.cpp │ ├── piano.cpp │ ├── pluginmanager.cpp │ ├── print_dialog.cpp │ ├── printout_base.cpp │ ├── printout_chart.cpp │ ├── printtable.cpp │ ├── priority_gui.cpp │ ├── quilt.cpp │ ├── rest_server_gui.cpp │ ├── rollover_win.cpp │ ├── route_gui.cpp │ ├── route_point_gui.cpp │ ├── route_printout.cpp │ ├── route_prop_dlg.cpp │ ├── route_prop_dlg_impl.cpp │ ├── route_validator.cpp │ ├── routeman_gui.cpp │ ├── routemanagerdialog.cpp │ ├── s57_ocpn_utils.cpp │ ├── s57_query_dlg.cpp │ ├── s57chart.cpp │ ├── s57obj.cpp │ ├── safe_mode_gui.cpp │ ├── senc_manager.cpp │ ├── send_to_gps_dlg.cpp │ ├── send_to_peer_dlg.cpp │ ├── shaders.cpp │ ├── shapefile_basemap.cpp │ ├── station_data.cpp │ ├── styles.cpp │ ├── svg_icons.cpp │ ├── tc_data_factory.cpp │ ├── tc_data_source.cpp │ ├── tc_win.cpp │ ├── tcds_ascii_harmonic.cpp │ ├── tcds_binary_harmonic.cpp │ ├── tcmgr.cpp │ ├── thumbwin.cpp │ ├── toolbar.cpp │ ├── tooltip.cpp │ ├── track_gui.cpp │ ├── track_printout.cpp │ ├── track_prop_dlg.cpp │ ├── tty_scroll.cpp │ ├── udev_rule_mgr.cpp │ ├── undo.cpp │ ├── update_mgr.cpp │ ├── viewport.cpp │ └── waypointman_gui.cpp ├── include ├── intro-comm.h ├── intro-plugin-comm.h ├── intro.h └── ocpn_plugin.h ├── libs ├── AndroidLibs.cmake ├── IXWebSocket │ ├── .clang-format │ ├── .dockerignore │ ├── .github │ │ └── workflows │ │ │ ├── docker.yml │ │ │ ├── mkdocs.yml │ │ │ ├── unittest_linux.yml │ │ │ ├── unittest_linux_asan.yml │ │ │ ├── unittest_mac_tsan_mbedtls.yml │ │ │ ├── unittest_mac_tsan_openssl.yml │ │ │ ├── unittest_mac_tsan_sectransport.yml │ │ │ ├── unittest_uwp.yml │ │ │ ├── unittest_windows.yml │ │ │ └── unittest_windows_gcc.yml │ ├── .pre-commit-config.yaml │ ├── CMake │ │ ├── FindDeflate.cmake │ │ ├── FindMbedTLS.cmake │ │ └── FindSpdLog.cmake │ ├── CMakeLists.txt │ ├── Dockerfile │ ├── LICENSE.txt │ ├── README.md │ ├── SECURITY.md │ ├── docker-compose.yml │ ├── docker │ │ ├── Dockerfile.alpine │ │ ├── Dockerfile.centos │ │ ├── Dockerfile.centos7 │ │ ├── Dockerfile.debian │ │ ├── Dockerfile.fedora │ │ ├── Dockerfile.ubuntu_bionic │ │ ├── Dockerfile.ubuntu_disco │ │ ├── Dockerfile.ubuntu_groovy │ │ ├── Dockerfile.ubuntu_precise │ │ ├── Dockerfile.ubuntu_trusty │ │ └── Dockerfile.ubuntu_xenial │ ├── docs │ │ ├── CHANGELOG.md │ │ ├── build.md │ │ ├── design.md │ │ ├── index.md │ │ ├── packages.md │ │ ├── performance.md │ │ ├── usage.md │ │ └── ws.md │ ├── httpd.cpp │ ├── ixwebsocket-config.cmake.in │ ├── ixwebsocket.pc.in │ ├── ixwebsocket │ │ ├── IXBase64.h │ │ ├── IXBench.cpp │ │ ├── IXBench.h │ │ ├── IXCancellationRequest.cpp │ │ ├── IXCancellationRequest.h │ │ ├── IXConnectionState.cpp │ │ ├── IXConnectionState.h │ │ ├── IXDNSLookup.cpp │ │ ├── IXDNSLookup.h │ │ ├── IXExponentialBackoff.cpp │ │ ├── IXExponentialBackoff.h │ │ ├── IXGetFreePort.cpp │ │ ├── IXGetFreePort.h │ │ ├── IXGzipCodec.cpp │ │ ├── IXGzipCodec.h │ │ ├── IXHttp.cpp │ │ ├── IXHttp.h │ │ ├── IXHttpClient.cpp │ │ ├── IXHttpClient.h │ │ ├── IXHttpServer.cpp │ │ ├── IXHttpServer.h │ │ ├── IXNetSystem.cpp │ │ ├── IXNetSystem.h │ │ ├── IXProgressCallback.h │ │ ├── IXSelectInterrupt.cpp │ │ ├── IXSelectInterrupt.h │ │ ├── IXSelectInterruptEvent.cpp │ │ ├── IXSelectInterruptEvent.h │ │ ├── IXSelectInterruptFactory.cpp │ │ ├── IXSelectInterruptFactory.h │ │ ├── IXSelectInterruptPipe.cpp │ │ ├── IXSelectInterruptPipe.h │ │ ├── IXSetThreadName.cpp │ │ ├── IXSetThreadName.h │ │ ├── IXSocket.cpp │ │ ├── IXSocket.h │ │ ├── IXSocketAppleSSL.cpp │ │ ├── IXSocketAppleSSL.h │ │ ├── IXSocketConnect.cpp │ │ ├── IXSocketConnect.h │ │ ├── IXSocketFactory.cpp │ │ ├── IXSocketFactory.h │ │ ├── IXSocketMbedTLS.cpp │ │ ├── IXSocketMbedTLS.h │ │ ├── IXSocketOpenSSL.cpp │ │ ├── IXSocketOpenSSL.h │ │ ├── IXSocketServer.cpp │ │ ├── IXSocketServer.h │ │ ├── IXSocketTLSOptions.cpp │ │ ├── IXSocketTLSOptions.h │ │ ├── IXStrCaseCompare.cpp │ │ ├── IXStrCaseCompare.h │ │ ├── IXUdpSocket.cpp │ │ ├── IXUdpSocket.h │ │ ├── IXUniquePtr.h │ │ ├── IXUrlParser.cpp │ │ ├── IXUrlParser.h │ │ ├── IXUserAgent.cpp │ │ ├── IXUserAgent.h │ │ ├── IXUtf8Validator.h │ │ ├── IXUuid.cpp │ │ ├── IXUuid.h │ │ ├── IXWebSocket.cpp │ │ ├── IXWebSocket.h │ │ ├── IXWebSocketCloseConstants.cpp │ │ ├── IXWebSocketCloseConstants.h │ │ ├── IXWebSocketCloseInfo.h │ │ ├── IXWebSocketErrorInfo.h │ │ ├── IXWebSocketHandshake.cpp │ │ ├── IXWebSocketHandshake.h │ │ ├── IXWebSocketHandshakeKeyGen.h │ │ ├── IXWebSocketHttpHeaders.cpp │ │ ├── IXWebSocketHttpHeaders.h │ │ ├── IXWebSocketInitResult.h │ │ ├── IXWebSocketMessage.h │ │ ├── IXWebSocketMessageType.h │ │ ├── IXWebSocketOpenInfo.h │ │ ├── IXWebSocketPerMessageDeflate.cpp │ │ ├── IXWebSocketPerMessageDeflate.h │ │ ├── IXWebSocketPerMessageDeflateCodec.cpp │ │ ├── IXWebSocketPerMessageDeflateCodec.h │ │ ├── IXWebSocketPerMessageDeflateOptions.cpp │ │ ├── IXWebSocketPerMessageDeflateOptions.h │ │ ├── IXWebSocketProxyServer.cpp │ │ ├── IXWebSocketProxyServer.h │ │ ├── IXWebSocketSendData.h │ │ ├── IXWebSocketSendInfo.h │ │ ├── IXWebSocketServer.cpp │ │ ├── IXWebSocketServer.h │ │ ├── IXWebSocketTransport.cpp │ │ ├── IXWebSocketTransport.h │ │ └── IXWebSocketVersion.h │ ├── main.cpp │ ├── makefile.dev │ ├── mkdocs.yml │ ├── test │ │ ├── .certs │ │ │ ├── selfsigned-client-crt.pem │ │ │ ├── selfsigned-client-key.pem │ │ │ ├── trusted-ca-crt.pem │ │ │ ├── trusted-ca-crt.srl │ │ │ ├── trusted-ca-key.pem │ │ │ ├── trusted-client-crt.pem │ │ │ ├── trusted-client-key.pem │ │ │ ├── trusted-server-crt.pem │ │ │ ├── trusted-server-key.pem │ │ │ ├── untrusted-ca-crt.pem │ │ │ ├── untrusted-ca-crt.srl │ │ │ ├── untrusted-ca-key.pem │ │ │ ├── untrusted-client-crt.pem │ │ │ ├── untrusted-client-key.pem │ │ │ ├── wrong-name-server-crt.pem │ │ │ └── wrong-name-server-key.pem │ │ ├── CMakeLists.txt │ │ ├── Catch2 │ │ │ └── single_include │ │ │ │ ├── catch.hpp │ │ │ │ ├── catch_reporter_automake.hpp │ │ │ │ ├── catch_reporter_tap.hpp │ │ │ │ └── catch_reporter_teamcity.hpp │ │ ├── IXDNSLookupTest.cpp │ │ ├── IXExponentialBackoffTest.cpp │ │ ├── IXHttpClientTest.cpp │ │ ├── IXHttpServerTest.cpp │ │ ├── IXHttpTest.cpp │ │ ├── IXSentryClientTest.cpp │ │ ├── IXSocketConnectTest.cpp │ │ ├── IXSocketTest.cpp │ │ ├── IXStrCaseCompareTest.cpp │ │ ├── IXStreamSqlTest.cpp │ │ ├── IXTest.cpp │ │ ├── IXTest.h │ │ ├── IXUnityBuildsTest.cpp │ │ ├── IXUrlParserTest.cpp │ │ ├── IXWebSocketBroadcastTest.cpp │ │ ├── IXWebSocketChatTest.cpp │ │ ├── IXWebSocketCloseTest.cpp │ │ ├── IXWebSocketLeakTest.cpp │ │ ├── IXWebSocketPerMessageDeflateCompressorTest.cpp │ │ ├── IXWebSocketPingTest.cpp │ │ ├── IXWebSocketPingTimeoutTest.cpp │ │ ├── IXWebSocketServerTest.cpp │ │ ├── IXWebSocketSubProtocolTest.cpp │ │ ├── IXWebSocketTestConnectionDisconnection.cpp │ │ ├── appsConfig.json │ │ ├── broadcast-server.js │ │ ├── build_linux.sh │ │ ├── cacert.pem │ │ ├── compatibility │ │ │ ├── cpp │ │ │ │ └── libwebsockets │ │ │ │ │ └── devnull_client.cpp │ │ │ ├── csharp │ │ │ │ ├── Main.cs │ │ │ │ └── devnull_client.csproj │ │ │ ├── node │ │ │ │ ├── devnull_client.js │ │ │ │ ├── echo_server.js │ │ │ │ └── echo_server_permessagedeflate.js │ │ │ ├── python │ │ │ │ ├── websocket-client │ │ │ │ │ ├── generated_file │ │ │ │ │ └── ws_send.py │ │ │ │ └── websockets │ │ │ │ │ ├── DOCKER_VERSION │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Procfile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── broadcast_server.py │ │ │ │ │ ├── broadcast_server_ssl.py │ │ │ │ │ ├── devnull_client.py │ │ │ │ │ ├── echo_client.py │ │ │ │ │ ├── echo_server.py │ │ │ │ │ ├── echo_server_interactive.py │ │ │ │ │ ├── echo_server_serve_once.py │ │ │ │ │ ├── echo_server_ssl.py │ │ │ │ │ ├── empty_file │ │ │ │ │ ├── entrypoint.sh │ │ │ │ │ ├── localhost.pem │ │ │ │ │ ├── nginx.conf │ │ │ │ │ ├── small_file │ │ │ │ │ ├── trusted-client-crt.pem │ │ │ │ │ ├── trusted-client-key.pem │ │ │ │ │ ├── trusted-server-crt.pem │ │ │ │ │ ├── trusted-server-key.pem │ │ │ │ │ ├── vendor │ │ │ │ │ └── protocol.py │ │ │ │ │ ├── ws_proxy.py │ │ │ │ │ └── ws_send.py │ │ │ └── ruby │ │ │ │ ├── README.md │ │ │ │ └── devnull_client.rb │ │ ├── data │ │ │ └── foo.txt │ │ ├── run.py │ │ ├── run.sh │ │ └── test_runner.cpp │ ├── third_party │ │ ├── .clang-format │ │ ├── README.md │ │ ├── cli11 │ │ │ └── CLI11.hpp │ │ ├── cpp-linenoise │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── example │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── example.cpp │ │ │ │ ├── example.sln │ │ │ │ └── example.vcxproj │ │ │ ├── linenoise.cpp │ │ │ └── linenoise.hpp │ │ ├── msgpack11 │ │ │ ├── msgpack11.cpp │ │ │ └── msgpack11.hpp │ │ └── remote_trailing_whitespaces.sh │ ├── tools │ │ ├── build_android.sh │ │ ├── extract_latest_change.sh │ │ ├── extract_version.sh │ │ ├── trim_repo_for_docker.sh │ │ └── update_version.sh │ └── ws │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── broadcast-server.js │ │ ├── broadcast-server.py │ │ ├── cobraMetricsSample.json │ │ ├── generate_certs.sh │ │ ├── package-lock.json │ │ ├── proxyConfig.json │ │ ├── test_ws.sh │ │ ├── test_ws_proxy.sh │ │ ├── test_ws_redis.sh │ │ └── ws.cpp ├── N2KParser │ ├── CMakeLists.txt │ ├── include │ │ ├── N2KParser.h │ │ ├── N2kDef.h │ │ ├── N2kMessages.h │ │ ├── N2kMsg.h │ │ ├── N2kTypes.h │ │ └── NMEA2000StdTypes.h │ └── src │ │ ├── N2KParser.cpp │ │ ├── N2kMessages.cpp │ │ └── N2kMsg.cpp ├── SQLiteCpp │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── include │ │ └── SQLiteCpp │ │ │ ├── Assertion.h │ │ │ ├── Backup.h │ │ │ ├── Column.h │ │ │ ├── Database.h │ │ │ ├── Exception.h │ │ │ ├── ExecuteMany.h │ │ │ ├── SQLiteCpp.h │ │ │ ├── SQLiteCppExport.h │ │ │ ├── Savepoint.h │ │ │ ├── Statement.h │ │ │ ├── Transaction.h │ │ │ ├── Utils.h │ │ │ └── VariadicBind.h │ └── src │ │ ├── Backup.cpp │ │ ├── Column.cpp │ │ ├── Database.cpp │ │ ├── Exception.cpp │ │ ├── Savepoint.cpp │ │ ├── Statement.cpp │ │ └── Transaction.cpp ├── ShapefileCpp │ ├── CMakeLists.txt │ ├── ShapeFileCpp-b2681f8 │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ │ ├── BoundsCommand.hpp │ │ │ │ ├── Command.hpp │ │ │ │ ├── Commands.hpp │ │ │ │ ├── CountCommand.hpp │ │ │ │ ├── InfoCommand.hpp │ │ │ │ ├── ListCommand.hpp │ │ │ │ └── RandomCommand.hpp │ │ │ ├── src │ │ │ │ ├── App.cpp │ │ │ │ ├── BoundsCommand.cpp │ │ │ │ ├── Command.cpp │ │ │ │ ├── Commands.cpp │ │ │ │ ├── CountCommand.cpp │ │ │ │ ├── InfoCommand.cpp │ │ │ │ ├── ListCommand.cpp │ │ │ │ └── RandomCommand.cpp │ │ │ └── test │ │ │ │ ├── BoundsCommandTest.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CountCommandTest.cpp │ │ │ │ ├── InfoCommandTest.cpp │ │ │ │ ├── ListCommandTest.cpp │ │ │ │ └── RandomCommandTest.cpp │ │ ├── conanfile.txt │ │ ├── data │ │ │ ├── line.dbf │ │ │ ├── line.fix │ │ │ ├── line.prj │ │ │ ├── line.shp │ │ │ ├── line.shx │ │ │ ├── multiline.dbf │ │ │ ├── multiline.fix │ │ │ ├── multiline.prj │ │ │ ├── multiline.shp │ │ │ ├── multiline.shx │ │ │ ├── multipoints.dbf │ │ │ ├── multipoints.fix │ │ │ ├── multipoints.prj │ │ │ ├── multipoints.shp │ │ │ ├── multipoints.shx │ │ │ ├── multipolygons.dbf │ │ │ ├── multipolygons.fix │ │ │ ├── multipolygons.prj │ │ │ ├── multipolygons.shp │ │ │ ├── multipolygons.shx │ │ │ ├── points.dbf │ │ │ ├── points.fix │ │ │ ├── points.prj │ │ │ ├── points.shp │ │ │ ├── points.shx │ │ │ ├── polygons.dbf │ │ │ ├── polygons.fix │ │ │ ├── polygons.prj │ │ │ ├── polygons.shp │ │ │ └── polygons.shx │ │ └── lib │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ ├── Bounds.hpp │ │ │ ├── Feature.hpp │ │ │ ├── FeatureIterator.hpp │ │ │ ├── Field.hpp │ │ │ ├── FieldType.hpp │ │ │ ├── Geometry.hpp │ │ │ ├── GeometryType.hpp │ │ │ ├── Line.hpp │ │ │ ├── MultiLine.hpp │ │ │ ├── MultiPoint.hpp │ │ │ ├── MultiPolygon.hpp │ │ │ ├── Point.hpp │ │ │ ├── Polygon.hpp │ │ │ ├── Ring.hpp │ │ │ ├── Schema.hpp │ │ │ ├── ShapefileReader.hpp │ │ │ └── ShapefileWriter.hpp │ │ │ ├── src │ │ │ ├── Bounds.cpp │ │ │ ├── Feature.cpp │ │ │ ├── FeatureIterator.cpp │ │ │ ├── Field.cpp │ │ │ ├── FieldType.cpp │ │ │ ├── Geometry.cpp │ │ │ ├── GeometryType.cpp │ │ │ ├── Line.cpp │ │ │ ├── MultiLine.cpp │ │ │ ├── MultiPoint.cpp │ │ │ ├── MultiPolygon.cpp │ │ │ ├── Point.cpp │ │ │ ├── Polygon.cpp │ │ │ ├── Ring.cpp │ │ │ ├── Schema.cpp │ │ │ ├── ShapefileReader.cpp │ │ │ └── ShapefileWriter.cpp │ │ │ └── test │ │ │ ├── BoundsTest.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── FeatureTest.cpp │ │ │ ├── FieldTest.cpp │ │ │ ├── FieldTypeTest.cpp │ │ │ ├── GeometryTypeTest.cpp │ │ │ ├── LineTest.cpp │ │ │ ├── MultiLineTest.cpp │ │ │ ├── MultiPointTest.cpp │ │ │ ├── MultiPolygonTest.cpp │ │ │ ├── PointTest.cpp │ │ │ ├── PolygonTest.cpp │ │ │ ├── RingTest.cpp │ │ │ ├── SchemaTest.cpp │ │ │ ├── ShapefileReaderTest.cpp │ │ │ └── ShapefileWriterTest.cpp │ ├── cmake │ │ └── PatchFile.cmake │ └── patches │ │ ├── 0001-ShapeFileReader-Fix-annoying-name-clash-add-accessor.patch │ │ ├── 0002-Point-Fix-gcc-initializer-ordering-warning.patch │ │ ├── 0003-ShapeFileReader-Fix-signedness-gcc-warning.patch │ │ └── 0004-cmake-Only-build-the-lib-directory.patch ├── android_jvm │ ├── CMakeLists.txt │ ├── include │ │ └── android_jvm.h │ └── src │ │ └── android_jvm.cpp ├── garmin │ ├── CMakeLists.txt │ └── jeeps │ │ ├── garmin_gps.h │ │ ├── garmin_wrapper_utils.c │ │ ├── garmin_wrapper_utils.h │ │ ├── garminusb.h │ │ ├── gps_wx_logging.h │ │ ├── gpsapp.c │ │ ├── gpsapp.h │ │ ├── gpscom.c │ │ ├── gpscom.h │ │ ├── gpsdatum.h │ │ ├── gpsdevice.c │ │ ├── gpsdevice.h │ │ ├── gpsdevice_ser.c │ │ ├── gpsdevice_usb.c │ │ ├── gpsfmt.h │ │ ├── gpsinput.h │ │ ├── gpsmath.c │ │ ├── gpsmath.h │ │ ├── gpsmem.c │ │ ├── gpsmem.h │ │ ├── gpsport.h │ │ ├── gpsproj.h │ │ ├── gpsprot.c │ │ ├── gpsprot.h │ │ ├── gpsread.c │ │ ├── gpsread.h │ │ ├── gpsrqst.c │ │ ├── gpsrqst.h │ │ ├── gpssend.c │ │ ├── gpssend.h │ │ ├── gpsserial.c │ │ ├── gpsserial.h │ │ ├── gpsusbcommon.c │ │ ├── gpsusbcommon.h │ │ ├── gpsusbint.h │ │ ├── gpsusbread.c │ │ ├── gpsusbsend.c │ │ ├── gpsusbwin.c │ │ ├── gpsutil.c │ │ └── gpsutil.h ├── gdal │ ├── CMakeLists.txt │ ├── include │ │ └── gdal │ │ │ ├── cpl_config.h │ │ │ ├── cpl_conv.h │ │ │ ├── cpl_csv.h │ │ │ ├── cpl_error.h │ │ │ ├── cpl_list.h │ │ │ ├── cpl_minixml.h │ │ │ ├── cpl_multiproc.h │ │ │ ├── cpl_odbc.h │ │ │ ├── cpl_port.h │ │ │ ├── cpl_string.h │ │ │ ├── cpl_vsi.h │ │ │ ├── gdal.h │ │ │ ├── gdal_frmts.h │ │ │ ├── gdal_priv.h │ │ │ ├── ogr_api.h │ │ │ ├── ogr_attrind.h │ │ │ ├── ogr_core.h │ │ │ ├── ogr_feature.h │ │ │ ├── ogr_geometry.h │ │ │ ├── ogr_p.h │ │ │ ├── ogr_spatialref.h │ │ │ └── ogrsf_frmts.h │ └── src │ │ ├── cpl_conv.cpp │ │ ├── cpl_csv.cpp │ │ ├── cpl_error.cpp │ │ ├── cpl_findfile.cpp │ │ ├── cpl_minixml.cpp │ │ ├── cpl_path.cpp │ │ ├── cpl_string.cpp │ │ ├── cpl_vsisimple.cpp │ │ ├── cplgetsymbol.cpp │ │ ├── gdal_misc.cpp │ │ ├── ograssemblepolygon.cpp │ │ ├── ogrcurve.cpp │ │ ├── ogrfeature.cpp │ │ ├── ogrfeaturedefn.cpp │ │ ├── ogrfielddefn.cpp │ │ ├── ogrgeometry.cpp │ │ ├── ogrgeometrycollection.cpp │ │ ├── ogrgeometryfactory.cpp │ │ ├── ogrlayer.cpp │ │ ├── ogrlinearring.cpp │ │ ├── ogrlinestring.cpp │ │ ├── ogrmultilinestring.cpp │ │ ├── ogrmultipoint.cpp │ │ ├── ogrmultipolygon.cpp │ │ ├── ogrpoint.cpp │ │ ├── ogrpolygon.cpp │ │ └── ogrutils.cpp ├── geoprim │ ├── CMakeLists.txt │ └── src │ │ ├── LLRegion.cpp │ │ ├── LLRegion.h │ │ ├── LOD_reduce.cpp │ │ ├── LOD_reduce.h │ │ ├── bbox.cpp │ │ ├── bbox.h │ │ ├── line_clip.cpp │ │ ├── line_clip.h │ │ ├── linmath.h │ │ ├── poly_math.cpp │ │ ├── poly_math.h │ │ └── vector2D.h ├── gl_headers │ ├── CMakeLists.txt │ ├── android │ │ └── GL │ │ │ ├── gl.h │ │ │ ├── gl_private.h │ │ │ ├── glext.h │ │ │ └── glu.h │ └── windows │ │ └── GL │ │ ├── gl.h │ │ ├── gl_private.h │ │ ├── glext.h │ │ └── glu.h ├── glshim │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── include │ │ ├── EGL │ │ │ ├── egl.h │ │ │ ├── eglext.h │ │ │ └── eglplatform.h │ │ ├── GL │ │ │ ├── gl.h │ │ │ ├── gl_mangle.h │ │ │ ├── glext.h │ │ │ ├── glu.h │ │ │ ├── glu_mangle.h │ │ │ ├── glx.h │ │ │ ├── glx_mangle.h │ │ │ ├── glxext.h │ │ │ └── internal │ │ │ │ └── dri_interface.h │ │ ├── GLES │ │ │ ├── egl.h │ │ │ ├── gl.h │ │ │ ├── gl2.h │ │ │ ├── gl2ext.h │ │ │ ├── gl2platform.h │ │ │ ├── gl3.h │ │ │ ├── gl3ext.h │ │ │ ├── gl3platform.h │ │ │ ├── glext.h │ │ │ └── glplatform.h │ │ └── KHR │ │ │ └── khrplatform.h │ ├── spec │ │ ├── gen.py │ │ ├── requirements.txt │ │ ├── template │ │ │ ├── base │ │ │ │ ├── base.j2 │ │ │ │ ├── fprint.j2 │ │ │ │ ├── header.j2 │ │ │ │ ├── headers.j2 │ │ │ │ ├── indexed_call.j2 │ │ │ │ ├── packed_call.j2 │ │ │ │ ├── wrap.c.j2 │ │ │ │ └── wrap.h.j2 │ │ │ ├── client.c.j2 │ │ │ ├── eglwrap.c.j2 │ │ │ ├── gleswrap.c.j2 │ │ │ ├── glwrap.h.j2 │ │ │ ├── glxfuncs.j2 │ │ │ ├── host.c.j2 │ │ │ └── proxy.h.j2 │ │ ├── xml │ │ │ ├── egl.xml │ │ │ ├── gles-2.0.xml │ │ │ ├── glx.xml │ │ │ ├── glxext.xml │ │ │ ├── opengl.xml │ │ │ ├── toyml.py │ │ │ └── wgl.xml │ │ └── yml │ │ │ ├── alsa.yml │ │ │ ├── egl.yml │ │ │ ├── gles-1.1.yml │ │ │ ├── gles-2.0.yml │ │ │ ├── glext-1.1.yml │ │ │ ├── glx.yml │ │ │ ├── glxext.yml │ │ │ ├── my_glx.yml │ │ │ ├── opengl.yml │ │ │ └── wgl.yml │ └── src │ │ ├── CMakeLists.txt │ │ ├── config.h │ │ ├── gl │ │ ├── array.c │ │ ├── array.h │ │ ├── const.h │ │ ├── defines.h │ │ ├── eval.c │ │ ├── eval.h │ │ ├── gl.c │ │ ├── gl.h │ │ ├── light.c │ │ ├── light.h │ │ ├── line.c │ │ ├── line.h │ │ ├── list.c │ │ ├── list.h │ │ ├── math │ │ │ ├── eval.c │ │ │ └── eval.h │ │ ├── pixel.c │ │ ├── pixel.h │ │ ├── raster.c │ │ ├── raster.h │ │ ├── stack.c │ │ ├── stack.h │ │ ├── state.h │ │ ├── texgen.c │ │ ├── texgen.h │ │ ├── texture.c │ │ ├── texture.h │ │ └── wrap │ │ │ ├── es.h │ │ │ ├── gl.c │ │ │ ├── gl.h │ │ │ ├── gles.c │ │ │ ├── gles.h │ │ │ ├── gles2.c │ │ │ ├── gles2.h │ │ │ ├── glstub.c │ │ │ └── stub.h │ │ ├── glx │ │ ├── gles2funcs.inc │ │ ├── glesfuncs.inc │ │ ├── glx.c │ │ ├── glx.h │ │ └── lookup.c │ │ ├── preload │ │ └── preload.c │ │ ├── proxy │ │ ├── CMakeLists.txt │ │ ├── client │ │ │ ├── CMakeLists.txt │ │ │ ├── Versions │ │ │ └── src │ │ │ │ └── client.c │ │ ├── config.h │ │ ├── gl.h │ │ ├── host │ │ │ ├── host.c │ │ │ └── host.h │ │ └── proxy.h │ │ ├── tests │ │ └── main.c │ │ └── util │ │ └── khash.h ├── glu │ ├── CMakeLists.txt │ ├── include │ │ └── gluos.h │ ├── libtess │ │ ├── README │ │ ├── alg-outline │ │ ├── dict-list.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── geom.c │ │ ├── geom.h │ │ ├── memalloc.c │ │ ├── memalloc.h │ │ ├── mesh.c │ │ ├── mesh.h │ │ ├── normal.c │ │ ├── normal.h │ │ ├── priorityq-heap.c │ │ ├── priorityq-heap.h │ │ ├── priorityq-sort.h │ │ ├── priorityq.c │ │ ├── priorityq.h │ │ ├── render.c │ │ ├── render.h │ │ ├── sweep.c │ │ ├── sweep.h │ │ ├── tess.c │ │ ├── tess.h │ │ ├── tessmono.c │ │ └── tessmono.h │ └── libutil │ │ ├── .dirstamp │ │ ├── error.c │ │ ├── glue.c │ │ ├── gluint.h │ │ ├── mipmap.c │ │ ├── project.c │ │ ├── quad.c │ │ └── registry.c ├── gtest │ └── CMakeLists.txt ├── gui │ ├── CMakeLists.txt │ ├── include │ │ ├── button_switch.h │ │ ├── dialog_alert.h │ │ ├── dialog_base.h │ │ ├── dialog_footer.h │ │ ├── dialog_input.h │ │ ├── edit_button.h │ │ ├── expand_icon.h │ │ ├── expand_panel.h │ │ ├── field_switch.h │ │ ├── field_text.h │ │ ├── form_grid.h │ │ ├── svg_button.h │ │ ├── svg_icons.h │ │ ├── text_entry.h │ │ └── ui_utils.h │ └── src │ │ ├── button_switch.cpp │ │ ├── dialog_alert.cpp │ │ ├── dialog_base.cpp │ │ ├── dialog_input.cpp │ │ ├── edit_button.cpp │ │ ├── expand_icon.cpp │ │ ├── expand_panel.cpp │ │ ├── field_switch.cpp │ │ ├── field_text.cpp │ │ ├── form_grid.cpp │ │ ├── svg_button.cpp │ │ ├── svg_icons.cpp │ │ ├── text_entry.cpp │ │ └── ui_utils.cpp ├── iso8211 │ ├── CMakeLists.txt │ ├── include │ │ ├── iso8211.h │ │ └── s57.h │ └── src │ │ ├── ddffield.cpp │ │ ├── ddffielddefn.cpp │ │ ├── ddfmodule.cpp │ │ ├── ddfrecord.cpp │ │ ├── ddfrecordindex.cpp │ │ ├── ddfsubfielddefn.cpp │ │ └── ddfutils.cpp ├── libdnet │ ├── CMakeLists.txt │ ├── cmake │ │ └── PatchFile.cmake │ ├── config.h.in-Fix-wrong-return-type.patch │ └── libdnet-libdnet-1.18.0 │ │ ├── .github │ │ └── workflows │ │ │ └── cmake.yml │ │ ├── CMakeLists.txt │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.am.common │ │ ├── Makefile.in │ │ ├── README.md │ │ ├── THANKS │ │ ├── TODO │ │ ├── acconfig.h │ │ ├── aclocal.m4 │ │ ├── cmake │ │ ├── dnet-config-version.cmake.in │ │ └── dnet-config.cmake.in │ │ ├── config.h.cmake.in │ │ ├── config │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── install-sh │ │ ├── libtool.m4 │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── mkinstalldirs │ │ └── test-driver │ │ ├── configure │ │ ├── configure.ac │ │ ├── dnet-config.in │ │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── config.h.in │ │ ├── dnet.h │ │ ├── dnet │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── addr.h │ │ │ ├── arp.h │ │ │ ├── blob.h │ │ │ ├── eth.h │ │ │ ├── fw.h │ │ │ ├── icmp.h │ │ │ ├── intf.h │ │ │ ├── ip.h │ │ │ ├── ip6.h │ │ │ ├── ndisc.h │ │ │ ├── os.h │ │ │ ├── rand.h │ │ │ ├── route.h │ │ │ ├── sctp.h │ │ │ ├── tcp.h │ │ │ ├── tun.h │ │ │ └── udp.h │ │ ├── err.h │ │ ├── queue.h │ │ └── stamp-h.in │ │ ├── libdnet.spec │ │ ├── m4 │ │ ├── acinclude.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ │ ├── man │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── dnet.3 │ │ ├── python │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dnet.c │ │ ├── dnet.pxd │ │ ├── dnet.pxd.in │ │ ├── dnet.pyx │ │ ├── interfacefinder.py │ │ ├── setup.py.in │ │ └── test.py │ │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── addr-util.c │ │ ├── addr.c │ │ ├── arp-bsd.c │ │ ├── arp-ioctl.c │ │ ├── arp-none.c │ │ ├── arp-win32.c │ │ ├── blob.c │ │ ├── crc32ct.h │ │ ├── err.c │ │ ├── eth-bsd.c │ │ ├── eth-dlpi.c │ │ ├── eth-linux.c │ │ ├── eth-ndd.c │ │ ├── eth-none.c │ │ ├── eth-pfilt.c │ │ ├── eth-snoop.c │ │ ├── eth-win32.c │ │ ├── fw-ipchains.c │ │ ├── fw-ipf.c │ │ ├── fw-ipfw.c │ │ ├── fw-none.c │ │ ├── fw-pf.c │ │ ├── fw-pktfilter.c │ │ ├── intf-win32.c │ │ ├── intf.c │ │ ├── ip-cooked.c │ │ ├── ip-util.c │ │ ├── ip-win32.c │ │ ├── ip.c │ │ ├── ip6.c │ │ ├── memcmp.c │ │ ├── ndisc-linux.c │ │ ├── ndisc-none.c │ │ ├── rand.c │ │ ├── route-bsd.c │ │ ├── route-hpux.c │ │ ├── route-linux.c │ │ ├── route-none.c │ │ ├── route-win32.c │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── strsep.c │ │ ├── tun-bsd.c │ │ ├── tun-linux.c │ │ ├── tun-none.c │ │ └── tun-solaris.c │ │ └── test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── check │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── check_addr.c │ │ ├── check_arp.c │ │ ├── check_blob.c │ │ ├── check_eth.c │ │ ├── check_fw.c │ │ ├── check_intf.c │ │ ├── check_ip.c │ │ ├── check_rand.c │ │ └── check_route.c │ │ └── dnet │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── addr.c │ │ ├── arp.c │ │ ├── aton.c │ │ ├── aton.h │ │ ├── dnet.8 │ │ ├── dnet.c │ │ ├── eth.c │ │ ├── fw.c │ │ ├── hex.c │ │ ├── icmp.c │ │ ├── intf.c │ │ ├── ip.c │ │ ├── mod.h │ │ ├── rand.c │ │ ├── route.c │ │ ├── send.c │ │ ├── tcp.c │ │ └── udp.c ├── libtess2 │ ├── CMakeLists.txt │ ├── Include │ │ ├── Adjacency.h │ │ ├── CustomArray.h │ │ ├── RevisitedRadix.h │ │ ├── StripStdafx.h │ │ ├── Striper.h │ │ └── tesselator.h │ ├── LICENSE.txt │ └── Source │ │ ├── Adjacency.cpp │ │ ├── CustomArray.cpp │ │ ├── RevisitedRadix.cpp │ │ ├── Striper.cpp │ │ ├── bucketalloc.c │ │ ├── bucketalloc.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── geom.c │ │ ├── geom.h │ │ ├── mesh.c │ │ ├── mesh.h │ │ ├── priorityq.c │ │ ├── priorityq.h │ │ ├── sweep.c │ │ ├── sweep.h │ │ ├── tess.c │ │ └── tess.h ├── lz4 │ ├── CMakeLists.txt │ └── src │ │ ├── lz4.c │ │ ├── lz4.h │ │ ├── lz4hc.c │ │ └── lz4hc.h ├── manual │ ├── CMakeLists.txt │ ├── include │ │ ├── manual.h │ │ └── manual_dlg.h │ └── src │ │ ├── manual.cpp │ │ └── manual_dlg.cpp ├── mdns │ ├── CMakeLists.txt │ ├── include │ │ ├── android │ │ │ ├── LocalArray.h │ │ │ ├── ScopedFd.h │ │ │ └── ifaddrs-android.h │ │ └── mdns_util.h │ ├── mdns-1.4.3 │ │ ├── .clang-format │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── CHANGELOG │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cmake │ │ │ └── Config.cmake.in │ │ ├── mdns.c │ │ └── mdns.h │ └── src │ │ └── mdns_util.cpp ├── mipmap │ ├── CMakeLists.txt │ ├── cmake │ │ ├── CompilerSupport.cmake │ │ └── GetArch.cmake │ ├── include │ │ └── mipmap │ │ │ └── mipmap.h │ └── src │ │ ├── mipmap.c │ │ ├── mipmap_avx2.c │ │ ├── mipmap_neon.c │ │ ├── mipmap_sse.c │ │ ├── mipmap_sse2.c │ │ └── mipmap_ssse3.c ├── mongoose │ ├── CMakeLists.txt │ ├── include │ │ └── mongoose.h │ └── src │ │ └── mongoose.c ├── nmea0183 │ ├── CMakeLists.txt │ └── src │ │ ├── GPwpl.cpp │ │ ├── GPwpl.hpp │ │ ├── LatLong.hpp │ │ ├── RMB.hpp │ │ ├── RMC.HPP │ │ ├── Response.hpp │ │ ├── Sentence.hpp │ │ ├── apb.cpp │ │ ├── apb.hpp │ │ ├── expid.cpp │ │ ├── gga.cpp │ │ ├── gga.hpp │ │ ├── gll.cpp │ │ ├── gll.hpp │ │ ├── gsv.cpp │ │ ├── gsv.hpp │ │ ├── hdg.cpp │ │ ├── hdg.hpp │ │ ├── hdm.cpp │ │ ├── hdm.hpp │ │ ├── hdt.cpp │ │ ├── hdt.hpp │ │ ├── hexvalue.cpp │ │ ├── lat.cpp │ │ ├── latlong.cpp │ │ ├── long.cpp │ │ ├── mwd.cpp │ │ ├── mwd.hpp │ │ ├── mwv.cpp │ │ ├── mwv.hpp │ │ ├── nmea0183.cpp │ │ ├── nmea0183.h │ │ ├── nmea0183.hpp │ │ ├── response.cpp │ │ ├── rmb.cpp │ │ ├── rmc.cpp │ │ ├── rte.cpp │ │ ├── rte.hpp │ │ ├── sentence.cpp │ │ ├── talkerid.cpp │ │ ├── ths.cpp │ │ ├── ths.hpp │ │ ├── vtg.cpp │ │ ├── vtg.hpp │ │ ├── wpl.cpp │ │ ├── wpl.hpp │ │ ├── xte.cpp │ │ └── xte.hpp ├── o_sound │ ├── CMakeLists.txt │ ├── cmake │ │ ├── FindLibSndfile.cmake │ │ ├── FindPortaudio.cmake │ │ └── SoundConfig.cmake │ ├── include │ │ └── o_sound │ │ │ ├── android_sound.h │ │ │ ├── factory.h │ │ │ ├── msw_sound.h │ │ │ ├── o_sound.h │ │ │ ├── ocpn_wx_sound.h │ │ │ ├── port_audio_sound.h │ │ │ ├── sndfile_sound_loader.h │ │ │ ├── sound.h │ │ │ ├── sound_file_loader.h │ │ │ ├── sound_loader_factory.h │ │ │ └── system_cmd_sound.h │ ├── snd_config.h.in │ └── src │ │ ├── android_sound.cpp │ │ ├── factory.cpp │ │ ├── msw_sound.cpp │ │ ├── ocpn_wx_sound.cpp │ │ ├── port_audio_sound.cpp │ │ ├── sndfile_sound_loader.cpp │ │ ├── sound.cpp │ │ ├── sound_file_loader.cpp │ │ ├── sound_loader_factory.cpp │ │ └── system_cmd_sound.cpp ├── observable │ ├── CMakeLists.txt │ ├── COPYING │ ├── README.adoc │ ├── README.md │ ├── include │ │ ├── observable.h │ │ ├── observable_confvar.h │ │ ├── observable_evt.h │ │ ├── observable_evtvar.h │ │ └── observable_globvar.h │ ├── manual │ │ ├── Doxyfile │ │ ├── intro.h │ │ └── modules │ │ │ └── ROOT │ │ │ ├── nav.adoc │ │ │ └── pages │ │ │ └── evt_var.adoc │ └── src │ │ ├── observable.cpp │ │ └── observable_confvar.cpp ├── picosha2 │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── hasher.cpp │ │ └── interactive_hasher.cpp │ ├── picosha2.h │ └── test │ │ └── test.cpp ├── pugixml │ ├── CMakeLists.txt │ ├── pugiconfig.hpp │ ├── pugixml.cpp │ └── pugixml.hpp ├── rapidjson │ ├── CMakeLists.txt │ ├── cmake │ │ └── PatchFile.cmake │ └── patches │ │ ├── 0010-rapidjson-1.1.0-c++20.patch │ │ ├── 0011-do_not_include_gtest_src_dir.patch │ │ ├── 0012-Fix-Wclass-memaccess-warnings-errors.patch │ │ └── 0013-gcc7.patch ├── s52plib │ ├── CMakeLists.txt │ └── src │ │ ├── Cs52_shaders.cpp │ │ ├── Cs52_shaders.h │ │ ├── DepthFont.cpp │ │ ├── DepthFont.h │ │ ├── TexFont.cpp │ │ ├── TexFont.h │ │ ├── chartsymbols.cpp │ │ ├── chartsymbols.h │ │ ├── color_types.h │ │ ├── mygeom.cpp │ │ ├── mygeom.h │ │ ├── s52cnsy.cpp │ │ ├── s52plib.cpp │ │ ├── s52plib.h │ │ ├── s52plibGL.h │ │ ├── s52s57.h │ │ ├── s52shaders.cpp │ │ ├── s52shaders.h │ │ ├── s52utils.cpp │ │ └── s52utils.h ├── s57-charts │ ├── CMakeLists.txt │ ├── include │ │ ├── ogr_s57.h │ │ ├── s57.h │ │ ├── s57class_registrar.h │ │ └── s57registrar_mgr.h │ └── src │ │ ├── ogrs57datasource.cpp │ │ ├── ogrs57layer.cpp │ │ ├── s57classregistrar.cpp │ │ ├── s57featuredefns.cpp │ │ ├── s57reader.cpp │ │ └── s57registrar_mgr.cpp ├── serial │ ├── .travis.yml │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── changes.txt │ ├── doc │ │ ├── Doxyfile │ │ └── serial.dox │ ├── examples │ │ └── serial_example.cc │ ├── include │ │ └── serial │ │ │ ├── impl │ │ │ ├── unix.h │ │ │ └── win.h │ │ │ ├── serial.h │ │ │ └── v8stdint.h │ ├── package.xml │ ├── serial.sublime-project │ ├── src │ │ ├── impl │ │ │ ├── list_ports │ │ │ │ ├── list_ports_linux.cc │ │ │ │ ├── list_ports_osx.cc │ │ │ │ └── list_ports_win.cc │ │ │ ├── unix.cc │ │ │ └── win.cc │ │ └── serial.cc │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── proof_of_concepts │ │ │ ├── mdc2250.cc │ │ │ ├── python_serial_test.py │ │ │ └── tokenizer.cc │ │ ├── unit │ │ │ └── unix_timer_tests.cc │ │ └── unix_serial_tests.cc │ └── visual_studio │ │ ├── serial │ │ ├── serial.vcxproj │ │ └── serial.vcxproj.filters │ │ ├── test_serial │ │ ├── test_serial.vcxproj │ │ └── test_serial.vcxproj.filters │ │ └── visual_studio.sln ├── shapelib │ ├── CMakeLists.txt │ ├── cmake │ │ ├── FindShapelib.cmake │ │ └── PatchFile.cmake │ └── patches │ │ ├── 0001-cmake-Add-guard-for-multiple-inclusions.patch │ │ ├── 0002-cmake-Make-BUILD_TESTING-an-option.patch │ │ └── 0003-shapefil.h-Use-correct-include-gdal-cpol.h-path.patch ├── sqlite │ ├── CMakeLists.txt │ ├── cmake │ │ └── FindSqlite.cmake │ ├── include │ │ └── sqlite3.h │ └── src │ │ └── sqlite3.c ├── ssl_sha1 │ ├── CMakeLists.txt │ ├── include │ │ └── ssl │ │ │ └── sha1.h │ └── src │ │ └── sha1.c ├── std_filesystem │ ├── CMakeLists.txt │ ├── README.md │ └── include │ │ ├── ghc │ │ └── filesystem.hpp │ │ └── std_filesystem.h ├── texcmp │ ├── CMakeLists.txt │ ├── etcpak.cpp │ └── squish │ │ ├── alpha.cpp │ │ ├── alpha.h │ │ ├── clusterfit.cpp │ │ ├── clusterfit.h │ │ ├── colourblock.cpp │ │ ├── colourblock.h │ │ ├── colourfit.cpp │ │ ├── colourfit.h │ │ ├── colourset.cpp │ │ ├── colourset.h │ │ ├── config.h │ │ ├── maths.cpp │ │ ├── maths.h │ │ ├── rangefit.cpp │ │ ├── rangefit.h │ │ ├── simd.h │ │ ├── simd_float.h │ │ ├── simd_sse.h │ │ ├── simd_ve.h │ │ ├── singlecolourfit.cpp │ │ ├── singlecolourfit.h │ │ ├── singlecolourfitfast.cpp │ │ ├── singlecolourfitfast.h │ │ ├── singlecolourlookup.inl │ │ ├── squish.cpp │ │ ├── squish.h │ │ ├── twocolourfitfast.cpp │ │ └── twocolourfitfast.h ├── tinyxml │ ├── CMakeLists.txt │ ├── include │ │ └── tinyxml.h │ └── src │ │ ├── tinyxml.cpp │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp ├── wxJSON │ ├── CMakeLists.txt │ ├── include │ │ └── wx │ │ │ ├── json_defs.h │ │ │ ├── jsonreader.h │ │ │ ├── jsonval.h │ │ │ └── jsonwriter.h │ └── src │ │ ├── jsonreader.cpp │ │ ├── jsonval.cpp │ │ └── jsonwriter.cpp ├── wxcurl │ ├── CMakeLists.txt │ ├── include │ │ └── wx │ │ │ └── curl │ │ │ ├── base.h │ │ │ ├── dav.h │ │ │ ├── davtool.h │ │ │ ├── dialog.h │ │ │ ├── ftp.h │ │ │ ├── http.h │ │ │ ├── panel.h │ │ │ ├── telnet.h │ │ │ ├── thread.h │ │ │ └── utils.h │ └── src │ │ ├── base.cpp │ │ ├── dav.cpp │ │ ├── davtool.cpp │ │ ├── dialog.cpp │ │ ├── ftp.cpp │ │ ├── http.cpp │ │ ├── include │ │ ├── README │ │ └── curl │ │ │ ├── curl.h │ │ │ ├── curlbuild.h │ │ │ ├── curlbuild.h.cmake │ │ │ ├── curlbuild.h.in │ │ │ ├── curlrules.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── stdcheaders.h │ │ │ └── typecheck-gcc.h │ │ ├── panel.cpp │ │ ├── telnet.cpp │ │ ├── thread.cpp │ │ └── utils.cpp ├── wxservdisc │ ├── 1035.c │ ├── 1035.h │ ├── CMakeLists.txt │ ├── mdnsd.c │ ├── mdnsd.h │ ├── wxServDisc.cpp │ └── wxServDisc.h └── wxsvg │ ├── CMakeLists.txt │ ├── cmake │ ├── FindEXIF.cmake │ └── FindGlib2.cmake │ ├── include │ ├── wxSVG │ │ ├── Animated.h │ │ ├── CSSStyleDeclaration.h │ │ ├── CSSValue.h │ │ ├── CSSValues.h │ │ ├── Document.h │ │ ├── DocumentCSS.h │ │ ├── DocumentEvent.h │ │ ├── Element.h │ │ ├── ElementTimeControl.h │ │ ├── EventTarget.h │ │ ├── ExifHandler.h │ │ ├── GetSVGDocument.h │ │ ├── NodeList.h │ │ ├── NodeListCls.h │ │ ├── RGBColor.h │ │ ├── SVGAElement.h │ │ ├── SVGAltGlyphDefElement.h │ │ ├── SVGAltGlyphElement.h │ │ ├── SVGAltGlyphItemElement.h │ │ ├── SVGAngle.h │ │ ├── SVGAnimateColorElement.h │ │ ├── SVGAnimateElement.h │ │ ├── SVGAnimateMotionElement.h │ │ ├── SVGAnimateTransformElement.h │ │ ├── SVGAnimatedAngle.h │ │ ├── SVGAnimatedBoolean.h │ │ ├── SVGAnimatedEnumeration.h │ │ ├── SVGAnimatedInteger.h │ │ ├── SVGAnimatedLength.h │ │ ├── SVGAnimatedLengthList.h │ │ ├── SVGAnimatedNumber.h │ │ ├── SVGAnimatedNumberList.h │ │ ├── SVGAnimatedPathData.h │ │ ├── SVGAnimatedPoints.h │ │ ├── SVGAnimatedPreserveAspectRatio.h │ │ ├── SVGAnimatedRect.h │ │ ├── SVGAnimatedString.h │ │ ├── SVGAnimatedTransformList.h │ │ ├── SVGAnimatedType.h │ │ ├── SVGAnimationElement.h │ │ ├── SVGCSSRule.h │ │ ├── SVGCanvas.h │ │ ├── SVGCanvasItem.h │ │ ├── SVGCircleElement.h │ │ ├── SVGClipPathElement.h │ │ ├── SVGColor.h │ │ ├── SVGColorProfileElement.h │ │ ├── SVGColorProfileRule.h │ │ ├── SVGComponentTransferFunctionElement.h │ │ ├── SVGCoordinates.h │ │ ├── SVGCursorElement.h │ │ ├── SVGDTD.h │ │ ├── SVGDefinitionSrcElement.h │ │ ├── SVGDefsElement.h │ │ ├── SVGDescElement.h │ │ ├── SVGDocument.h │ │ ├── SVGElement.h │ │ ├── SVGElementInstance.h │ │ ├── SVGElementInstanceList.h │ │ ├── SVGEllipseElement.h │ │ ├── SVGEvent.h │ │ ├── SVGExternalResourcesRequired.h │ │ ├── SVGFEBlendElement.h │ │ ├── SVGFEColorMatrixElement.h │ │ ├── SVGFEComponentTransferElement.h │ │ ├── SVGFECompositeElement.h │ │ ├── SVGFEConvolveMatrixElement.h │ │ ├── SVGFEDiffuseLightingElement.h │ │ ├── SVGFEDisplacementMapElement.h │ │ ├── SVGFEDistantLightElement.h │ │ ├── SVGFEFloodElement.h │ │ ├── SVGFEFuncAElement.h │ │ ├── SVGFEFuncBElement.h │ │ ├── SVGFEFuncGElement.h │ │ ├── SVGFEFuncRElement.h │ │ ├── SVGFEGaussianBlurElement.h │ │ ├── SVGFEImageElement.h │ │ ├── SVGFEMergeElement.h │ │ ├── SVGFEMergeNodeElement.h │ │ ├── SVGFEMorphologyElement.h │ │ ├── SVGFEOffsetElement.h │ │ ├── SVGFEPointLightElement.h │ │ ├── SVGFESpecularLightingElement.h │ │ ├── SVGFESpotLightElement.h │ │ ├── SVGFETileElement.h │ │ ├── SVGFETurbulenceElement.h │ │ ├── SVGFilterElement.h │ │ ├── SVGFilterPrimitiveStandardAttributes.h │ │ ├── SVGFitToViewBox.h │ │ ├── SVGFontElement.h │ │ ├── SVGFontFaceElement.h │ │ ├── SVGFontFaceFormatElement.h │ │ ├── SVGFontFaceNameElement.h │ │ ├── SVGFontFaceSrcElement.h │ │ ├── SVGFontFaceUriElement.h │ │ ├── SVGForeignObjectElement.h │ │ ├── SVGGElement.h │ │ ├── SVGGlyphElement.h │ │ ├── SVGGlyphRefElement.h │ │ ├── SVGGradientElement.h │ │ ├── SVGHKernElement.h │ │ ├── SVGICCColor.h │ │ ├── SVGImageElement.h │ │ ├── SVGLangSpace.h │ │ ├── SVGLength.h │ │ ├── SVGLengthCalculate.h │ │ ├── SVGLengthList.h │ │ ├── SVGLineElement.h │ │ ├── SVGLinearGradientElement.h │ │ ├── SVGLocatable.h │ │ ├── SVGMPathElement.h │ │ ├── SVGMarkerElement.h │ │ ├── SVGMaskElement.h │ │ ├── SVGMatrix.h │ │ ├── SVGMetadataElement.h │ │ ├── SVGMissingGlyphElement.h │ │ ├── SVGNumber.h │ │ ├── SVGNumberList.h │ │ ├── SVGPaint.h │ │ ├── SVGPathElement.h │ │ ├── SVGPathSeg.h │ │ ├── SVGPathSegArcAbs.h │ │ ├── SVGPathSegArcRel.h │ │ ├── SVGPathSegClosePath.h │ │ ├── SVGPathSegCurvetoCubicAbs.h │ │ ├── SVGPathSegCurvetoCubicRel.h │ │ ├── SVGPathSegCurvetoCubicSmoothAbs.h │ │ ├── SVGPathSegCurvetoCubicSmoothRel.h │ │ ├── SVGPathSegCurvetoQuadraticAbs.h │ │ ├── SVGPathSegCurvetoQuadraticRel.h │ │ ├── SVGPathSegCurvetoQuadraticSmoothAbs.h │ │ ├── SVGPathSegCurvetoQuadraticSmoothRel.h │ │ ├── SVGPathSegLinetoAbs.h │ │ ├── SVGPathSegLinetoHorizontalAbs.h │ │ ├── SVGPathSegLinetoHorizontalRel.h │ │ ├── SVGPathSegLinetoRel.h │ │ ├── SVGPathSegLinetoVerticalAbs.h │ │ ├── SVGPathSegLinetoVerticalRel.h │ │ ├── SVGPathSegList.h │ │ ├── SVGPathSegMovetoAbs.h │ │ ├── SVGPathSegMovetoRel.h │ │ ├── SVGPatternElement.h │ │ ├── SVGPoint.h │ │ ├── SVGPointList.h │ │ ├── SVGPolygonElement.h │ │ ├── SVGPolylineElement.h │ │ ├── SVGPreserveAspectRatio.h │ │ ├── SVGRadialGradientElement.h │ │ ├── SVGRect.h │ │ ├── SVGRectElement.h │ │ ├── SVGRenderingIntent.h │ │ ├── SVGSVGElement.h │ │ ├── SVGScriptElement.h │ │ ├── SVGSetElement.h │ │ ├── SVGStopElement.h │ │ ├── SVGStringList.h │ │ ├── SVGStylable.h │ │ ├── SVGStyleElement.h │ │ ├── SVGSwitchElement.h │ │ ├── SVGSymbolElement.h │ │ ├── SVGTBreakElement.h │ │ ├── SVGTRefElement.h │ │ ├── SVGTSpanElement.h │ │ ├── SVGTests.h │ │ ├── SVGTextContentElement.h │ │ ├── SVGTextElement.h │ │ ├── SVGTextPathElement.h │ │ ├── SVGTextPositioningElement.h │ │ ├── SVGTitleElement.h │ │ ├── SVGTransform.h │ │ ├── SVGTransformList.h │ │ ├── SVGTransformable.h │ │ ├── SVGURIReference.h │ │ ├── SVGUnitTypes.h │ │ ├── SVGUseElement.h │ │ ├── SVGVKernElement.h │ │ ├── SVGVideoElement.h │ │ ├── SVGViewElement.h │ │ ├── SVGViewSpec.h │ │ ├── SVGZoomAndPan.h │ │ ├── SVGZoomEvent.h │ │ ├── String_wxsvg.h │ │ ├── ViewCSS.h │ │ ├── imagsvg.h │ │ ├── mediadec_ffmpeg.h │ │ ├── svg.h │ │ └── svgctrl.h │ └── wxSVGXML │ │ ├── svgxml.h │ │ └── svgxmlhelpr.h │ └── src │ ├── CSSStyleDeclaration.cpp │ ├── CSSValue.cpp │ ├── Elements_CopyConstructors.cpp │ ├── Elements_GetAttribute.cpp │ ├── Elements_GetAttributes.cpp │ ├── Elements_HasAttribute.cpp │ ├── Elements_SetAttribute.cpp │ ├── ExifHandler.cpp │ ├── GetSVGDocument.cpp │ ├── NodeList.cpp │ ├── SVGAngle.cpp │ ├── SVGAnimateMotionElement.cpp │ ├── SVGAnimateTransformElement.cpp │ ├── SVGAnimatedType.cpp │ ├── SVGAnimationElement.cpp │ ├── SVGCanvas.cpp │ ├── SVGCanvasItem.cpp │ ├── SVGCircleElement.cpp │ ├── SVGColor.cpp │ ├── SVGDocument.cpp │ ├── SVGDocument_CreateElement.cpp │ ├── SVGElementInstanceList.cpp │ ├── SVGEllipseElement.cpp │ ├── SVGFEGaussianBlurElement.cpp │ ├── SVGFilterElement.cpp │ ├── SVGFitToViewBox.cpp │ ├── SVGImageElement.cpp │ ├── SVGLength.cpp │ ├── SVGLengthList.cpp │ ├── SVGLineElement.cpp │ ├── SVGLocatable.cpp │ ├── SVGMarkerElement.cpp │ ├── SVGMatrix.cpp │ ├── SVGNumberList.cpp │ ├── SVGPaint.cpp │ ├── SVGPathElement.cpp │ ├── SVGPathSegList.cpp │ ├── SVGPoint.cpp │ ├── SVGPointList.cpp │ ├── SVGPolygonElement.cpp │ ├── SVGPolylineElement.cpp │ ├── SVGPreserveAspectRatio.cpp │ ├── SVGRadialGradientElement.cpp │ ├── SVGRect.cpp │ ├── SVGRectElement.cpp │ ├── SVGSVGElement.cpp │ ├── SVGStringList.cpp │ ├── SVGStylable.cpp │ ├── SVGTests.cpp │ ├── SVGTextContentElement.cpp │ ├── SVGTextElement.cpp │ ├── SVGTransform.cpp │ ├── SVGTransformList.cpp │ ├── SVGTransformable.cpp │ ├── SVGUseElement.cpp │ ├── SVGVideoElement.cpp │ ├── cairo │ ├── SVGCanvasCairo.cpp │ ├── SVGCanvasCairo.h │ ├── SVGCanvasImageCairo.cpp │ ├── SVGCanvasImageCairo.h │ ├── SVGCanvasPathCairo.cpp │ ├── SVGCanvasPathCairo.h │ ├── SVGCanvasTextCairo.cpp │ └── SVGCanvasTextCairo.h │ ├── css_colors.cpp │ ├── css_properties.cpp │ ├── css_values.cpp │ ├── imagsvg.cpp │ ├── mediadec_ffmpeg.cpp │ ├── svgctrl.cpp │ └── svgxml │ ├── svgxml.cpp │ └── svgxmlhelpr.cpp ├── manual ├── Doxyfile ├── INSTALL.adoc ├── README.adoc ├── antora.yml ├── api-images │ ├── edit-button-1.png │ ├── edit-button-2.png │ ├── svg-button.png │ ├── text-entry-1.png │ └── text-entry-2.png ├── modules │ └── ROOT │ │ ├── images │ │ ├── macos-stacktrace.png │ │ ├── monitor.png │ │ ├── styles_0.png │ │ └── windows-trace.png │ │ ├── nav.adoc │ │ └── pages │ │ ├── LINUX_DEVICES.md │ │ ├── android.adoc │ │ ├── cmake.adoc │ │ ├── coding-guidelines.adoc │ │ ├── comm-overview.adoc │ │ ├── create-deb-package.adoc │ │ ├── docker.adoc │ │ ├── gui-model.adoc │ │ ├── index.adoc │ │ ├── linux.adoc │ │ ├── mac-osx.adoc │ │ ├── messaging-debug.adoc │ │ ├── msg_listen.adoc │ │ ├── odraw-messaging.adoc │ │ ├── plugin-api.adoc │ │ ├── plugin-messaging.adoc │ │ ├── pm-plugin-api-versions.adoc │ │ ├── rest-interface.adoc │ │ ├── stacktrace.adoc │ │ ├── troubleshooting.adoc │ │ ├── unit-tests.adoc │ │ ├── user-interface-styling.adoc │ │ └── windows.adoc ├── package-lock.json ├── package.json └── site.yml ├── model ├── CMakeLists.txt ├── cmake │ ├── Curl.cmake │ ├── FindGLIB.cmake │ ├── FindLIBUDEV.cmake │ ├── FindLIBUSB.cmake │ └── FindSystemd.cmake ├── include │ └── model │ │ ├── MarkIcon.h │ │ ├── ais_bitstring.h │ │ ├── ais_decoder.h │ │ ├── ais_defs.h │ │ ├── ais_state_vars.h │ │ ├── ais_target_data.h │ │ ├── atomic_queue.h │ │ ├── autopilot_output.h │ │ ├── base_platform.h │ │ ├── catalog_handler.h │ │ ├── catalog_parser.h │ │ ├── certificates.h │ │ ├── chartdata_input_stream.h │ │ ├── cli_platform.h │ │ ├── cmdline.h │ │ ├── comm_ais.h │ │ ├── comm_appmsg.h │ │ ├── comm_appmsg_bus.h │ │ ├── comm_bridge.h │ │ ├── comm_buffers.h │ │ ├── comm_can_util.h │ │ ├── comm_decoder.h │ │ ├── comm_driver.h │ │ ├── comm_drv_factory.h │ │ ├── comm_drv_file.h │ │ ├── comm_drv_internal.h │ │ ├── comm_drv_loopback.h │ │ ├── comm_drv_n0183.h │ │ ├── comm_drv_n0183_android_bt.h │ │ ├── comm_drv_n0183_android_int.h │ │ ├── comm_drv_n0183_net.h │ │ ├── comm_drv_n0183_serial.h │ │ ├── comm_drv_n2k.h │ │ ├── comm_drv_n2k_net.h │ │ ├── comm_drv_n2k_serial.h │ │ ├── comm_drv_n2k_socketcan.h │ │ ├── comm_drv_registry.h │ │ ├── comm_drv_signalk.h │ │ ├── comm_drv_signalk_net.h │ │ ├── comm_drv_stats.h │ │ ├── comm_n0183_output.h │ │ ├── comm_navmsg.h │ │ ├── comm_navmsg_bus.h │ │ ├── comm_out_queue.h │ │ ├── comm_util.h │ │ ├── comm_vars.h │ │ ├── config_vars.h │ │ ├── conn_params.h │ │ ├── conn_states.h │ │ ├── cutil.h │ │ ├── data_monitor_src.h │ │ ├── datetime.h │ │ ├── dbus_client.h │ │ ├── dbus_instance_check.h │ │ ├── dbus_server.h │ │ ├── downloader.h │ │ ├── ds_porttype.h │ │ ├── filters_on_disk.h │ │ ├── garmin_protocol_mgr.h │ │ ├── garmin_wrapper.h │ │ ├── geodesic.h │ │ ├── georef.h │ │ ├── gpx_document.h │ │ ├── gui.h │ │ ├── gui_events.h │ │ ├── gui_vars.h │ │ ├── hyperlink.h │ │ ├── idents.h │ │ ├── instance_check.h │ │ ├── ipc_api.h │ │ ├── json_event.h │ │ ├── linux_devices.h │ │ ├── linux_usb_watch.h │ │ ├── local_api.h │ │ ├── logger.h │ │ ├── macutils.h │ │ ├── mdns_cache.h │ │ ├── mdns_query.h │ │ ├── mdns_service.h │ │ ├── meteo_points.h │ │ ├── multiplexer.h │ │ ├── nav_object_database.h │ │ ├── navmsg_filter.h │ │ ├── navobj_db.h │ │ ├── navutil_base.h │ │ ├── nmea_ctx_factory.h │ │ ├── nmea_log.h │ │ ├── notification.h │ │ ├── notification_manager.h │ │ ├── ocpn_types.h │ │ ├── ocpn_utils.h │ │ ├── own_ship.h │ │ ├── peer_client.h │ │ ├── periodic_timer.h │ │ ├── pincode.h │ │ ├── plugin_blacklist.h │ │ ├── plugin_cache.h │ │ ├── plugin_comm.h │ │ ├── plugin_handler.h │ │ ├── plugin_loader.h │ │ ├── plugin_paths.h │ │ ├── position_parser.h │ │ ├── rest_server.h │ │ ├── route.h │ │ ├── route_point.h │ │ ├── routeman.h │ │ ├── safe_mode.h │ │ ├── select.h │ │ ├── select_item.h │ │ ├── semantic_vers.h │ │ ├── ser_ports.h │ │ ├── serial_io.h │ │ ├── std_icon.h │ │ ├── std_instance_chk.h │ │ ├── svg_utils.h │ │ ├── sys_events.h │ │ ├── thread_ctrl.h │ │ ├── track.h │ │ ├── usb_watch_daemon.h │ │ ├── win_usb_watch.h │ │ └── wx_instance_chk.h └── src │ ├── ais_bitstring.cpp │ ├── ais_decoder.cpp │ ├── ais_state_vars.cpp │ ├── ais_target_data.cpp │ ├── android_serial_io.cpp │ ├── autopilot_output.cpp │ ├── base_platform.cpp │ ├── catalog_handler.cpp │ ├── catalog_parser.cpp │ ├── certificates.cpp │ ├── chartdata_input_stream.cpp │ ├── cli_platform.cpp │ ├── cmdline.cpp │ ├── comm_ais.cpp │ ├── comm_appmsg.cpp │ ├── comm_appmsg_bus.cpp │ ├── comm_bridge.cpp │ ├── comm_buffers.cpp │ ├── comm_can_util.cpp │ ├── comm_decoder.cpp │ ├── comm_drv_factory.cpp │ ├── comm_drv_file.cpp │ ├── comm_drv_internal.cpp │ ├── comm_drv_loopback.cpp │ ├── comm_drv_n0183.cpp │ ├── comm_drv_n0183_android_bt.cpp │ ├── comm_drv_n0183_android_int.cpp │ ├── comm_drv_n0183_net.cpp │ ├── comm_drv_n0183_serial.cpp │ ├── comm_drv_n2k.cpp │ ├── comm_drv_n2k_net.cpp │ ├── comm_drv_n2k_serial.cpp │ ├── comm_drv_n2k_socketcan.cpp │ ├── comm_drv_registry.cpp │ ├── comm_drv_signalk.cpp │ ├── comm_drv_signalk_net.cpp │ ├── comm_n0183_output.cpp │ ├── comm_navmsg.cpp │ ├── comm_navmsg_bus.cpp │ ├── comm_out_queue.cpp │ ├── comm_util.cpp │ ├── comm_vars.cpp │ ├── config_vars.cpp │ ├── conn_params.cpp │ ├── conn_states.cpp │ ├── cutil.cpp │ ├── data_monitor_src.cpp │ ├── datetime.cpp │ ├── dbus_client.cpp │ ├── dbus_server.cpp │ ├── downloader.cpp │ ├── ds_porttype.cpp │ ├── filters_on_disk.cpp │ ├── garmin_protocol_mgr.cpp │ ├── garmin_wrapper.cpp │ ├── geodesic.cpp │ ├── georef.cpp │ ├── gpx_document.cpp │ ├── gui_vars.cpp │ ├── hyperlink.cpp │ ├── ipc_api.cpp │ ├── ipc_factories.cpp │ ├── linux_devices.cpp │ ├── linux_usb_watch.cpp │ ├── local_api.cpp │ ├── logger.cpp │ ├── macutils.c │ ├── mdns_cache.cpp │ ├── mdns_query.cpp │ ├── mdns_service.cpp │ ├── multiplexer.cpp │ ├── nav_object_database.cpp │ ├── navmsg_filter.cpp │ ├── navobj_db.cpp │ ├── navutil_base.cpp │ ├── notification.cpp │ ├── notification_manager.cpp │ ├── ocpn_plugin.cpp │ ├── ocpn_utils.cpp │ ├── own_ship.cpp │ ├── peer_client.cpp │ ├── periodic_timer.cpp │ ├── pincode.cpp │ ├── plugin_api.cpp │ ├── plugin_blacklist.cpp │ ├── plugin_cache.cpp │ ├── plugin_comm.cpp │ ├── plugin_handler.cpp │ ├── plugin_loader.cpp │ ├── plugin_paths.cpp │ ├── position_parser.cpp │ ├── rest_server.cpp │ ├── route.cpp │ ├── route_point.cpp │ ├── routeman.cpp │ ├── safe_mode.cpp │ ├── select.cpp │ ├── select_item.cpp │ ├── semantic_vers.cpp │ ├── ser_ports.cpp │ ├── std_icon.cpp │ ├── std_instance_chk.cpp │ ├── std_serial_io.cpp │ ├── svg_utils.cpp │ ├── thread_ctrl.cpp │ ├── track.cpp │ ├── usb_watch_factory.cpp │ ├── win_usb_watch.cpp │ └── wx_instance_chk.cpp ├── opencpn-cmd.1 ├── opencpn.1 ├── opencpn.recipe ├── plugins ├── CMakeLists.txt ├── PluginLocalization.cmake ├── README.md ├── chartdldr_pi │ ├── CMakeLists.txt │ ├── cmake │ │ ├── FindTinyXML.cmake │ │ ├── PluginConfigure.cmake │ │ ├── PluginInstall.cmake │ │ ├── PluginLocalization.cmake │ │ ├── PluginPackage.cmake │ │ ├── gpl.txt │ │ ├── version.h.in │ │ └── wxWTranslateCatalog.h.in │ ├── data │ │ ├── button_down.png │ │ ├── button_right.png │ │ ├── chart_sources.xml │ │ ├── file.png │ │ ├── folder.png │ │ ├── folder215.png │ │ └── open182.png │ ├── manual │ │ ├── antora.yml │ │ ├── modules │ │ │ └── ROOT │ │ │ │ ├── images │ │ │ │ ├── 03-chart-downloader-tab-first-time.png │ │ │ │ ├── 08-afterdownloading.png │ │ │ │ ├── 15-chart-status-selection.png │ │ │ │ ├── 16-show-local-files.png │ │ │ │ ├── 17preferences.png │ │ │ │ └── 1pleaseupdate.jpeg │ │ │ │ └── pages │ │ │ │ └── index.adoc │ │ └── site.yml │ ├── po │ │ ├── POTFILES.in │ │ ├── ar_SA.po │ │ ├── bg_BG.po │ │ ├── ca_ES.po │ │ ├── chartdldr_pi.pot │ │ ├── cs_CZ.po │ │ ├── da_DK.po │ │ ├── de_DE.po │ │ ├── el_GR.po │ │ ├── en_GB.po │ │ ├── es_ES.po │ │ ├── et_EE.po │ │ ├── fi_FI.po │ │ ├── fil_PH.po │ │ ├── fr_FR.po │ │ ├── gl_ES.po │ │ ├── he_IL.po │ │ ├── hi_IN.po │ │ ├── hu_HU.po │ │ ├── id_ID.po │ │ ├── is_IS.po │ │ ├── it_IT.po │ │ ├── ja_JP.po │ │ ├── ko_KR.po │ │ ├── mr_IN.po │ │ ├── nb_NO.po │ │ ├── nl_NL.po │ │ ├── pl_PL.po │ │ ├── pt_BR.po │ │ ├── pt_PT.po │ │ ├── ro_RO.po │ │ ├── ru_RU.po │ │ ├── sv_SE.po │ │ ├── th_TH.po │ │ ├── tr_TR.po │ │ ├── vi_VN.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── src │ │ ├── androidSupport.cpp │ │ ├── androidSupport.h │ │ ├── base64.h │ │ ├── chartcatalog.cpp │ │ ├── chartcatalog.h │ │ ├── chartdldr.png │ │ ├── chartdldr.svg │ │ ├── chartdldr_pi.cpp │ │ ├── chartdldr_pi.h │ │ ├── chartdldr_pi.png │ │ ├── chartdldr_pi.svg │ │ ├── chartdldrgui.cpp │ │ ├── chartdldrgui.h │ │ ├── icons.bat │ │ ├── icons.cpp │ │ ├── icons.h │ │ ├── icons.sh │ │ ├── pugiconfig.hpp │ │ ├── pugixml.cpp │ │ ├── pugixml.hpp │ │ ├── tinyxml │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp │ │ ├── unarr │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── _7z │ │ │ ├── _7z.c │ │ │ └── _7z.h │ │ ├── common │ │ │ ├── allocator.h │ │ │ ├── conv.c │ │ │ ├── crc32.c │ │ │ ├── custalloc.c │ │ │ ├── stream.c │ │ │ ├── unarr-imp.h │ │ │ └── unarr.c │ │ ├── lzmasdk │ │ │ ├── 7zTypes.h │ │ │ ├── CpuArch.c │ │ │ ├── CpuArch.h │ │ │ ├── LzmaDec.c │ │ │ ├── LzmaDec.h │ │ │ ├── Ppmd.h │ │ │ ├── Ppmd7.c │ │ │ ├── Ppmd7.h │ │ │ ├── Ppmd7Dec.c │ │ │ ├── Ppmd8.c │ │ │ ├── Ppmd8.h │ │ │ ├── Ppmd8Dec.c │ │ │ └── Precomp.h │ │ ├── main.c │ │ ├── rar │ │ │ ├── filter-rar.c │ │ │ ├── huffman-rar.c │ │ │ ├── lzss.h │ │ │ ├── parse-rar.c │ │ │ ├── rar.c │ │ │ ├── rar.h │ │ │ ├── rarvm.c │ │ │ ├── rarvm.h │ │ │ └── uncompress-rar.c │ │ ├── tar │ │ │ ├── parse-tar.c │ │ │ ├── tar.c │ │ │ └── tar.h │ │ ├── unarr.h │ │ └── zip │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── parse-zip.c │ │ │ ├── uncompress-zip.c │ │ │ ├── zip.c │ │ │ └── zip.h │ │ ├── unchecked.xpm │ │ └── unchecked_dis.xpm ├── dashboard_pi │ ├── CMakeLists.txt │ ├── data │ │ ├── Dashboard.svg │ │ ├── Dashboard_rollover.svg │ │ ├── Dashboard_toggled.svg │ │ ├── dashboard_pi.svg │ │ ├── dial.svg │ │ ├── instrument.svg │ │ ├── minus.svg │ │ └── plus.svg │ ├── include │ │ └── wx │ │ │ ├── json_defs.h │ │ │ ├── jsonreader.h │ │ │ ├── jsonval.h │ │ │ └── jsonwriter.h │ ├── manual │ │ ├── antora.yml │ │ ├── modules │ │ │ └── ROOT │ │ │ │ ├── images │ │ │ │ ├── 33speed12.png │ │ │ │ ├── 33speed50.png │ │ │ │ ├── dash-big-fonts.png │ │ │ │ ├── dash-drag.png │ │ │ │ ├── dash-select-instr_0.png │ │ │ │ ├── dash-set.png │ │ │ │ ├── dashboard-docked32.png │ │ │ │ ├── dashboard-plugin32.png │ │ │ │ ├── dashboard-preferences-appearance.jpeg │ │ │ │ ├── dashboard32.png │ │ │ │ ├── dashn3.png │ │ │ │ ├── dashprop322.png │ │ │ │ ├── wh.png │ │ │ │ ├── wh1.png │ │ │ │ └── wh2.png │ │ │ │ └── pages │ │ │ │ └── index.adoc │ │ └── site.yml │ ├── po │ │ ├── POTFILES.in │ │ ├── ar_SA.po │ │ ├── bg_BG.po │ │ ├── ca_ES.po │ │ ├── cs_CZ.po │ │ ├── da_DK.po │ │ ├── dashboard_pi.pot │ │ ├── de_DE.po │ │ ├── el_GR.po │ │ ├── en_GB.po │ │ ├── es_ES.po │ │ ├── et_EE.po │ │ ├── fi_FI.po │ │ ├── fil_PH.po │ │ ├── fr_FR.po │ │ ├── gl_ES.po │ │ ├── he_IL.po │ │ ├── hi_IN.po │ │ ├── hu_HU.po │ │ ├── id_ID.po │ │ ├── is_IS.po │ │ ├── it_IT.po │ │ ├── ja_JP.po │ │ ├── ko_KR.po │ │ ├── mr_IN.po │ │ ├── nb_NO.po │ │ ├── nl_NL.po │ │ ├── pl_PL.po │ │ ├── pt_BR.po │ │ ├── pt_PT.po │ │ ├── ro_RO.po │ │ ├── ru_RU.po │ │ ├── sv_SE.po │ │ ├── th_TH.po │ │ ├── tr_TR.po │ │ ├── vi_VN.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── src │ │ ├── altitude.cpp │ │ ├── altitude.h │ │ ├── baro_history.cpp │ │ ├── baro_history.h │ │ ├── clock.cpp │ │ ├── clock.h │ │ ├── compass.cpp │ │ ├── compass.h │ │ ├── dashboard.svg │ │ ├── dashboard_pi.cpp │ │ ├── dashboard_pi.h │ │ ├── dashboard_pi.svg │ │ ├── depth.cpp │ │ ├── depth.h │ │ ├── dial.cpp │ │ ├── dial.h │ │ ├── dial.svg │ │ ├── from_ownship.cpp │ │ ├── from_ownship.h │ │ ├── gps.cpp │ │ ├── gps.h │ │ ├── icons.cpp │ │ ├── icons.h │ │ ├── icons.sh │ │ ├── iirfilter.cpp │ │ ├── iirfilter.h │ │ ├── instrument.cpp │ │ ├── instrument.h │ │ ├── instrument.svg │ │ ├── minus.svg │ │ ├── nmea0183 │ │ ├── LatLong.hpp │ │ ├── RMB.hpp │ │ ├── RMC.HPP │ │ ├── Response.hpp │ │ ├── SatInfo.h │ │ ├── Sentence.hpp │ │ ├── dbt.cpp │ │ ├── dbt.hpp │ │ ├── dpt.cpp │ │ ├── dpt.hpp │ │ ├── expid.cpp │ │ ├── gga.cpp │ │ ├── gga.hpp │ │ ├── gll.cpp │ │ ├── gll.hpp │ │ ├── gsv.cpp │ │ ├── gsv.hpp │ │ ├── hdg.cpp │ │ ├── hdg.hpp │ │ ├── hdm.cpp │ │ ├── hdm.hpp │ │ ├── hdt.cpp │ │ ├── hdt.hpp │ │ ├── hexvalue.cpp │ │ ├── lat.cpp │ │ ├── latlong.cpp │ │ ├── long.cpp │ │ ├── mda.cpp │ │ ├── mda.hpp │ │ ├── mta.cpp │ │ ├── mta.hpp │ │ ├── mtw.cpp │ │ ├── mtw.hpp │ │ ├── mwd.cpp │ │ ├── mwd.hpp │ │ ├── mwv.cpp │ │ ├── mwv.hpp │ │ ├── nmea0183.cpp │ │ ├── nmea0183.h │ │ ├── nmea0183.hpp │ │ ├── response.cpp │ │ ├── rmb.cpp │ │ ├── rmc.cpp │ │ ├── rsa.cpp │ │ ├── rsa.hpp │ │ ├── rte.cpp │ │ ├── rte.hpp │ │ ├── sentence.cpp │ │ ├── talkerid.cpp │ │ ├── vhw.cpp │ │ ├── vhw.hpp │ │ ├── vlw.cpp │ │ ├── vlw.hpp │ │ ├── vtg.cpp │ │ ├── vtg.hpp │ │ ├── vwr.cpp │ │ ├── vwr.hpp │ │ ├── vwt.cpp │ │ ├── vwt.hpp │ │ ├── wpl.cpp │ │ ├── wpl.hpp │ │ ├── xdr.cpp │ │ ├── xdr.hpp │ │ ├── xte.cpp │ │ ├── xte.hpp │ │ ├── zda.cpp │ │ └── zda.hpp │ │ ├── plus.svg │ │ ├── rudder_angle.cpp │ │ ├── rudder_angle.h │ │ ├── speedometer.cpp │ │ ├── speedometer.h │ │ ├── wind.cpp │ │ ├── wind.h │ │ ├── wind_history.cpp │ │ ├── wind_history.h │ │ └── wxJSON │ │ ├── jsonreader.cpp │ │ ├── jsonval.cpp │ │ └── jsonwriter.cpp ├── demo_pi_sample │ ├── CMakeLists.txt │ ├── cmake │ │ ├── NSIS.template.in │ │ ├── PluginConfigure.cmake │ │ ├── PluginInstall.cmake │ │ ├── PluginLocalization.cmake │ │ ├── PluginPackage.cmake │ │ ├── gpl.txt │ │ ├── version.h.in │ │ └── wxWTranslateCatalog.h.in │ └── src │ │ ├── demo_pi.cpp │ │ ├── demo_pi.h │ │ ├── nmea0183 │ │ ├── LatLong.hpp │ │ ├── RMB.hpp │ │ ├── RMC.HPP │ │ ├── Response.hpp │ │ ├── Sentence.hpp │ │ ├── expid.cpp │ │ ├── gga.cpp │ │ ├── gga.hpp │ │ ├── gll.cpp │ │ ├── gll.hpp │ │ ├── gsv.cpp │ │ ├── gsv.hpp │ │ ├── hdg.cpp │ │ ├── hdg.hpp │ │ ├── hdm.cpp │ │ ├── hdm.hpp │ │ ├── hdt.cpp │ │ ├── hdt.hpp │ │ ├── hexvalue.cpp │ │ ├── lat.cpp │ │ ├── latlong.cpp │ │ ├── long.cpp │ │ ├── nmea0183.cpp │ │ ├── nmea0183.h │ │ ├── nmea0183.hpp │ │ ├── response.cpp │ │ ├── rmb.cpp │ │ ├── rmc.cpp │ │ ├── rte.cpp │ │ ├── rte.hpp │ │ ├── sentence.cpp │ │ ├── talkerid.cpp │ │ ├── vtg.cpp │ │ ├── vtg.hpp │ │ ├── wpl.cpp │ │ └── wpl.hpp │ │ ├── ocpn_plugin.h │ │ └── version.h ├── grib_pi │ ├── CMakeLists.txt │ ├── GRIB.fbp │ ├── XyGribPanel.fbp │ ├── data │ │ ├── altitude.svg │ │ ├── curdata.svg │ │ ├── grib.svg │ │ ├── grib_panel_icon.png │ │ ├── grib_rollover.svg │ │ ├── grib_toggled.svg │ │ ├── ncurdata.svg │ │ ├── next.svg │ │ ├── now.svg │ │ ├── openfile.svg │ │ ├── play.svg │ │ ├── prev.svg │ │ ├── request.svg │ │ ├── request_end.svg │ │ ├── selzone.svg │ │ ├── setting.svg │ │ ├── slider.svg │ │ ├── sources.json │ │ ├── stop.svg │ │ └── zoomto.svg │ ├── libs │ │ └── jasper │ │ │ ├── CMakeLists.txt │ │ │ └── src │ │ │ ├── base │ │ │ ├── jas_cm.c │ │ │ ├── jas_debug.c │ │ │ ├── jas_getopt.c │ │ │ ├── jas_icc.c │ │ │ ├── jas_iccdata.c │ │ │ ├── jas_image.c │ │ │ ├── jas_init.c │ │ │ ├── jas_malloc.c │ │ │ ├── jas_seq.c │ │ │ ├── jas_stream.c │ │ │ ├── jas_string.c │ │ │ ├── jas_tmr.c │ │ │ ├── jas_tvp.c │ │ │ └── jas_version.c │ │ │ ├── include │ │ │ └── jasper │ │ │ │ ├── jas_cm.h │ │ │ │ ├── jas_config.h │ │ │ │ ├── jas_config.h.in │ │ │ │ ├── jas_config2.h │ │ │ │ ├── jas_debug.h │ │ │ │ ├── jas_fix.h │ │ │ │ ├── jas_getopt.h │ │ │ │ ├── jas_icc.h │ │ │ │ ├── jas_image.h │ │ │ │ ├── jas_init.h │ │ │ │ ├── jas_malloc.h │ │ │ │ ├── jas_math.h │ │ │ │ ├── jas_seq.h │ │ │ │ ├── jas_stream.h │ │ │ │ ├── jas_string.h │ │ │ │ ├── jas_tmr.h │ │ │ │ ├── jas_tvp.h │ │ │ │ ├── jas_types.h │ │ │ │ ├── jas_version.h │ │ │ │ └── jasper.h │ │ │ ├── jp2 │ │ │ ├── jp2_cod.c │ │ │ ├── jp2_cod.h │ │ │ ├── jp2_dec.c │ │ │ ├── jp2_dec.h │ │ │ └── jp2_enc.c │ │ │ └── jpc │ │ │ ├── jpc_bs.c │ │ │ ├── jpc_bs.h │ │ │ ├── jpc_cod.h │ │ │ ├── jpc_cs.c │ │ │ ├── jpc_cs.h │ │ │ ├── jpc_dec.c │ │ │ ├── jpc_dec.h │ │ │ ├── jpc_enc.c │ │ │ ├── jpc_enc.h │ │ │ ├── jpc_fix.h │ │ │ ├── jpc_flt.h │ │ │ ├── jpc_math.c │ │ │ ├── jpc_math.h │ │ │ ├── jpc_mct.c │ │ │ ├── jpc_mct.h │ │ │ ├── jpc_mqcod.c │ │ │ ├── jpc_mqcod.h │ │ │ ├── jpc_mqdec.c │ │ │ ├── jpc_mqdec.h │ │ │ ├── jpc_mqenc.c │ │ │ ├── jpc_mqenc.h │ │ │ ├── jpc_qmfb.c │ │ │ ├── jpc_qmfb.h │ │ │ ├── jpc_t1cod.c │ │ │ ├── jpc_t1cod.h │ │ │ ├── jpc_t1dec.c │ │ │ ├── jpc_t1dec.h │ │ │ ├── jpc_t1enc.c │ │ │ ├── jpc_t1enc.h │ │ │ ├── jpc_t2cod.c │ │ │ ├── jpc_t2cod.h │ │ │ ├── jpc_t2dec.c │ │ │ ├── jpc_t2dec.h │ │ │ ├── jpc_t2enc.c │ │ │ ├── jpc_t2enc.h │ │ │ ├── jpc_tagtree.c │ │ │ ├── jpc_tagtree.h │ │ │ ├── jpc_tsfb.c │ │ │ ├── jpc_tsfb.h │ │ │ ├── jpc_util.c │ │ │ └── jpc_util.h │ ├── manual │ │ ├── antora.yml │ │ ├── modules │ │ │ └── ROOT │ │ │ │ ├── images │ │ │ │ ├── 33gfs16.png │ │ │ │ ├── 33gribcurrent.png │ │ │ │ ├── 33gribinterpolation.png │ │ │ │ ├── 33gribmail1.png │ │ │ │ ├── 33gribmail10.png │ │ │ │ ├── 33gribmail2.png │ │ │ │ ├── 33gribmail3.png │ │ │ │ ├── 33gribmail4.png │ │ │ │ ├── 33gribmail5.png │ │ │ │ ├── 33gribmail6.png │ │ │ │ ├── 33gribmail7.png │ │ │ │ ├── 33gribmail8.png │ │ │ │ ├── 33gribmail9.png │ │ │ │ ├── 33griboverlaycolors.png │ │ │ │ ├── 33gribpreference2.png │ │ │ │ ├── 33gribunits.png │ │ │ │ ├── 33wxtable.png │ │ │ │ ├── 4gribareaselection.png │ │ │ │ ├── 4gribcontrol.png │ │ │ │ ├── 4gribcontroledcolours.png │ │ │ │ ├── 4gribcurrent_0.png │ │ │ │ ├── 4gribdisplaychoices.png │ │ │ │ ├── 4gribgraph-selection.png │ │ │ │ ├── 500mb.png │ │ │ │ ├── ccc-castine-grib.png │ │ │ │ ├── girb-hide-data.png │ │ │ │ ├── grib-menu-2.png │ │ │ │ ├── grib-pressure-isobar-numbers-short-long.png │ │ │ │ ├── grib-settings-bottom-slider.png │ │ │ │ ├── grib-settings-data-air-temperature.png │ │ │ │ ├── grib-settings-data-cape.png │ │ │ │ ├── grib-settings-data-pressure.png │ │ │ │ ├── grib-settings-data-waves-data.png │ │ │ │ ├── grib-settings-data-waves-gui.png │ │ │ │ ├── grib-settings-data-waves-playback.png │ │ │ │ ├── grib-settings-data-wind-gust.png │ │ │ │ ├── grib-settings-data-wind.png │ │ │ │ ├── grib-settings-message-saildocs.png │ │ │ │ ├── grib-settings-message-zygrib.png │ │ │ │ ├── grib-table-arrows.png │ │ │ │ ├── grib-table-degrees.png │ │ │ │ ├── grib.png │ │ │ │ ├── grib_0.png │ │ │ │ ├── gribplugin33.png │ │ │ │ ├── particlemap.png │ │ │ │ ├── saildocscurrent.jpg │ │ │ │ ├── settings.png │ │ │ │ └── std-grib.png │ │ │ │ └── pages │ │ │ │ ├── index.adoc │ │ │ │ └── mail_servers.adoc │ │ └── site.yml │ ├── po │ │ ├── POTFILES.in │ │ ├── ar_SA.po │ │ ├── bg_BG.po │ │ ├── ca_ES.po │ │ ├── cs_CZ.po │ │ ├── da_DK.po │ │ ├── de_DE.po │ │ ├── el_GR.po │ │ ├── en_GB.po │ │ ├── es_ES.po │ │ ├── et_EE.po │ │ ├── fi_FI.po │ │ ├── fil_PH.po │ │ ├── fr_FR.po │ │ ├── gl_ES.po │ │ ├── grib_pi.pot │ │ ├── he_IL.po │ │ ├── hi_IN.po │ │ ├── hu_HU.po │ │ ├── id_ID.po │ │ ├── is_IS.po │ │ ├── it_IT.po │ │ ├── ja_JP.po │ │ ├── ko_KR.po │ │ ├── mr_IN.po │ │ ├── nb_NO.po │ │ ├── nl_NL.po │ │ ├── pl_PL.po │ │ ├── pt_BR.po │ │ ├── pt_PT.po │ │ ├── ro_RO.po │ │ ├── ru_RU.po │ │ ├── sv_SE.po │ │ ├── th_TH.po │ │ ├── tr_TR.po │ │ ├── vi_VN.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ └── src │ │ ├── CursorData.cpp │ │ ├── CursorData.h │ │ ├── CustomGrid.cpp │ │ ├── CustomGrid.h │ │ ├── GrabberWin.cpp │ │ ├── GrabberWin.h │ │ ├── GribOverlayFactory.cpp │ │ ├── GribOverlayFactory.h │ │ ├── GribReader.cpp │ │ ├── GribReader.h │ │ ├── GribRecord.cpp │ │ ├── GribRecord.h │ │ ├── GribRecordSet.h │ │ ├── GribRequestDialog.cpp │ │ ├── GribRequestDialog.h │ │ ├── GribSettingsDialog.cpp │ │ ├── GribSettingsDialog.h │ │ ├── GribTable.cpp │ │ ├── GribTable.h │ │ ├── GribUIDialog.cpp │ │ ├── GribUIDialog.h │ │ ├── GribUIDialogBase.cpp │ │ ├── GribUIDialogBase.h │ │ ├── GribV1Record.cpp │ │ ├── GribV1Record.h │ │ ├── GribV2Record.cpp │ │ ├── GribV2Record.h │ │ ├── IsoLine.cpp │ │ ├── IsoLine.h │ │ ├── XyGribModelDef.cpp │ │ ├── XyGribModelDef.h │ │ ├── XyGribPanel.cpp │ │ ├── XyGribPanel.h │ │ ├── bzip2 │ │ ├── blocksort.c │ │ ├── bzlib.c │ │ ├── bzlib.h │ │ ├── bzlib_private.h │ │ ├── compress.c │ │ ├── crctable.c │ │ ├── decompress.c │ │ ├── huffman.c │ │ └── randtable.c │ │ ├── email.cpp │ │ ├── email.h │ │ ├── folder.xpm │ │ ├── grib.svg │ │ ├── grib_pi.cpp │ │ ├── grib_pi.h │ │ ├── grib_pi.svg │ │ ├── icons.cpp │ │ ├── icons.h │ │ ├── icons.sh │ │ ├── json_defs.h │ │ ├── jsonreader.cpp │ │ ├── jsonreader.h │ │ ├── jsonval.cpp │ │ ├── jsonval.h │ │ ├── jsonwriter.cpp │ │ ├── jsonwriter.h │ │ ├── linmath.h │ │ ├── msg.h │ │ ├── pi_TexFont.cpp │ │ ├── pi_TexFont.h │ │ ├── pi_gl.h │ │ ├── pi_ocpndc.cpp │ │ ├── pi_ocpndc.h │ │ ├── pi_shaders.cpp │ │ ├── pi_shaders.h │ │ ├── smapi.cpp │ │ ├── smapi.h │ │ ├── version.h │ │ ├── zuFile.cpp │ │ └── zuFile.h ├── icons │ ├── oesenc.png │ ├── radar.svg │ └── squiddio.png └── wmm_pi │ ├── CMakeLists.txt │ ├── cmake │ ├── NSIS.template.in │ ├── PluginConfigure.cmake │ ├── PluginInstall.cmake │ ├── PluginLocalization.cmake │ ├── PluginPackage.cmake │ ├── gpl.txt │ ├── version.h.in │ └── wxWTranslateCatalog.h.in │ ├── data │ ├── WMM.COF │ ├── wmm_live.svg │ └── wmm_pi.svg │ ├── manual │ ├── antora.yml │ ├── modules │ │ └── ROOT │ │ │ ├── images │ │ │ ├── wmm1.png │ │ │ ├── wmm2.png │ │ │ ├── wmm3.png │ │ │ ├── wmm4.png │ │ │ ├── wmm5.png │ │ │ ├── wmm6.png │ │ │ ├── wmm7.png │ │ │ ├── wmm8.png │ │ │ ├── wmm9.png │ │ │ └── wwm.png │ │ │ └── pages │ │ │ └── index.adoc │ └── site.yml │ ├── po │ ├── POTFILES.in │ ├── ar_SA.po │ ├── bg_BG.po │ ├── ca_ES.po │ ├── cs_CZ.po │ ├── da_DK.po │ ├── de_DE.po │ ├── el_GR.po │ ├── en_GB.po │ ├── es_ES.po │ ├── et_EE.po │ ├── fi_FI.po │ ├── fil_PH.po │ ├── fr_FR.po │ ├── gl_ES.po │ ├── he_IL.po │ ├── hi_IN.po │ ├── hu_HU.po │ ├── id_ID.po │ ├── is_IS.po │ ├── it_IT.po │ ├── ja_JP.po │ ├── ko_KR.po │ ├── mr_IN.po │ ├── nb_NO.po │ ├── nl_NL.po │ ├── pl_PL.po │ ├── pt_BR.po │ ├── pt_PT.po │ ├── ro_RO.po │ ├── ru_RU.po │ ├── sv_SE.po │ ├── th_TH.po │ ├── tr_TR.po │ ├── vi_VN.po │ ├── wmm_pi.pot │ ├── zh_CN.po │ └── zh_TW.po │ ├── src │ ├── EGM9615.h │ ├── GeomagnetismHeader.h │ ├── GeomagnetismLibrary.c │ ├── MagneticPlotMap.cpp │ ├── MagneticPlotMap.h │ ├── WmmUIDialog.cpp │ ├── WmmUIDialog.h │ ├── icons.cpp │ ├── icons.h │ ├── icons.sh │ ├── json_defs.h │ ├── jsonreader.cpp │ ├── jsonreader.h │ ├── jsonval.cpp │ ├── jsonval.h │ ├── jsonwriter.cpp │ ├── jsonwriter.h │ ├── linmath.h │ ├── pi_TexFont.cpp │ ├── pi_TexFont.h │ ├── pi_ocpndc.cpp │ ├── pi_ocpndc.h │ ├── pi_shaders.cpp │ ├── pi_shaders.h │ ├── wmm.png │ ├── wmm.svg │ ├── wmm_live.png │ ├── wmm_live.svg │ ├── wmm_pi.cpp │ ├── wmm_pi.h │ ├── wmm_pi.png │ └── wmm_pi.svg │ └── unused-data │ └── EGM9615.BIN ├── po ├── POTFILES.in ├── opencpn.pot ├── opencpn_ar_SA.po ├── opencpn_bg_BG.po ├── opencpn_ca_ES.po ├── opencpn_cs_CZ.po ├── opencpn_da_DK.po ├── opencpn_de_DE.po ├── opencpn_el_GR.po ├── opencpn_en_GB.po ├── opencpn_es_ES.po ├── opencpn_et_EE.po ├── opencpn_fi_FI.po ├── opencpn_fil_PH.po ├── opencpn_fr_FR.po ├── opencpn_gl_ES.po ├── opencpn_he_IL.po ├── opencpn_hi_IN.po ├── opencpn_hu_HU.po ├── opencpn_id_ID.po ├── opencpn_is_IS.po ├── opencpn_it_IT.po ├── opencpn_ja_JP.po ├── opencpn_ko_KR.po ├── opencpn_mr_IN.po ├── opencpn_nb_NO.po ├── opencpn_nl_NL.po ├── opencpn_pl_PL.po ├── opencpn_pt_BR.po ├── opencpn_pt_PT.po ├── opencpn_ro_RO.po ├── opencpn_ru_RU.po ├── opencpn_sv_SE.po ├── opencpn_th_TH.po ├── opencpn_tr_TR.po ├── opencpn_vi_VN.po ├── opencpn_zh_CN.po └── opencpn_zh_TW.po ├── resources ├── bitmaps │ ├── .directory │ ├── 13xX_svg_src │ │ ├── create_all_13xX.sh │ │ ├── inviz.svg │ │ ├── mercprj.svg │ │ ├── redX.svg │ │ ├── skewprj.svg │ │ ├── tmercprj.svg │ │ └── viz.svg │ ├── 16x16_svg_src │ │ ├── create_all_16x16.sh │ │ ├── sort_asc.svg │ │ ├── sort_desc.svg │ │ └── tidesml.svg │ ├── 28x28_svg_src │ │ ├── compass.svg │ │ ├── create_all_28x28.sh │ │ ├── gps1.svg │ │ ├── gps2.svg │ │ ├── gps3.svg │ │ ├── gpsGrn.svg │ │ ├── gpsGry.svg │ │ ├── gpsRed.svg │ │ └── gpsYel.svg │ ├── 32x32_svg_src │ │ ├── cursor │ │ │ ├── create_all_32x32.sh │ │ │ ├── default_pi.svg │ │ │ ├── down.svg │ │ │ ├── left.svg │ │ │ ├── mob.svg │ │ │ ├── pencil.svg │ │ │ ├── right.svg │ │ │ └── up.svg │ │ └── ribbon │ │ │ ├── .directory │ │ │ ├── ais.svg │ │ │ ├── ais_alarm.svg │ │ │ ├── ais_alarmscaled.svg │ │ │ ├── ais_alive.svg │ │ │ ├── ais_disabled.svg │ │ │ ├── ais_hidemoored.svg │ │ │ ├── ais_supressed.svg │ │ │ ├── colscheme.svg │ │ │ ├── create_all_32x32.sh │ │ │ ├── current.svg │ │ │ ├── exitt.svg │ │ │ ├── follow.svg │ │ │ ├── gpx_export.svg │ │ │ ├── gpx_import.svg │ │ │ ├── help.svg │ │ │ ├── mob_btn.svg │ │ │ ├── print.svg │ │ │ ├── route.svg │ │ │ ├── route_manager.svg │ │ │ ├── scin.svg │ │ │ ├── scout.svg │ │ │ ├── settings.svg │ │ │ ├── text.svg │ │ │ ├── tide.svg │ │ │ ├── trackoff.svg │ │ │ ├── trackon.svg │ │ │ ├── zoomin.svg │ │ │ └── zoomout.svg │ ├── DragHandle.svg │ ├── eye.svg │ ├── eyeGray.svg │ ├── eyex.svg │ ├── iENC_All.svg │ ├── iENC_Minimum.svg │ ├── iENC_RMinus.svg │ ├── iENC_RPlus.svg │ ├── iENC_Standard.svg │ ├── iENC_UserStd.svg │ ├── iconAll.png │ ├── iconMinimum.png │ ├── iconRMinus.png │ ├── iconRPlus.png │ ├── iconStandard.png │ ├── iconUserStd.png │ ├── opencpn-64.png │ ├── opencpn.ico │ ├── opencpn.png │ ├── opencpn.xpm │ ├── other_svg_src │ │ ├── create_opencpn_main_icon.sh │ │ ├── create_ship.sh │ │ ├── opencpn.svg │ │ ├── opencpn_feature_graphic.jpg │ │ ├── opencpn_feature_graphic.png │ │ ├── opencpn_logo.png │ │ ├── opencpn_logo.svg │ │ ├── opencpn_mobile.png │ │ ├── opencpn_mobile.svg │ │ ├── opencpn_mobile0.png │ │ ├── opencpn_web.svg │ │ ├── ship_red.svg │ │ └── ship_red0.svg │ ├── package-x-generic.png │ ├── plus.svg │ ├── png2wx.pl │ ├── styles.xml │ ├── toolicons_journeyman.png │ ├── toolicons_journeyman_flat.png │ └── toolicons_traditional.png ├── filter.schema.json ├── opencpn.appdata.xml.in ├── opencpn.desktop ├── opencpn.rc.in └── tzdata.h ├── s57 └── CMakeLists.txt ├── test ├── CMakeLists.txt ├── README.md ├── buffer_tests.cpp ├── cli_server.cpp ├── cmdline_server.py ├── datetime_tests.cpp ├── dbus_tests.cpp ├── filter_tests.cpp ├── ipc-srv-tests.cpp ├── ipc_client.cpp ├── n2k_tests.cpp ├── navutil_base_tests.cpp ├── rest-tests.cpp ├── std_instance.cpp ├── test_server.py ├── testdata │ ├── Go_to_Guernesey-1659560589281.txt │ ├── Go_to_Guernesey-1659560590623.txt │ ├── Go_to_Guernesey.txt │ ├── Guernesey-1659560590623.input.txt │ ├── Hakefjord.log │ ├── candump-2022-07-30_102821-head.log │ ├── foo.gpx │ ├── opencpn.conf │ ├── preprocess-0183 │ ├── stupan.se-10112-tcp.log │ └── stupan.se-10112-tcp.log.input ├── tests.cpp ├── testvers.cpp └── wx_instance.cpp ├── vagrant ├── README └── Vagrantfile └── xmlschemas └── opencpn_v1.0.xsd /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/.clang-format -------------------------------------------------------------------------------- /.cmake-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/.cmake-format.yaml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/MacOS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/.github/workflows/MacOS.yaml -------------------------------------------------------------------------------- /.github/workflows/doxygen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/.github/workflows/doxygen.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/zulip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/.github/workflows/zulip.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Authors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/Authors.adoc -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.gplv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/COPYING.gplv2 -------------------------------------------------------------------------------- /COPYING.gplv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/COPYING.gplv3 -------------------------------------------------------------------------------- /COPYING.lgplv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/COPYING.lgplv2 -------------------------------------------------------------------------------- /COPYING.lgplv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/COPYING.lgplv3 -------------------------------------------------------------------------------- /Docs/OSENC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/Docs/OSENC -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/LICENSING -------------------------------------------------------------------------------- /LINUX_DEVICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/LINUX_DEVICES.md -------------------------------------------------------------------------------- /MESSAGES.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/MESSAGES.adoc -------------------------------------------------------------------------------- /NSIS.template.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/NSIS.template.in.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/README -------------------------------------------------------------------------------- /VERSION.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/VERSION.cmake -------------------------------------------------------------------------------- /android/androidUTIL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/android/androidUTIL.cpp -------------------------------------------------------------------------------- /android/androidUTIL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/android/androidUTIL.h -------------------------------------------------------------------------------- /android/crashlytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/android/crashlytics.h -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/app.manifest -------------------------------------------------------------------------------- /check-pr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/check-pr -------------------------------------------------------------------------------- /ci/api-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/api-docs.sh -------------------------------------------------------------------------------- /ci/appveyor-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/appveyor-upload.sh -------------------------------------------------------------------------------- /ci/appveyor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/appveyor.bat -------------------------------------------------------------------------------- /ci/circleci-build-flatpak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/circleci-build-flatpak.sh -------------------------------------------------------------------------------- /ci/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/control -------------------------------------------------------------------------------- /ci/docker-auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/docker-auth.sh -------------------------------------------------------------------------------- /ci/generic-build-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/generic-build-debian.sh -------------------------------------------------------------------------------- /ci/generic-build-flatpak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/generic-build-flatpak.sh -------------------------------------------------------------------------------- /ci/generic-build-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/generic-build-macos.sh -------------------------------------------------------------------------------- /ci/generic-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/generic-upload.sh -------------------------------------------------------------------------------- /ci/github-build-flatpak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/github-build-flatpak.sh -------------------------------------------------------------------------------- /ci/github-pre-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/github-pre-build.sh -------------------------------------------------------------------------------- /ci/github-win_deps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/github-win_deps.bat -------------------------------------------------------------------------------- /ci/gpg.tar.gz.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/gpg.tar.gz.cpt -------------------------------------------------------------------------------- /ci/id_opencpn.tar.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/id_opencpn.tar.cpt -------------------------------------------------------------------------------- /ci/macos-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/macos-deps -------------------------------------------------------------------------------- /ci/macos-sign-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/macos-sign-cleanup.sh -------------------------------------------------------------------------------- /ci/macos-sign-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/macos-sign-setup.sh -------------------------------------------------------------------------------- /ci/macos-universal-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/macos-universal-deps.sh -------------------------------------------------------------------------------- /ci/universal-build-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/ci/universal-build-macos.sh -------------------------------------------------------------------------------- /cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cli/CMakeLists.txt -------------------------------------------------------------------------------- /cli/api_shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cli/api_shim.cpp -------------------------------------------------------------------------------- /cli/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cli/console.cpp -------------------------------------------------------------------------------- /cmake/BundleMingwLibs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/BundleMingwLibs.cmake -------------------------------------------------------------------------------- /cmake/FindEXIF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/FindEXIF.cmake -------------------------------------------------------------------------------- /cmake/FindFFmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/FindFFmpeg.cmake -------------------------------------------------------------------------------- /cmake/FindGTK3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/FindGTK3.cmake -------------------------------------------------------------------------------- /cmake/FindHarfBuzz.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/FindHarfBuzz.cmake -------------------------------------------------------------------------------- /cmake/FindPANGO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/FindPANGO.cmake -------------------------------------------------------------------------------- /cmake/FindPixman.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/FindPixman.cmake -------------------------------------------------------------------------------- /cmake/FindTinyXML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/FindTinyXML.cmake -------------------------------------------------------------------------------- /cmake/FindZSTD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/FindZSTD.cmake -------------------------------------------------------------------------------- /cmake/Findgps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/Findgps.cmake -------------------------------------------------------------------------------- /cmake/GetArch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/GetArch.cmake -------------------------------------------------------------------------------- /cmake/OcpnFindCairo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/OcpnFindCairo.cmake -------------------------------------------------------------------------------- /cmake/OcpnFindExpat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/OcpnFindExpat.cmake -------------------------------------------------------------------------------- /cmake/OcpnFindFfmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/OcpnFindFfmpeg.cmake -------------------------------------------------------------------------------- /cmake/OcpnFindGpsd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/OcpnFindGpsd.cmake -------------------------------------------------------------------------------- /cmake/OcpnFindGtk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/OcpnFindGtk.cmake -------------------------------------------------------------------------------- /cmake/SimpleWxConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/SimpleWxConfig.cmake -------------------------------------------------------------------------------- /cmake/TargetSetup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/TargetSetup.cmake -------------------------------------------------------------------------------- /cmake/Utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/Utils.cmake -------------------------------------------------------------------------------- /cmake/gitcheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/gitcheck.cmake -------------------------------------------------------------------------------- /cmake/in-files/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/in-files/config.h.in -------------------------------------------------------------------------------- /cmake/uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/uninstall.cmake.in -------------------------------------------------------------------------------- /cmake/version_git.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/version_git.cmake -------------------------------------------------------------------------------- /cmake/version_git.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/cmake/version_git.in -------------------------------------------------------------------------------- /data/Authors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/Authors.adoc -------------------------------------------------------------------------------- /data/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/authors.html -------------------------------------------------------------------------------- /data/basemap_shp/basemap_crude_10x10.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/basemap_shp/basemap_low.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 2 | -------------------------------------------------------------------------------- /data/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/changelog -------------------------------------------------------------------------------- /data/changelog.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/changelog.gz -------------------------------------------------------------------------------- /data/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/copyright -------------------------------------------------------------------------------- /data/doc/help_web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/doc/help_web.html -------------------------------------------------------------------------------- /data/gshhs/poly-c-1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/gshhs/poly-c-1.dat -------------------------------------------------------------------------------- /data/gshhs/wdb_borders_c.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/gshhs/wdb_borders_c.b -------------------------------------------------------------------------------- /data/gshhs/wdb_rivers_c.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/gshhs/wdb_rivers_c.b -------------------------------------------------------------------------------- /data/help_web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/help_web.html -------------------------------------------------------------------------------- /data/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/license.html -------------------------------------------------------------------------------- /data/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/license.txt -------------------------------------------------------------------------------- /data/ocpn-plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/ocpn-plugins.xml -------------------------------------------------------------------------------- /data/opencpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/opencpn.png -------------------------------------------------------------------------------- /data/s57data/Helvetica.txf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/s57data/Helvetica.txf -------------------------------------------------------------------------------- /data/s57data/S52RAZDS.RLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/s57data/S52RAZDS.RLE -------------------------------------------------------------------------------- /data/s57data/attdecode.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/s57data/attdecode.csv -------------------------------------------------------------------------------- /data/s57data/chartsymbols.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/s57data/chartsymbols.xml -------------------------------------------------------------------------------- /data/sounds/1bells.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/sounds/1bells.wav -------------------------------------------------------------------------------- /data/sounds/2bells.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/sounds/2bells.wav -------------------------------------------------------------------------------- /data/sounds/README.bells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/sounds/README.bells -------------------------------------------------------------------------------- /data/sounds/beep1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/sounds/beep1.wav -------------------------------------------------------------------------------- /data/sounds/beep3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/sounds/beep3.wav -------------------------------------------------------------------------------- /data/sounds/beep_ssl.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/sounds/beep_ssl.wav -------------------------------------------------------------------------------- /data/sounds/phonering1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/sounds/phonering1.wav -------------------------------------------------------------------------------- /data/ssfn/FreeSans.sfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/ssfn/FreeSans.sfn -------------------------------------------------------------------------------- /data/styles/qtstylesheet.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/styles/qtstylesheet.qss -------------------------------------------------------------------------------- /data/svg/MUI_flat/GRIB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/MUI_flat/GRIB.svg -------------------------------------------------------------------------------- /data/svg/MUI_flat/MUI_RMD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/MUI_flat/MUI_RMD.svg -------------------------------------------------------------------------------- /data/svg/MUI_flat/WMM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/MUI_flat/WMM.svg -------------------------------------------------------------------------------- /data/svg/MUI_flat/X_mult.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/MUI_flat/X_mult.svg -------------------------------------------------------------------------------- /data/svg/MUI_flat/gps1Bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/MUI_flat/gps1Bar.svg -------------------------------------------------------------------------------- /data/svg/MUI_flat/gps2Bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/MUI_flat/gps2Bar.svg -------------------------------------------------------------------------------- /data/svg/MUI_flat/gps3Bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/MUI_flat/gps3Bar.svg -------------------------------------------------------------------------------- /data/svg/MUI_flat/gpsGrn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/MUI_flat/gpsGrn.svg -------------------------------------------------------------------------------- /data/svg/MUI_flat/gpsGry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/MUI_flat/gpsGry.svg -------------------------------------------------------------------------------- /data/svg/MUI_flat/gpsRed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/MUI_flat/gpsRed.svg -------------------------------------------------------------------------------- /data/svg/MUI_flat/mob_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/MUI_flat/mob_btn.svg -------------------------------------------------------------------------------- /data/svg/traditional/AIS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/traditional/AIS.svg -------------------------------------------------------------------------------- /data/svg/traditional/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/traditional/down.svg -------------------------------------------------------------------------------- /data/svg/traditional/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/traditional/help.svg -------------------------------------------------------------------------------- /data/svg/traditional/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/traditional/left.svg -------------------------------------------------------------------------------- /data/svg/traditional/mob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/traditional/mob.svg -------------------------------------------------------------------------------- /data/svg/traditional/scin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/traditional/scin.svg -------------------------------------------------------------------------------- /data/svg/traditional/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/traditional/text.svg -------------------------------------------------------------------------------- /data/svg/traditional/tide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/traditional/tide.svg -------------------------------------------------------------------------------- /data/svg/traditional/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/svg/traditional/up.svg -------------------------------------------------------------------------------- /data/tcdata/HARMONICS_NO_US: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/tcdata/HARMONICS_NO_US -------------------------------------------------------------------------------- /data/tcdata/README.harmonics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/tcdata/README.harmonics -------------------------------------------------------------------------------- /data/tools/doc_from_wiki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/tools/doc_from_wiki.sh -------------------------------------------------------------------------------- /data/wvsdata/readmewvs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/wvsdata/readmewvs.txt -------------------------------------------------------------------------------- /data/wvsdata/wvs1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/wvsdata/wvs1.dat -------------------------------------------------------------------------------- /data/wvsdata/wvs43.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/data/wvsdata/wvs43.dat -------------------------------------------------------------------------------- /deploy_rsa.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/deploy_rsa.enc -------------------------------------------------------------------------------- /docker/Dockerfile.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/docker/Dockerfile.builder -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/docker/README.md -------------------------------------------------------------------------------- /flatpak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/flatpak/Makefile -------------------------------------------------------------------------------- /flatpak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/flatpak/README.md -------------------------------------------------------------------------------- /flatpak/manifest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/flatpak/manifest.patch -------------------------------------------------------------------------------- /flatpak/repo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/flatpak/repo/index.html -------------------------------------------------------------------------------- /glutil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/glutil/CMakeLists.txt -------------------------------------------------------------------------------- /glutil/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/glutil/console.cpp -------------------------------------------------------------------------------- /gui/include/gui/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/about.h -------------------------------------------------------------------------------- /gui/include/gui/about_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/about_frame.h -------------------------------------------------------------------------------- /gui/include/gui/ais.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/ais.h -------------------------------------------------------------------------------- /gui/include/gui/canvas_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/canvas_menu.h -------------------------------------------------------------------------------- /gui/include/gui/catalog_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/catalog_mgr.h -------------------------------------------------------------------------------- /gui/include/gui/ch_info_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/ch_info_win.h -------------------------------------------------------------------------------- /gui/include/gui/chartbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/chartbase.h -------------------------------------------------------------------------------- /gui/include/gui/chartdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/chartdb.h -------------------------------------------------------------------------------- /gui/include/gui/chartdbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/chartdbs.h -------------------------------------------------------------------------------- /gui/include/gui/chartimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/chartimg.h -------------------------------------------------------------------------------- /gui/include/gui/chcanv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/chcanv.h -------------------------------------------------------------------------------- /gui/include/gui/cm93.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/cm93.h -------------------------------------------------------------------------------- /gui/include/gui/compass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/compass.h -------------------------------------------------------------------------------- /gui/include/gui/concanv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/concanv.h -------------------------------------------------------------------------------- /gui/include/gui/config_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/config_mgr.h -------------------------------------------------------------------------------- /gui/include/gui/crashprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/crashprint.h -------------------------------------------------------------------------------- /gui/include/gui/displays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/displays.h -------------------------------------------------------------------------------- /gui/include/gui/dychart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/dychart.h -------------------------------------------------------------------------------- /gui/include/gui/emboss_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/emboss_data.h -------------------------------------------------------------------------------- /gui/include/gui/filter_dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/filter_dlg.h -------------------------------------------------------------------------------- /gui/include/gui/flex_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/flex_hash.h -------------------------------------------------------------------------------- /gui/include/gui/font_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/font_desc.h -------------------------------------------------------------------------------- /gui/include/gui/font_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/font_mgr.h -------------------------------------------------------------------------------- /gui/include/gui/gl_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/gl_headers.h -------------------------------------------------------------------------------- /gui/include/gui/gshhs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/gshhs.h -------------------------------------------------------------------------------- /gui/include/gui/gui_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/gui_lib.h -------------------------------------------------------------------------------- /gui/include/gui/hotkeys_dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/hotkeys_dlg.h -------------------------------------------------------------------------------- /gui/include/gui/idx_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/idx_entry.h -------------------------------------------------------------------------------- /gui/include/gui/kml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/kml.h -------------------------------------------------------------------------------- /gui/include/gui/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/layer.h -------------------------------------------------------------------------------- /gui/include/gui/mark_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/mark_info.h -------------------------------------------------------------------------------- /gui/include/gui/mbtiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/mbtiles.h -------------------------------------------------------------------------------- /gui/include/gui/mui_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/mui_bar.h -------------------------------------------------------------------------------- /gui/include/gui/navutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/navutil.h -------------------------------------------------------------------------------- /gui/include/gui/o_senc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/o_senc.h -------------------------------------------------------------------------------- /gui/include/gui/ocp_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/ocp_cursor.h -------------------------------------------------------------------------------- /gui/include/gui/ocpn_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/ocpn_app.h -------------------------------------------------------------------------------- /gui/include/gui/ocpn_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/ocpn_frame.h -------------------------------------------------------------------------------- /gui/include/gui/ocpn_pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/ocpn_pixel.h -------------------------------------------------------------------------------- /gui/include/gui/ocpn_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/ocpn_region.h -------------------------------------------------------------------------------- /gui/include/gui/ocpndc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/ocpndc.h -------------------------------------------------------------------------------- /gui/include/gui/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/options.h -------------------------------------------------------------------------------- /gui/include/gui/piano.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/piano.h -------------------------------------------------------------------------------- /gui/include/gui/printtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/printtable.h -------------------------------------------------------------------------------- /gui/include/gui/quilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/quilt.h -------------------------------------------------------------------------------- /gui/include/gui/route_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/route_gui.h -------------------------------------------------------------------------------- /gui/include/gui/s57_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/s57_light.h -------------------------------------------------------------------------------- /gui/include/gui/s57_sector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/s57_sector.h -------------------------------------------------------------------------------- /gui/include/gui/s57chart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/s57chart.h -------------------------------------------------------------------------------- /gui/include/gui/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/shaders.h -------------------------------------------------------------------------------- /gui/include/gui/ssfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/ssfn.h -------------------------------------------------------------------------------- /gui/include/gui/styles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/styles.h -------------------------------------------------------------------------------- /gui/include/gui/svg_icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/svg_icons.h -------------------------------------------------------------------------------- /gui/include/gui/tc_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/tc_win.h -------------------------------------------------------------------------------- /gui/include/gui/tcmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/tcmgr.h -------------------------------------------------------------------------------- /gui/include/gui/thumbwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/thumbwin.h -------------------------------------------------------------------------------- /gui/include/gui/tide_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/tide_time.h -------------------------------------------------------------------------------- /gui/include/gui/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/timers.h -------------------------------------------------------------------------------- /gui/include/gui/toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/toolbar.h -------------------------------------------------------------------------------- /gui/include/gui/tooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/tooltip.h -------------------------------------------------------------------------------- /gui/include/gui/track_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/track_gui.h -------------------------------------------------------------------------------- /gui/include/gui/tty_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/tty_scroll.h -------------------------------------------------------------------------------- /gui/include/gui/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/undo.h -------------------------------------------------------------------------------- /gui/include/gui/update_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/update_mgr.h -------------------------------------------------------------------------------- /gui/include/gui/usb_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/usb_devices.h -------------------------------------------------------------------------------- /gui/include/gui/viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/viewport.h -------------------------------------------------------------------------------- /gui/include/gui/wiz_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/include/gui/wiz_ui.h -------------------------------------------------------------------------------- /gui/src/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/about.cpp -------------------------------------------------------------------------------- /gui/src/about_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/about_frame.cpp -------------------------------------------------------------------------------- /gui/src/about_frame_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/about_frame_impl.cpp -------------------------------------------------------------------------------- /gui/src/adapter_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/adapter_info.cpp -------------------------------------------------------------------------------- /gui/src/ais.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ais.cpp -------------------------------------------------------------------------------- /gui/src/ais_info_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ais_info_gui.cpp -------------------------------------------------------------------------------- /gui/src/canvas_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/canvas_config.cpp -------------------------------------------------------------------------------- /gui/src/canvas_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/canvas_menu.cpp -------------------------------------------------------------------------------- /gui/src/canvas_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/canvas_options.cpp -------------------------------------------------------------------------------- /gui/src/cat_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/cat_settings.cpp -------------------------------------------------------------------------------- /gui/src/catalog_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/catalog_mgr.cpp -------------------------------------------------------------------------------- /gui/src/ch_info_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ch_info_win.cpp -------------------------------------------------------------------------------- /gui/src/chartdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/chartdb.cpp -------------------------------------------------------------------------------- /gui/src/chartdbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/chartdbs.cpp -------------------------------------------------------------------------------- /gui/src/chartimg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/chartimg.cpp -------------------------------------------------------------------------------- /gui/src/chcanv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/chcanv.cpp -------------------------------------------------------------------------------- /gui/src/cm93.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/cm93.cpp -------------------------------------------------------------------------------- /gui/src/color_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/color_handler.cpp -------------------------------------------------------------------------------- /gui/src/compass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/compass.cpp -------------------------------------------------------------------------------- /gui/src/concanv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/concanv.cpp -------------------------------------------------------------------------------- /gui/src/config_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/config_mgr.cpp -------------------------------------------------------------------------------- /gui/src/conn_params_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/conn_params_panel.cpp -------------------------------------------------------------------------------- /gui/src/connection_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/connection_edit.cpp -------------------------------------------------------------------------------- /gui/src/connections_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/connections_dlg.cpp -------------------------------------------------------------------------------- /gui/src/crashprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/crashprint.cpp -------------------------------------------------------------------------------- /gui/src/data_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/data_monitor.cpp -------------------------------------------------------------------------------- /gui/src/detail_slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/detail_slider.cpp -------------------------------------------------------------------------------- /gui/src/displays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/displays.cpp -------------------------------------------------------------------------------- /gui/src/download_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/download_mgr.cpp -------------------------------------------------------------------------------- /gui/src/filter_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/filter_dlg.cpp -------------------------------------------------------------------------------- /gui/src/flex_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/flex_hash.cpp -------------------------------------------------------------------------------- /gui/src/font_desc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/font_desc.cpp -------------------------------------------------------------------------------- /gui/src/font_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/font_mgr.cpp -------------------------------------------------------------------------------- /gui/src/gl_chart_canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/gl_chart_canvas.cpp -------------------------------------------------------------------------------- /gui/src/gl_tex_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/gl_tex_cache.cpp -------------------------------------------------------------------------------- /gui/src/gl_texture_descr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/gl_texture_descr.cpp -------------------------------------------------------------------------------- /gui/src/gl_texture_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/gl_texture_mgr.cpp -------------------------------------------------------------------------------- /gui/src/gshhs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/gshhs.cpp -------------------------------------------------------------------------------- /gui/src/gui_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/gui_lib.cpp -------------------------------------------------------------------------------- /gui/src/hotkeys_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/hotkeys_dlg.cpp -------------------------------------------------------------------------------- /gui/src/idx_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/idx_entry.cpp -------------------------------------------------------------------------------- /gui/src/ienc_toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ienc_toolbar.cpp -------------------------------------------------------------------------------- /gui/src/initwiz/init_wiz.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/initwiz/init_wiz.fbp -------------------------------------------------------------------------------- /gui/src/initwiz/wiz_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/initwiz/wiz_ui.cpp -------------------------------------------------------------------------------- /gui/src/kml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/kml.cpp -------------------------------------------------------------------------------- /gui/src/layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/layer.cpp -------------------------------------------------------------------------------- /gui/src/link_prop_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/link_prop_dlg.cpp -------------------------------------------------------------------------------- /gui/src/load_errors_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/load_errors_dlg.cpp -------------------------------------------------------------------------------- /gui/src/mark_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/mark_info.cpp -------------------------------------------------------------------------------- /gui/src/mbtiles/mbtiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/mbtiles/mbtiles.cpp -------------------------------------------------------------------------------- /gui/src/mbtiles/tile_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/mbtiles/tile_cache.h -------------------------------------------------------------------------------- /gui/src/mbtiles/tile_descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/mbtiles/tile_descr.h -------------------------------------------------------------------------------- /gui/src/mbtiles/tile_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/mbtiles/tile_queue.h -------------------------------------------------------------------------------- /gui/src/mbtiles/tile_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/mbtiles/tile_thread.h -------------------------------------------------------------------------------- /gui/src/mui_bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/mui_bar.cpp -------------------------------------------------------------------------------- /gui/src/navutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/navutil.cpp -------------------------------------------------------------------------------- /gui/src/o_senc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/o_senc.cpp -------------------------------------------------------------------------------- /gui/src/ocp_cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ocp_cursor.cpp -------------------------------------------------------------------------------- /gui/src/ocpn_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ocpn_app.cpp -------------------------------------------------------------------------------- /gui/src/ocpn_aui_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ocpn_aui_manager.cpp -------------------------------------------------------------------------------- /gui/src/ocpn_fontdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ocpn_fontdlg.cpp -------------------------------------------------------------------------------- /gui/src/ocpn_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ocpn_frame.cpp -------------------------------------------------------------------------------- /gui/src/ocpn_gl_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ocpn_gl_options.cpp -------------------------------------------------------------------------------- /gui/src/ocpn_list_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ocpn_list_ctrl.cpp -------------------------------------------------------------------------------- /gui/src/ocpn_pixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ocpn_pixel.cpp -------------------------------------------------------------------------------- /gui/src/ocpn_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ocpn_platform.cpp -------------------------------------------------------------------------------- /gui/src/ocpn_plugin_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ocpn_plugin_gui.cpp -------------------------------------------------------------------------------- /gui/src/ocpn_region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ocpn_region.cpp -------------------------------------------------------------------------------- /gui/src/ocpndc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/ocpndc.cpp -------------------------------------------------------------------------------- /gui/src/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/options.cpp -------------------------------------------------------------------------------- /gui/src/peer_client_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/peer_client_dlg.cpp -------------------------------------------------------------------------------- /gui/src/piano.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/piano.cpp -------------------------------------------------------------------------------- /gui/src/pluginmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/pluginmanager.cpp -------------------------------------------------------------------------------- /gui/src/print_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/print_dialog.cpp -------------------------------------------------------------------------------- /gui/src/printout_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/printout_base.cpp -------------------------------------------------------------------------------- /gui/src/printout_chart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/printout_chart.cpp -------------------------------------------------------------------------------- /gui/src/printtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/printtable.cpp -------------------------------------------------------------------------------- /gui/src/priority_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/priority_gui.cpp -------------------------------------------------------------------------------- /gui/src/quilt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/quilt.cpp -------------------------------------------------------------------------------- /gui/src/rest_server_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/rest_server_gui.cpp -------------------------------------------------------------------------------- /gui/src/rollover_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/rollover_win.cpp -------------------------------------------------------------------------------- /gui/src/route_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/route_gui.cpp -------------------------------------------------------------------------------- /gui/src/route_point_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/route_point_gui.cpp -------------------------------------------------------------------------------- /gui/src/route_printout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/route_printout.cpp -------------------------------------------------------------------------------- /gui/src/route_prop_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/route_prop_dlg.cpp -------------------------------------------------------------------------------- /gui/src/route_validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/route_validator.cpp -------------------------------------------------------------------------------- /gui/src/routeman_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/routeman_gui.cpp -------------------------------------------------------------------------------- /gui/src/s57_ocpn_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/s57_ocpn_utils.cpp -------------------------------------------------------------------------------- /gui/src/s57_query_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/s57_query_dlg.cpp -------------------------------------------------------------------------------- /gui/src/s57chart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/s57chart.cpp -------------------------------------------------------------------------------- /gui/src/s57obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/s57obj.cpp -------------------------------------------------------------------------------- /gui/src/safe_mode_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/safe_mode_gui.cpp -------------------------------------------------------------------------------- /gui/src/senc_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/senc_manager.cpp -------------------------------------------------------------------------------- /gui/src/send_to_gps_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/send_to_gps_dlg.cpp -------------------------------------------------------------------------------- /gui/src/send_to_peer_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/send_to_peer_dlg.cpp -------------------------------------------------------------------------------- /gui/src/shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/shaders.cpp -------------------------------------------------------------------------------- /gui/src/shapefile_basemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/shapefile_basemap.cpp -------------------------------------------------------------------------------- /gui/src/station_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/station_data.cpp -------------------------------------------------------------------------------- /gui/src/styles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/styles.cpp -------------------------------------------------------------------------------- /gui/src/svg_icons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/svg_icons.cpp -------------------------------------------------------------------------------- /gui/src/tc_data_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/tc_data_factory.cpp -------------------------------------------------------------------------------- /gui/src/tc_data_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/tc_data_source.cpp -------------------------------------------------------------------------------- /gui/src/tc_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/tc_win.cpp -------------------------------------------------------------------------------- /gui/src/tcmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/tcmgr.cpp -------------------------------------------------------------------------------- /gui/src/thumbwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/thumbwin.cpp -------------------------------------------------------------------------------- /gui/src/toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/toolbar.cpp -------------------------------------------------------------------------------- /gui/src/tooltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/tooltip.cpp -------------------------------------------------------------------------------- /gui/src/track_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/track_gui.cpp -------------------------------------------------------------------------------- /gui/src/track_printout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/track_printout.cpp -------------------------------------------------------------------------------- /gui/src/track_prop_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/track_prop_dlg.cpp -------------------------------------------------------------------------------- /gui/src/tty_scroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/tty_scroll.cpp -------------------------------------------------------------------------------- /gui/src/udev_rule_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/udev_rule_mgr.cpp -------------------------------------------------------------------------------- /gui/src/undo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/undo.cpp -------------------------------------------------------------------------------- /gui/src/update_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/update_mgr.cpp -------------------------------------------------------------------------------- /gui/src/viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/viewport.cpp -------------------------------------------------------------------------------- /gui/src/waypointman_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/gui/src/waypointman_gui.cpp -------------------------------------------------------------------------------- /include/intro-comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/include/intro-comm.h -------------------------------------------------------------------------------- /include/intro-plugin-comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/include/intro-plugin-comm.h -------------------------------------------------------------------------------- /include/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/include/intro.h -------------------------------------------------------------------------------- /include/ocpn_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/include/ocpn_plugin.h -------------------------------------------------------------------------------- /libs/AndroidLibs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/AndroidLibs.cmake -------------------------------------------------------------------------------- /libs/IXWebSocket/Dockerfile: -------------------------------------------------------------------------------- 1 | docker/Dockerfile.alpine -------------------------------------------------------------------------------- /libs/IXWebSocket/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/IXWebSocket/LICENSE.txt -------------------------------------------------------------------------------- /libs/IXWebSocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/IXWebSocket/README.md -------------------------------------------------------------------------------- /libs/IXWebSocket/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/IXWebSocket/SECURITY.md -------------------------------------------------------------------------------- /libs/IXWebSocket/docs/ws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/IXWebSocket/docs/ws.md -------------------------------------------------------------------------------- /libs/IXWebSocket/httpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/IXWebSocket/httpd.cpp -------------------------------------------------------------------------------- /libs/IXWebSocket/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/IXWebSocket/main.cpp -------------------------------------------------------------------------------- /libs/IXWebSocket/makefile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/IXWebSocket/makefile.dev -------------------------------------------------------------------------------- /libs/IXWebSocket/mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: IXWebSocket 2 | -------------------------------------------------------------------------------- /libs/IXWebSocket/test/.certs/trusted-ca-crt.srl: -------------------------------------------------------------------------------- 1 | 297E3BFAD1F1F96A60A2AF0F48B092E705C0C68A 2 | -------------------------------------------------------------------------------- /libs/IXWebSocket/test/.certs/untrusted-ca-crt.srl: -------------------------------------------------------------------------------- 1 | 5CB637D0B24622D344F4C956FE5930B22CF87221 2 | -------------------------------------------------------------------------------- /libs/IXWebSocket/test/compatibility/python/websockets/DOCKER_VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1 2 | -------------------------------------------------------------------------------- /libs/IXWebSocket/test/compatibility/python/websockets/empty_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/IXWebSocket/test/compatibility/python/websockets/localhost.pem: -------------------------------------------------------------------------------- 1 | trusted-client-crt.pem -------------------------------------------------------------------------------- /libs/IXWebSocket/test/compatibility/python/websockets/small_file: -------------------------------------------------------------------------------- 1 | not much in here 2 | -------------------------------------------------------------------------------- /libs/IXWebSocket/test/data/foo.txt: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /libs/IXWebSocket/test/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/IXWebSocket/test/run.py -------------------------------------------------------------------------------- /libs/IXWebSocket/test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/IXWebSocket/test/run.sh -------------------------------------------------------------------------------- /libs/IXWebSocket/third_party/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /libs/IXWebSocket/ws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/IXWebSocket/ws/README.md -------------------------------------------------------------------------------- /libs/IXWebSocket/ws/ws.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/IXWebSocket/ws/ws.cpp -------------------------------------------------------------------------------- /libs/N2KParser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/N2KParser/CMakeLists.txt -------------------------------------------------------------------------------- /libs/N2KParser/src/N2kMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/N2KParser/src/N2kMsg.cpp -------------------------------------------------------------------------------- /libs/SQLiteCpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/SQLiteCpp/CMakeLists.txt -------------------------------------------------------------------------------- /libs/SQLiteCpp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/SQLiteCpp/LICENSE.txt -------------------------------------------------------------------------------- /libs/SQLiteCpp/src/Backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/SQLiteCpp/src/Backup.cpp -------------------------------------------------------------------------------- /libs/SQLiteCpp/src/Column.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/SQLiteCpp/src/Column.cpp -------------------------------------------------------------------------------- /libs/garmin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/CMakeLists.txt -------------------------------------------------------------------------------- /libs/garmin/jeeps/garminusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/garminusb.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsapp.c -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsapp.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpscom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpscom.c -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpscom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpscom.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsdatum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsdatum.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsdevice.c -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsdevice.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsfmt.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsinput.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsmath.c -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsmath.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsmem.c -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsmem.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsport.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsproj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsproj.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsprot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsprot.c -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsprot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsprot.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsread.c -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsread.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsrqst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsrqst.c -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsrqst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsrqst.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpssend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpssend.c -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpssend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpssend.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsserial.c -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsserial.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsusbint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsusbint.h -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsusbwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsusbwin.c -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsutil.c -------------------------------------------------------------------------------- /libs/garmin/jeeps/gpsutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/garmin/jeeps/gpsutil.h -------------------------------------------------------------------------------- /libs/gdal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/CMakeLists.txt -------------------------------------------------------------------------------- /libs/gdal/include/gdal/gdal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/include/gdal/gdal.h -------------------------------------------------------------------------------- /libs/gdal/src/cpl_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/cpl_conv.cpp -------------------------------------------------------------------------------- /libs/gdal/src/cpl_csv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/cpl_csv.cpp -------------------------------------------------------------------------------- /libs/gdal/src/cpl_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/cpl_error.cpp -------------------------------------------------------------------------------- /libs/gdal/src/cpl_minixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/cpl_minixml.cpp -------------------------------------------------------------------------------- /libs/gdal/src/cpl_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/cpl_path.cpp -------------------------------------------------------------------------------- /libs/gdal/src/cpl_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/cpl_string.cpp -------------------------------------------------------------------------------- /libs/gdal/src/gdal_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/gdal_misc.cpp -------------------------------------------------------------------------------- /libs/gdal/src/ogrcurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/ogrcurve.cpp -------------------------------------------------------------------------------- /libs/gdal/src/ogrfeature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/ogrfeature.cpp -------------------------------------------------------------------------------- /libs/gdal/src/ogrgeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/ogrgeometry.cpp -------------------------------------------------------------------------------- /libs/gdal/src/ogrlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/ogrlayer.cpp -------------------------------------------------------------------------------- /libs/gdal/src/ogrpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/ogrpoint.cpp -------------------------------------------------------------------------------- /libs/gdal/src/ogrpolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/ogrpolygon.cpp -------------------------------------------------------------------------------- /libs/gdal/src/ogrutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gdal/src/ogrutils.cpp -------------------------------------------------------------------------------- /libs/geoprim/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/geoprim/CMakeLists.txt -------------------------------------------------------------------------------- /libs/geoprim/src/LLRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/geoprim/src/LLRegion.cpp -------------------------------------------------------------------------------- /libs/geoprim/src/LLRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/geoprim/src/LLRegion.h -------------------------------------------------------------------------------- /libs/geoprim/src/LOD_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/geoprim/src/LOD_reduce.h -------------------------------------------------------------------------------- /libs/geoprim/src/bbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/geoprim/src/bbox.cpp -------------------------------------------------------------------------------- /libs/geoprim/src/bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/geoprim/src/bbox.h -------------------------------------------------------------------------------- /libs/geoprim/src/line_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/geoprim/src/line_clip.h -------------------------------------------------------------------------------- /libs/geoprim/src/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/geoprim/src/linmath.h -------------------------------------------------------------------------------- /libs/geoprim/src/poly_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/geoprim/src/poly_math.h -------------------------------------------------------------------------------- /libs/geoprim/src/vector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/geoprim/src/vector2D.h -------------------------------------------------------------------------------- /libs/glshim/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/CMakeLists.txt -------------------------------------------------------------------------------- /libs/glshim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/LICENSE -------------------------------------------------------------------------------- /libs/glshim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/README.md -------------------------------------------------------------------------------- /libs/glshim/include/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/include/EGL/egl.h -------------------------------------------------------------------------------- /libs/glshim/include/GL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/include/GL/gl.h -------------------------------------------------------------------------------- /libs/glshim/include/GL/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/include/GL/glu.h -------------------------------------------------------------------------------- /libs/glshim/include/GL/glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/include/GL/glx.h -------------------------------------------------------------------------------- /libs/glshim/include/GLES/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/include/GLES/gl.h -------------------------------------------------------------------------------- /libs/glshim/spec/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/spec/gen.py -------------------------------------------------------------------------------- /libs/glshim/spec/requirements.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | pyyaml 3 | -------------------------------------------------------------------------------- /libs/glshim/spec/template/proxy.h.j2: -------------------------------------------------------------------------------- 1 | {% extends "base/wrap.h.j2" %} 2 | -------------------------------------------------------------------------------- /libs/glshim/spec/xml/egl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/spec/xml/egl.xml -------------------------------------------------------------------------------- /libs/glshim/spec/xml/glx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/spec/xml/glx.xml -------------------------------------------------------------------------------- /libs/glshim/spec/xml/toyml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/spec/xml/toyml.py -------------------------------------------------------------------------------- /libs/glshim/spec/xml/wgl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/spec/xml/wgl.xml -------------------------------------------------------------------------------- /libs/glshim/spec/yml/alsa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/spec/yml/alsa.yml -------------------------------------------------------------------------------- /libs/glshim/spec/yml/egl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/spec/yml/egl.yml -------------------------------------------------------------------------------- /libs/glshim/spec/yml/glx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/spec/yml/glx.yml -------------------------------------------------------------------------------- /libs/glshim/spec/yml/wgl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/spec/yml/wgl.yml -------------------------------------------------------------------------------- /libs/glshim/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/config.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/array.c -------------------------------------------------------------------------------- /libs/glshim/src/gl/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/array.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/const.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/defines.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/eval.c -------------------------------------------------------------------------------- /libs/glshim/src/gl/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/eval.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/gl.c -------------------------------------------------------------------------------- /libs/glshim/src/gl/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/gl.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/light.c -------------------------------------------------------------------------------- /libs/glshim/src/gl/light.h: -------------------------------------------------------------------------------- 1 | #include "gl.h" 2 | 3 | void glLightModelf(GLenum pname, GLfloat param); 4 | -------------------------------------------------------------------------------- /libs/glshim/src/gl/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/line.c -------------------------------------------------------------------------------- /libs/glshim/src/gl/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/line.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/list.c -------------------------------------------------------------------------------- /libs/glshim/src/gl/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/list.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/pixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/pixel.c -------------------------------------------------------------------------------- /libs/glshim/src/gl/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/pixel.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/raster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/raster.c -------------------------------------------------------------------------------- /libs/glshim/src/gl/raster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/raster.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/stack.c -------------------------------------------------------------------------------- /libs/glshim/src/gl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/stack.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/state.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/texgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/texgen.c -------------------------------------------------------------------------------- /libs/glshim/src/gl/texgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/texgen.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/texture.c -------------------------------------------------------------------------------- /libs/glshim/src/gl/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/texture.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/wrap/es.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/wrap/es.h -------------------------------------------------------------------------------- /libs/glshim/src/gl/wrap/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/wrap/gl.c -------------------------------------------------------------------------------- /libs/glshim/src/gl/wrap/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/gl/wrap/gl.h -------------------------------------------------------------------------------- /libs/glshim/src/glx/glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/glx/glx.c -------------------------------------------------------------------------------- /libs/glshim/src/glx/glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/glx/glx.h -------------------------------------------------------------------------------- /libs/glshim/src/glx/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/glx/lookup.c -------------------------------------------------------------------------------- /libs/glshim/src/proxy/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/proxy/gl.h -------------------------------------------------------------------------------- /libs/glshim/src/proxy/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/proxy/proxy.h -------------------------------------------------------------------------------- /libs/glshim/src/tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/tests/main.c -------------------------------------------------------------------------------- /libs/glshim/src/util/khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glshim/src/util/khash.h -------------------------------------------------------------------------------- /libs/glu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/CMakeLists.txt -------------------------------------------------------------------------------- /libs/glu/include/gluos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/include/gluos.h -------------------------------------------------------------------------------- /libs/glu/libtess/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/README -------------------------------------------------------------------------------- /libs/glu/libtess/alg-outline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/alg-outline -------------------------------------------------------------------------------- /libs/glu/libtess/dict-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/dict-list.h -------------------------------------------------------------------------------- /libs/glu/libtess/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/dict.c -------------------------------------------------------------------------------- /libs/glu/libtess/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/dict.h -------------------------------------------------------------------------------- /libs/glu/libtess/geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/geom.c -------------------------------------------------------------------------------- /libs/glu/libtess/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/geom.h -------------------------------------------------------------------------------- /libs/glu/libtess/memalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/memalloc.c -------------------------------------------------------------------------------- /libs/glu/libtess/memalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/memalloc.h -------------------------------------------------------------------------------- /libs/glu/libtess/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/mesh.c -------------------------------------------------------------------------------- /libs/glu/libtess/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/mesh.h -------------------------------------------------------------------------------- /libs/glu/libtess/normal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/normal.c -------------------------------------------------------------------------------- /libs/glu/libtess/normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/normal.h -------------------------------------------------------------------------------- /libs/glu/libtess/priorityq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/priorityq.c -------------------------------------------------------------------------------- /libs/glu/libtess/priorityq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/priorityq.h -------------------------------------------------------------------------------- /libs/glu/libtess/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/render.c -------------------------------------------------------------------------------- /libs/glu/libtess/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/render.h -------------------------------------------------------------------------------- /libs/glu/libtess/sweep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/sweep.c -------------------------------------------------------------------------------- /libs/glu/libtess/sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/sweep.h -------------------------------------------------------------------------------- /libs/glu/libtess/tess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/tess.c -------------------------------------------------------------------------------- /libs/glu/libtess/tess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/tess.h -------------------------------------------------------------------------------- /libs/glu/libtess/tessmono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/tessmono.c -------------------------------------------------------------------------------- /libs/glu/libtess/tessmono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libtess/tessmono.h -------------------------------------------------------------------------------- /libs/glu/libutil/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/glu/libutil/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libutil/error.c -------------------------------------------------------------------------------- /libs/glu/libutil/glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libutil/glue.c -------------------------------------------------------------------------------- /libs/glu/libutil/gluint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libutil/gluint.h -------------------------------------------------------------------------------- /libs/glu/libutil/mipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libutil/mipmap.c -------------------------------------------------------------------------------- /libs/glu/libutil/project.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libutil/project.c -------------------------------------------------------------------------------- /libs/glu/libutil/quad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libutil/quad.c -------------------------------------------------------------------------------- /libs/glu/libutil/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/glu/libutil/registry.c -------------------------------------------------------------------------------- /libs/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /libs/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/CMakeLists.txt -------------------------------------------------------------------------------- /libs/gui/include/field_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/include/field_text.h -------------------------------------------------------------------------------- /libs/gui/include/form_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/include/form_grid.h -------------------------------------------------------------------------------- /libs/gui/include/svg_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/include/svg_button.h -------------------------------------------------------------------------------- /libs/gui/include/svg_icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/include/svg_icons.h -------------------------------------------------------------------------------- /libs/gui/include/text_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/include/text_entry.h -------------------------------------------------------------------------------- /libs/gui/include/ui_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/include/ui_utils.h -------------------------------------------------------------------------------- /libs/gui/src/dialog_alert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/src/dialog_alert.cpp -------------------------------------------------------------------------------- /libs/gui/src/dialog_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/src/dialog_base.cpp -------------------------------------------------------------------------------- /libs/gui/src/dialog_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/src/dialog_input.cpp -------------------------------------------------------------------------------- /libs/gui/src/edit_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/src/edit_button.cpp -------------------------------------------------------------------------------- /libs/gui/src/expand_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/src/expand_icon.cpp -------------------------------------------------------------------------------- /libs/gui/src/expand_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/src/expand_panel.cpp -------------------------------------------------------------------------------- /libs/gui/src/field_switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/src/field_switch.cpp -------------------------------------------------------------------------------- /libs/gui/src/field_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/src/field_text.cpp -------------------------------------------------------------------------------- /libs/gui/src/form_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/src/form_grid.cpp -------------------------------------------------------------------------------- /libs/gui/src/svg_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/src/svg_button.cpp -------------------------------------------------------------------------------- /libs/gui/src/svg_icons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/src/svg_icons.cpp -------------------------------------------------------------------------------- /libs/gui/src/text_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/src/text_entry.cpp -------------------------------------------------------------------------------- /libs/gui/src/ui_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/gui/src/ui_utils.cpp -------------------------------------------------------------------------------- /libs/iso8211/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/iso8211/CMakeLists.txt -------------------------------------------------------------------------------- /libs/iso8211/include/s57.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/iso8211/include/s57.h -------------------------------------------------------------------------------- /libs/iso8211/src/ddffield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/iso8211/src/ddffield.cpp -------------------------------------------------------------------------------- /libs/iso8211/src/ddfutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/iso8211/src/ddfutils.cpp -------------------------------------------------------------------------------- /libs/libdnet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/libdnet/CMakeLists.txt -------------------------------------------------------------------------------- /libs/libdnet/libdnet-libdnet-1.18.0/include/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /libs/libtess2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/libtess2/CMakeLists.txt -------------------------------------------------------------------------------- /libs/libtess2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/libtess2/LICENSE.txt -------------------------------------------------------------------------------- /libs/libtess2/Source/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/libtess2/Source/dict.c -------------------------------------------------------------------------------- /libs/libtess2/Source/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/libtess2/Source/dict.h -------------------------------------------------------------------------------- /libs/libtess2/Source/geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/libtess2/Source/geom.c -------------------------------------------------------------------------------- /libs/libtess2/Source/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/libtess2/Source/geom.h -------------------------------------------------------------------------------- /libs/libtess2/Source/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/libtess2/Source/mesh.c -------------------------------------------------------------------------------- /libs/libtess2/Source/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/libtess2/Source/mesh.h -------------------------------------------------------------------------------- /libs/libtess2/Source/sweep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/libtess2/Source/sweep.c -------------------------------------------------------------------------------- /libs/libtess2/Source/sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/libtess2/Source/sweep.h -------------------------------------------------------------------------------- /libs/libtess2/Source/tess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/libtess2/Source/tess.c -------------------------------------------------------------------------------- /libs/libtess2/Source/tess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/libtess2/Source/tess.h -------------------------------------------------------------------------------- /libs/lz4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/lz4/CMakeLists.txt -------------------------------------------------------------------------------- /libs/lz4/src/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/lz4/src/lz4.c -------------------------------------------------------------------------------- /libs/lz4/src/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/lz4/src/lz4.h -------------------------------------------------------------------------------- /libs/lz4/src/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/lz4/src/lz4hc.c -------------------------------------------------------------------------------- /libs/lz4/src/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/lz4/src/lz4hc.h -------------------------------------------------------------------------------- /libs/manual/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/manual/CMakeLists.txt -------------------------------------------------------------------------------- /libs/manual/include/manual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/manual/include/manual.h -------------------------------------------------------------------------------- /libs/manual/src/manual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/manual/src/manual.cpp -------------------------------------------------------------------------------- /libs/mdns/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mdns/CMakeLists.txt -------------------------------------------------------------------------------- /libs/mdns/include/mdns_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mdns/include/mdns_util.h -------------------------------------------------------------------------------- /libs/mdns/mdns-1.4.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mdns/mdns-1.4.3/LICENSE -------------------------------------------------------------------------------- /libs/mdns/mdns-1.4.3/mdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mdns/mdns-1.4.3/mdns.c -------------------------------------------------------------------------------- /libs/mdns/mdns-1.4.3/mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mdns/mdns-1.4.3/mdns.h -------------------------------------------------------------------------------- /libs/mdns/src/mdns_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mdns/src/mdns_util.cpp -------------------------------------------------------------------------------- /libs/mipmap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mipmap/CMakeLists.txt -------------------------------------------------------------------------------- /libs/mipmap/src/mipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mipmap/src/mipmap.c -------------------------------------------------------------------------------- /libs/mipmap/src/mipmap_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mipmap/src/mipmap_avx2.c -------------------------------------------------------------------------------- /libs/mipmap/src/mipmap_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mipmap/src/mipmap_neon.c -------------------------------------------------------------------------------- /libs/mipmap/src/mipmap_sse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mipmap/src/mipmap_sse.c -------------------------------------------------------------------------------- /libs/mipmap/src/mipmap_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mipmap/src/mipmap_sse2.c -------------------------------------------------------------------------------- /libs/mongoose/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mongoose/CMakeLists.txt -------------------------------------------------------------------------------- /libs/mongoose/src/mongoose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/mongoose/src/mongoose.c -------------------------------------------------------------------------------- /libs/nmea0183/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/CMakeLists.txt -------------------------------------------------------------------------------- /libs/nmea0183/src/GPwpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/GPwpl.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/GPwpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/GPwpl.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/LatLong.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/LatLong.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/RMB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/RMB.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/RMC.HPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/RMC.HPP -------------------------------------------------------------------------------- /libs/nmea0183/src/apb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/apb.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/apb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/apb.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/expid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/expid.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/gga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/gga.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/gga.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/gga.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/gll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/gll.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/gll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/gll.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/gsv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/gsv.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/gsv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/gsv.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/hdg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/hdg.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/hdg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/hdg.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/hdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/hdm.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/hdm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/hdm.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/hdt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/hdt.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/hdt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/hdt.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/lat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/lat.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/latlong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/latlong.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/long.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/long.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/mwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/mwd.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/mwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/mwd.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/mwv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/mwv.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/mwv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/mwv.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/nmea0183.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/nmea0183.h -------------------------------------------------------------------------------- /libs/nmea0183/src/rmb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/rmb.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/rmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/rmc.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/rte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/rte.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/rte.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/rte.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/ths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/ths.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/ths.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/ths.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/vtg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/vtg.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/vtg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/vtg.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/wpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/wpl.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/wpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/wpl.hpp -------------------------------------------------------------------------------- /libs/nmea0183/src/xte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/xte.cpp -------------------------------------------------------------------------------- /libs/nmea0183/src/xte.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/nmea0183/src/xte.hpp -------------------------------------------------------------------------------- /libs/o_sound/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/o_sound/CMakeLists.txt -------------------------------------------------------------------------------- /libs/o_sound/snd_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/o_sound/snd_config.h.in -------------------------------------------------------------------------------- /libs/o_sound/src/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/o_sound/src/factory.cpp -------------------------------------------------------------------------------- /libs/o_sound/src/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/o_sound/src/sound.cpp -------------------------------------------------------------------------------- /libs/observable/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/observable/COPYING -------------------------------------------------------------------------------- /libs/observable/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/observable/README.adoc -------------------------------------------------------------------------------- /libs/observable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/observable/README.md -------------------------------------------------------------------------------- /libs/picosha2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/picosha2/LICENSE -------------------------------------------------------------------------------- /libs/picosha2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/picosha2/README.md -------------------------------------------------------------------------------- /libs/picosha2/picosha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/picosha2/picosha2.h -------------------------------------------------------------------------------- /libs/picosha2/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/picosha2/test/test.cpp -------------------------------------------------------------------------------- /libs/pugixml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/pugixml/CMakeLists.txt -------------------------------------------------------------------------------- /libs/pugixml/pugiconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/pugixml/pugiconfig.hpp -------------------------------------------------------------------------------- /libs/pugixml/pugixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/pugixml/pugixml.cpp -------------------------------------------------------------------------------- /libs/pugixml/pugixml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/pugixml/pugixml.hpp -------------------------------------------------------------------------------- /libs/s52plib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/s52plib/CMakeLists.txt -------------------------------------------------------------------------------- /libs/s52plib/src/TexFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/s52plib/src/TexFont.h -------------------------------------------------------------------------------- /libs/s52plib/src/mygeom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/s52plib/src/mygeom.cpp -------------------------------------------------------------------------------- /libs/s52plib/src/mygeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/s52plib/src/mygeom.h -------------------------------------------------------------------------------- /libs/s52plib/src/s52plib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/s52plib/src/s52plib.h -------------------------------------------------------------------------------- /libs/s52plib/src/s52s57.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/s52plib/src/s52s57.h -------------------------------------------------------------------------------- /libs/s52plib/src/s52utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/s52plib/src/s52utils.h -------------------------------------------------------------------------------- /libs/serial/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/serial/.travis.yml -------------------------------------------------------------------------------- /libs/serial/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/serial/CHANGELOG.rst -------------------------------------------------------------------------------- /libs/serial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/serial/CMakeLists.txt -------------------------------------------------------------------------------- /libs/serial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/serial/Makefile -------------------------------------------------------------------------------- /libs/serial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/serial/README.md -------------------------------------------------------------------------------- /libs/serial/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/serial/changes.txt -------------------------------------------------------------------------------- /libs/serial/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/serial/doc/Doxyfile -------------------------------------------------------------------------------- /libs/serial/doc/serial.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/serial/doc/serial.dox -------------------------------------------------------------------------------- /libs/serial/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/serial/package.xml -------------------------------------------------------------------------------- /libs/serial/src/impl/win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/serial/src/impl/win.cc -------------------------------------------------------------------------------- /libs/serial/src/serial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/serial/src/serial.cc -------------------------------------------------------------------------------- /libs/serial/tests/proof_of_concepts/mdc2250.cc: -------------------------------------------------------------------------------- 1 | #include "" -------------------------------------------------------------------------------- /libs/sqlite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/sqlite/CMakeLists.txt -------------------------------------------------------------------------------- /libs/sqlite/src/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/sqlite/src/sqlite3.c -------------------------------------------------------------------------------- /libs/ssl_sha1/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/ssl_sha1/src/sha1.c -------------------------------------------------------------------------------- /libs/texcmp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/texcmp/CMakeLists.txt -------------------------------------------------------------------------------- /libs/texcmp/etcpak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/texcmp/etcpak.cpp -------------------------------------------------------------------------------- /libs/texcmp/squish/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/texcmp/squish/alpha.h -------------------------------------------------------------------------------- /libs/texcmp/squish/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/texcmp/squish/config.h -------------------------------------------------------------------------------- /libs/texcmp/squish/maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/texcmp/squish/maths.h -------------------------------------------------------------------------------- /libs/texcmp/squish/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/texcmp/squish/simd.h -------------------------------------------------------------------------------- /libs/texcmp/squish/squish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/texcmp/squish/squish.h -------------------------------------------------------------------------------- /libs/tinyxml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/tinyxml/CMakeLists.txt -------------------------------------------------------------------------------- /libs/wxJSON/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxJSON/CMakeLists.txt -------------------------------------------------------------------------------- /libs/wxJSON/src/jsonval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxJSON/src/jsonval.cpp -------------------------------------------------------------------------------- /libs/wxcurl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxcurl/CMakeLists.txt -------------------------------------------------------------------------------- /libs/wxcurl/src/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxcurl/src/base.cpp -------------------------------------------------------------------------------- /libs/wxcurl/src/dav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxcurl/src/dav.cpp -------------------------------------------------------------------------------- /libs/wxcurl/src/davtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxcurl/src/davtool.cpp -------------------------------------------------------------------------------- /libs/wxcurl/src/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxcurl/src/dialog.cpp -------------------------------------------------------------------------------- /libs/wxcurl/src/ftp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxcurl/src/ftp.cpp -------------------------------------------------------------------------------- /libs/wxcurl/src/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxcurl/src/http.cpp -------------------------------------------------------------------------------- /libs/wxcurl/src/panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxcurl/src/panel.cpp -------------------------------------------------------------------------------- /libs/wxcurl/src/telnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxcurl/src/telnet.cpp -------------------------------------------------------------------------------- /libs/wxcurl/src/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxcurl/src/thread.cpp -------------------------------------------------------------------------------- /libs/wxcurl/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxcurl/src/utils.cpp -------------------------------------------------------------------------------- /libs/wxservdisc/1035.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxservdisc/1035.c -------------------------------------------------------------------------------- /libs/wxservdisc/1035.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxservdisc/1035.h -------------------------------------------------------------------------------- /libs/wxservdisc/mdnsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxservdisc/mdnsd.c -------------------------------------------------------------------------------- /libs/wxservdisc/mdnsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxservdisc/mdnsd.h -------------------------------------------------------------------------------- /libs/wxsvg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxsvg/CMakeLists.txt -------------------------------------------------------------------------------- /libs/wxsvg/src/CSSValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxsvg/src/CSSValue.cpp -------------------------------------------------------------------------------- /libs/wxsvg/src/NodeList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxsvg/src/NodeList.cpp -------------------------------------------------------------------------------- /libs/wxsvg/src/SVGAngle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxsvg/src/SVGAngle.cpp -------------------------------------------------------------------------------- /libs/wxsvg/src/SVGColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxsvg/src/SVGColor.cpp -------------------------------------------------------------------------------- /libs/wxsvg/src/SVGPaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxsvg/src/SVGPaint.cpp -------------------------------------------------------------------------------- /libs/wxsvg/src/SVGPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxsvg/src/SVGPoint.cpp -------------------------------------------------------------------------------- /libs/wxsvg/src/SVGRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxsvg/src/SVGRect.cpp -------------------------------------------------------------------------------- /libs/wxsvg/src/SVGTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxsvg/src/SVGTests.cpp -------------------------------------------------------------------------------- /libs/wxsvg/src/imagsvg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxsvg/src/imagsvg.cpp -------------------------------------------------------------------------------- /libs/wxsvg/src/svgctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/libs/wxsvg/src/svgctrl.cpp -------------------------------------------------------------------------------- /manual/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/manual/Doxyfile -------------------------------------------------------------------------------- /manual/INSTALL.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/manual/INSTALL.adoc -------------------------------------------------------------------------------- /manual/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/manual/README.adoc -------------------------------------------------------------------------------- /manual/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/manual/antora.yml -------------------------------------------------------------------------------- /manual/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/manual/package-lock.json -------------------------------------------------------------------------------- /manual/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/manual/package.json -------------------------------------------------------------------------------- /manual/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/manual/site.yml -------------------------------------------------------------------------------- /model/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/CMakeLists.txt -------------------------------------------------------------------------------- /model/cmake/Curl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/cmake/Curl.cmake -------------------------------------------------------------------------------- /model/cmake/FindGLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/cmake/FindGLIB.cmake -------------------------------------------------------------------------------- /model/include/model/cutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/include/model/cutil.h -------------------------------------------------------------------------------- /model/include/model/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/include/model/gui.h -------------------------------------------------------------------------------- /model/include/model/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/include/model/route.h -------------------------------------------------------------------------------- /model/include/model/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/include/model/track.h -------------------------------------------------------------------------------- /model/src/ais_bitstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/ais_bitstring.cpp -------------------------------------------------------------------------------- /model/src/ais_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/ais_decoder.cpp -------------------------------------------------------------------------------- /model/src/base_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/base_platform.cpp -------------------------------------------------------------------------------- /model/src/certificates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/certificates.cpp -------------------------------------------------------------------------------- /model/src/cli_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/cli_platform.cpp -------------------------------------------------------------------------------- /model/src/cmdline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/cmdline.cpp -------------------------------------------------------------------------------- /model/src/comm_ais.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/comm_ais.cpp -------------------------------------------------------------------------------- /model/src/comm_appmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/comm_appmsg.cpp -------------------------------------------------------------------------------- /model/src/comm_bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/comm_bridge.cpp -------------------------------------------------------------------------------- /model/src/comm_buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/comm_buffers.cpp -------------------------------------------------------------------------------- /model/src/comm_can_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/comm_can_util.cpp -------------------------------------------------------------------------------- /model/src/comm_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/comm_decoder.cpp -------------------------------------------------------------------------------- /model/src/comm_drv_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/comm_drv_file.cpp -------------------------------------------------------------------------------- /model/src/comm_drv_n2k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/comm_drv_n2k.cpp -------------------------------------------------------------------------------- /model/src/comm_navmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/comm_navmsg.cpp -------------------------------------------------------------------------------- /model/src/comm_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/comm_util.cpp -------------------------------------------------------------------------------- /model/src/comm_vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/comm_vars.cpp -------------------------------------------------------------------------------- /model/src/config_vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/config_vars.cpp -------------------------------------------------------------------------------- /model/src/conn_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/conn_params.cpp -------------------------------------------------------------------------------- /model/src/conn_states.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/conn_states.cpp -------------------------------------------------------------------------------- /model/src/cutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/cutil.cpp -------------------------------------------------------------------------------- /model/src/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/datetime.cpp -------------------------------------------------------------------------------- /model/src/dbus_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/dbus_client.cpp -------------------------------------------------------------------------------- /model/src/dbus_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/dbus_server.cpp -------------------------------------------------------------------------------- /model/src/downloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/downloader.cpp -------------------------------------------------------------------------------- /model/src/ds_porttype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/ds_porttype.cpp -------------------------------------------------------------------------------- /model/src/geodesic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/geodesic.cpp -------------------------------------------------------------------------------- /model/src/georef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/georef.cpp -------------------------------------------------------------------------------- /model/src/gpx_document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/gpx_document.cpp -------------------------------------------------------------------------------- /model/src/gui_vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/gui_vars.cpp -------------------------------------------------------------------------------- /model/src/hyperlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/hyperlink.cpp -------------------------------------------------------------------------------- /model/src/ipc_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/ipc_api.cpp -------------------------------------------------------------------------------- /model/src/ipc_factories.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/ipc_factories.cpp -------------------------------------------------------------------------------- /model/src/linux_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/linux_devices.cpp -------------------------------------------------------------------------------- /model/src/local_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/local_api.cpp -------------------------------------------------------------------------------- /model/src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/logger.cpp -------------------------------------------------------------------------------- /model/src/macutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/macutils.c -------------------------------------------------------------------------------- /model/src/mdns_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/mdns_cache.cpp -------------------------------------------------------------------------------- /model/src/mdns_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/mdns_query.cpp -------------------------------------------------------------------------------- /model/src/mdns_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/mdns_service.cpp -------------------------------------------------------------------------------- /model/src/multiplexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/multiplexer.cpp -------------------------------------------------------------------------------- /model/src/navmsg_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/navmsg_filter.cpp -------------------------------------------------------------------------------- /model/src/navobj_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/navobj_db.cpp -------------------------------------------------------------------------------- /model/src/navutil_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/navutil_base.cpp -------------------------------------------------------------------------------- /model/src/notification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/notification.cpp -------------------------------------------------------------------------------- /model/src/ocpn_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/ocpn_plugin.cpp -------------------------------------------------------------------------------- /model/src/ocpn_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/ocpn_utils.cpp -------------------------------------------------------------------------------- /model/src/own_ship.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/own_ship.cpp -------------------------------------------------------------------------------- /model/src/peer_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/peer_client.cpp -------------------------------------------------------------------------------- /model/src/pincode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/pincode.cpp -------------------------------------------------------------------------------- /model/src/plugin_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/plugin_api.cpp -------------------------------------------------------------------------------- /model/src/plugin_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/plugin_cache.cpp -------------------------------------------------------------------------------- /model/src/plugin_comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/plugin_comm.cpp -------------------------------------------------------------------------------- /model/src/plugin_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/plugin_loader.cpp -------------------------------------------------------------------------------- /model/src/plugin_paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/plugin_paths.cpp -------------------------------------------------------------------------------- /model/src/rest_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/rest_server.cpp -------------------------------------------------------------------------------- /model/src/route.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/route.cpp -------------------------------------------------------------------------------- /model/src/route_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/route_point.cpp -------------------------------------------------------------------------------- /model/src/routeman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/routeman.cpp -------------------------------------------------------------------------------- /model/src/safe_mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/safe_mode.cpp -------------------------------------------------------------------------------- /model/src/select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/select.cpp -------------------------------------------------------------------------------- /model/src/select_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/select_item.cpp -------------------------------------------------------------------------------- /model/src/semantic_vers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/semantic_vers.cpp -------------------------------------------------------------------------------- /model/src/ser_ports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/ser_ports.cpp -------------------------------------------------------------------------------- /model/src/std_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/std_icon.cpp -------------------------------------------------------------------------------- /model/src/std_serial_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/std_serial_io.cpp -------------------------------------------------------------------------------- /model/src/svg_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/svg_utils.cpp -------------------------------------------------------------------------------- /model/src/thread_ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/thread_ctrl.cpp -------------------------------------------------------------------------------- /model/src/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/track.cpp -------------------------------------------------------------------------------- /model/src/win_usb_watch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/model/src/win_usb_watch.cpp -------------------------------------------------------------------------------- /opencpn-cmd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/opencpn-cmd.1 -------------------------------------------------------------------------------- /opencpn.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/opencpn.1 -------------------------------------------------------------------------------- /opencpn.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/opencpn.recipe -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/grib_pi/GRIB.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/GRIB.fbp -------------------------------------------------------------------------------- /plugins/grib_pi/po/ar_SA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/ar_SA.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/bg_BG.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/bg_BG.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/ca_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/ca_ES.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/cs_CZ.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/da_DK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/da_DK.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/de_DE.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/el_GR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/el_GR.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/en_GB.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/es_ES.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/et_EE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/et_EE.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/fi_FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/fi_FI.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/fr_FR.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/gl_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/gl_ES.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/he_IL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/he_IL.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/hi_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/hi_IN.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/hu_HU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/hu_HU.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/id_ID.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/id_ID.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/is_IS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/is_IS.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/it_IT.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/ja_JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/ja_JP.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/ko_KR.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/mr_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/mr_IN.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/nb_NO.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/nl_NL.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/pl_PL.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/pt_BR.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/pt_PT.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/ro_RO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/ro_RO.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/ru_RU.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/sv_SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/sv_SE.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/th_TH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/th_TH.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/tr_TR.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/vi_VN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/vi_VN.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/zh_CN.po -------------------------------------------------------------------------------- /plugins/grib_pi/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/po/zh_TW.po -------------------------------------------------------------------------------- /plugins/grib_pi/src/email.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/src/email.h -------------------------------------------------------------------------------- /plugins/grib_pi/src/icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/src/icons.h -------------------------------------------------------------------------------- /plugins/grib_pi/src/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/src/msg.h -------------------------------------------------------------------------------- /plugins/grib_pi/src/pi_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/src/pi_gl.h -------------------------------------------------------------------------------- /plugins/grib_pi/src/smapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/grib_pi/src/smapi.h -------------------------------------------------------------------------------- /plugins/icons/oesenc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/icons/oesenc.png -------------------------------------------------------------------------------- /plugins/icons/radar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/icons/radar.svg -------------------------------------------------------------------------------- /plugins/icons/squiddio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/icons/squiddio.png -------------------------------------------------------------------------------- /plugins/wmm_pi/data/WMM.COF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/data/WMM.COF -------------------------------------------------------------------------------- /plugins/wmm_pi/po/ar_SA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/ar_SA.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/bg_BG.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/bg_BG.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/ca_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/ca_ES.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/cs_CZ.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/da_DK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/da_DK.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/de_DE.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/el_GR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/el_GR.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/en_GB.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/es_ES.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/et_EE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/et_EE.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/fi_FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/fi_FI.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/fil_PH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/fil_PH.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/fr_FR.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/gl_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/gl_ES.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/he_IL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/he_IL.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/hi_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/hi_IN.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/hu_HU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/hu_HU.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/id_ID.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/id_ID.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/is_IS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/is_IS.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/it_IT.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/ja_JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/ja_JP.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/ko_KR.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/mr_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/mr_IN.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/nb_NO.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/nl_NL.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/pl_PL.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/pt_BR.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/pt_PT.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/ro_RO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/ro_RO.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/ru_RU.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/sv_SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/sv_SE.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/th_TH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/th_TH.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/tr_TR.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/vi_VN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/vi_VN.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/zh_CN.po -------------------------------------------------------------------------------- /plugins/wmm_pi/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/po/zh_TW.po -------------------------------------------------------------------------------- /plugins/wmm_pi/src/icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/src/icons.h -------------------------------------------------------------------------------- /plugins/wmm_pi/src/icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/src/icons.sh -------------------------------------------------------------------------------- /plugins/wmm_pi/src/wmm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/src/wmm.png -------------------------------------------------------------------------------- /plugins/wmm_pi/src/wmm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/src/wmm.svg -------------------------------------------------------------------------------- /plugins/wmm_pi/src/wmm_pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/plugins/wmm_pi/src/wmm_pi.h -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/opencpn.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn.pot -------------------------------------------------------------------------------- /po/opencpn_ar_SA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_ar_SA.po -------------------------------------------------------------------------------- /po/opencpn_bg_BG.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_bg_BG.po -------------------------------------------------------------------------------- /po/opencpn_ca_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_ca_ES.po -------------------------------------------------------------------------------- /po/opencpn_cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_cs_CZ.po -------------------------------------------------------------------------------- /po/opencpn_da_DK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_da_DK.po -------------------------------------------------------------------------------- /po/opencpn_de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_de_DE.po -------------------------------------------------------------------------------- /po/opencpn_el_GR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_el_GR.po -------------------------------------------------------------------------------- /po/opencpn_en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_en_GB.po -------------------------------------------------------------------------------- /po/opencpn_es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_es_ES.po -------------------------------------------------------------------------------- /po/opencpn_et_EE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_et_EE.po -------------------------------------------------------------------------------- /po/opencpn_fi_FI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_fi_FI.po -------------------------------------------------------------------------------- /po/opencpn_fil_PH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_fil_PH.po -------------------------------------------------------------------------------- /po/opencpn_fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_fr_FR.po -------------------------------------------------------------------------------- /po/opencpn_gl_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_gl_ES.po -------------------------------------------------------------------------------- /po/opencpn_he_IL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_he_IL.po -------------------------------------------------------------------------------- /po/opencpn_hi_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_hi_IN.po -------------------------------------------------------------------------------- /po/opencpn_hu_HU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_hu_HU.po -------------------------------------------------------------------------------- /po/opencpn_id_ID.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_id_ID.po -------------------------------------------------------------------------------- /po/opencpn_is_IS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_is_IS.po -------------------------------------------------------------------------------- /po/opencpn_it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_it_IT.po -------------------------------------------------------------------------------- /po/opencpn_ja_JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_ja_JP.po -------------------------------------------------------------------------------- /po/opencpn_ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_ko_KR.po -------------------------------------------------------------------------------- /po/opencpn_mr_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_mr_IN.po -------------------------------------------------------------------------------- /po/opencpn_nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_nb_NO.po -------------------------------------------------------------------------------- /po/opencpn_nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_nl_NL.po -------------------------------------------------------------------------------- /po/opencpn_pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_pl_PL.po -------------------------------------------------------------------------------- /po/opencpn_pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_pt_BR.po -------------------------------------------------------------------------------- /po/opencpn_pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_pt_PT.po -------------------------------------------------------------------------------- /po/opencpn_ro_RO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_ro_RO.po -------------------------------------------------------------------------------- /po/opencpn_ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_ru_RU.po -------------------------------------------------------------------------------- /po/opencpn_sv_SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_sv_SE.po -------------------------------------------------------------------------------- /po/opencpn_th_TH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_th_TH.po -------------------------------------------------------------------------------- /po/opencpn_tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_tr_TR.po -------------------------------------------------------------------------------- /po/opencpn_vi_VN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_vi_VN.po -------------------------------------------------------------------------------- /po/opencpn_zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_zh_CN.po -------------------------------------------------------------------------------- /po/opencpn_zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/po/opencpn_zh_TW.po -------------------------------------------------------------------------------- /resources/bitmaps/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/resources/bitmaps/eye.svg -------------------------------------------------------------------------------- /resources/bitmaps/eyex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/resources/bitmaps/eyex.svg -------------------------------------------------------------------------------- /resources/bitmaps/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/resources/bitmaps/plus.svg -------------------------------------------------------------------------------- /resources/bitmaps/png2wx.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/resources/bitmaps/png2wx.pl -------------------------------------------------------------------------------- /resources/opencpn.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/resources/opencpn.desktop -------------------------------------------------------------------------------- /resources/opencpn.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/resources/opencpn.rc.in -------------------------------------------------------------------------------- /resources/tzdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/resources/tzdata.h -------------------------------------------------------------------------------- /s57/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/s57/CMakeLists.txt -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/README.md -------------------------------------------------------------------------------- /test/buffer_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/buffer_tests.cpp -------------------------------------------------------------------------------- /test/cli_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/cli_server.cpp -------------------------------------------------------------------------------- /test/cmdline_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/cmdline_server.py -------------------------------------------------------------------------------- /test/datetime_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/datetime_tests.cpp -------------------------------------------------------------------------------- /test/dbus_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/dbus_tests.cpp -------------------------------------------------------------------------------- /test/filter_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/filter_tests.cpp -------------------------------------------------------------------------------- /test/ipc-srv-tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/ipc-srv-tests.cpp -------------------------------------------------------------------------------- /test/ipc_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/ipc_client.cpp -------------------------------------------------------------------------------- /test/n2k_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/n2k_tests.cpp -------------------------------------------------------------------------------- /test/navutil_base_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/navutil_base_tests.cpp -------------------------------------------------------------------------------- /test/rest-tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/rest-tests.cpp -------------------------------------------------------------------------------- /test/std_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/std_instance.cpp -------------------------------------------------------------------------------- /test/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/test_server.py -------------------------------------------------------------------------------- /test/testdata/Hakefjord.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/testdata/Hakefjord.log -------------------------------------------------------------------------------- /test/testdata/foo.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/testdata/foo.gpx -------------------------------------------------------------------------------- /test/testdata/opencpn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/testdata/opencpn.conf -------------------------------------------------------------------------------- /test/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/tests.cpp -------------------------------------------------------------------------------- /test/testvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/testvers.cpp -------------------------------------------------------------------------------- /test/wx_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/test/wx_instance.cpp -------------------------------------------------------------------------------- /vagrant/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/vagrant/README -------------------------------------------------------------------------------- /vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/vagrant/Vagrantfile -------------------------------------------------------------------------------- /xmlschemas/opencpn_v1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nohal/OpenCPN/HEAD/xmlschemas/opencpn_v1.0.xsd --------------------------------------------------------------------------------