-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
• Data export : additional Clockticks & UTC-timestamp as well as data separator selectable via Preferences • ‘TWA to Waypoint’ instrument now shows ‘min-angle’, ‘average-angle’, ‘max-angle’ Average time can be adjusted via the already available slider of the Average Wind Dir.instrument • Boat layline on/off bugfix after restart • Version/Patch display in preferences headline
- Loading branch information
Showing
22 changed files
with
571 additions
and
209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
SET(PLUGIN_VERSION_MAJOR "1") | ||
SET(PLUGIN_VERSION_MINOR "0") | ||
SET(PLUGIN_VERSION_PATCH "010") | ||
SET(PLUGIN_VERSION_DATE "2019-07-26") | ||
SET(VERSION_MAJOR "1") | ||
SET(VERSION_MINOR "0") | ||
SET(VERSION_PATCH "11") | ||
SET(VERSION_DATE "2019-09-08") | ||
SET(NAME_SUFFIX "ov50") | ||
############################## | ||
SET(PLUGIN_VERSION_MAJOR "${VERSION_MAJOR}") | ||
SET(PLUGIN_VERSION_MINOR "${VERSION_MINOR}") | ||
SET(PLUGIN_VERSION_PATCH "${VERSION_PATCH}") | ||
SET(PLUGIN_VERSION_DATE ${VERSION_DATE}) | ||
SET(PLUGIN_NAME_SUFFIX ${NAME_SUFFIX}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
#define PLUGIN_VERSION_MAJOR ${VERSION_MAJOR} | ||
#define PLUGIN_VERSION_MINOR ${VERSION_MINOR} | ||
#define PLUGIN_VERSION_DATE "${VERSION_DATE}" | ||
#define PLUGIN_VERSION_PATCH ${VERSION_PATCH} | ||
#define PLUGIN_VERSION_DATE ${VERSION_DATE} | ||
#define PLUGIN_NAME_SUFFIX ${NAME_SUFFIX} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/****************************************************************************** | ||
* $Id: ocpn_draw_pi.h,v 1.0 2015/01/28 01:54:37 jongough Exp $ | ||
* | ||
* Project: OpenCPN | ||
* Purpose: Redefine _() macro to allow usage of catalog | ||
* Author: Jon Gough | ||
* | ||
*************************************************************************** | ||
* Copyright (C) 2010 by David S. Register * | ||
* $EMAIL$ * | ||
* * | ||
* This program is free software; you can redistribute it and/or modify * | ||
* it under the terms of the GNU General Public License as published by * | ||
* the Free Software Foundation; either version 2 of the License, or * | ||
* (at your option) any later version. * | ||
* * | ||
* This program is distributed in the hope that it will be useful, * | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of * | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * | ||
* GNU General Public License for more details. * | ||
* * | ||
* You should have received a copy of the GNU General Public License * | ||
* along with this program; if not, write to the * | ||
* Free Software Foundation, Inc., * | ||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * | ||
*************************************************************************** | ||
*/ | ||
#ifndef _ODCATTRANS_H_ | ||
#define _ODCATTRANS_H_ | ||
|
||
#ifndef WXINTL_NO_GETTEXT_MACRO | ||
#ifdef _ | ||
#undef _ | ||
#endif // _ | ||
#if wxCHECK_VERSION(3,0,0) | ||
#define _(s) wxGetTranslation((s), wxS("opencpn-${PROJECT_NAME}")) | ||
#else // wxCHECK_VERSION(3,0,0) | ||
#define _(s) wxGetTranslation(wxT(s), wxT("opencpn-${PROJECT_NAME}")) | ||
#endif // wxCHECK_VERSION(3,0,0) | ||
#endif // WXINTL_NO_GETTEXT_MACRO | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.