Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## openplotter-kplex

OpenPlotter app to manage kplex devices
OpenPlotter app to manage NMEA 0183 data

### Installing

Expand All @@ -12,10 +12,9 @@ Install [openplotter-settings](https://github.com/openplotter/openplotter-settin

Install [openplotter-settings](https://github.com/openplotter/openplotter-settings) for **development**.

Install dependencies:
Download kplex from http://www.stripydog.com/kplex/download.html
Install openplotter-kplex dependencies:

`dpkg -i ./kplex_1.x-x_xxx.deb`
`sudo apt install gpsd gpsd-clients kplex`

Clone the repository:

Expand Down Expand Up @@ -43,7 +42,7 @@ Run:

`openplotter-kplex`

Make your changes and repeat package, installation and post-installation steps to test. Pull request your changes to github and we will check and add them to the next version of the [Debian package](https://cloudsmith.io/~openplotter/repos/openplotter/packages/).
Make your changes and repeat package, installation and post-installation steps to test. Pull request your changes to github and we will check and add them to the next version of the [Debian package](https://launchpad.net/~openplotter/+archive/ubuntu/openplotter).

### Documentation

Expand Down
4 changes: 2 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
openplotter-kplex (2.0.0-dev) buster; urgency=medium
openplotter-kplex (2.0.0-dev) bionic; urgency=medium

* Release Candidate
* Development release

-- Sailoog <info@sailoog.com> Fri, 22 Feb 2020 13:41:02 +0100
6 changes: 3 additions & 3 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ X-Python3-Version: >= 3.2

Package: openplotter-kplex
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}, openplotter-settings, python3-pyudev, kplex
Description: OpenPlotter app to manage kplex devices
OpenPlotter app to manage kplex devices
Depends: ${misc:Depends}, ${python3:Depends}, openplotter-settings, gpsd, gpsd-clients, kplex
Description: OpenPlotter app to manage NMEA 0183 data
OpenPlotter app to manage NMEA 0183 data
Empty file modified debian/rules
100644 → 100755
Empty file.
Binary file modified openplotterKplex/locale/en/LC_MESSAGES/openplotter-kplex.mo
Binary file not shown.
22 changes: 5 additions & 17 deletions openplotterKplex/locale/en/LC_MESSAGES/openplotter-kplex.po
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
msgid ""
msgstr ""
"Project-Id-Version: openplotter-serial\n"
"POT-Creation-Date: 2020-02-26 22:49+0100\n"
"PO-Revision-Date: 2020-02-26 22:49+0100\n"
"Last-Translator: e-sailing <e.minus.sailing@gmail.com>\n"
"Project-Id-Version: openplotter-kplex\n"
"POT-Creation-Date: 2020-02-29 19:38+0100\n"
"PO-Revision-Date: 2020-02-29 19:38+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.2.4\n"
"X-Generator: Poedit 1.8.7.1\n"
"X-Poedit-Basepath: ../../..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
Expand Down Expand Up @@ -190,14 +190,6 @@ msgstr ""
msgid "You must select a Filter type."
msgstr ""

#: data/openplotter-kplex.desktop:3
msgid "Kplex"
msgstr ""

#: data/openplotter-kplex.desktop:5
msgid "kplex"
msgstr ""

#: diagnostic-NMEA.py:56
msgid "Device"
msgstr ""
Expand Down Expand Up @@ -264,10 +256,6 @@ msgstr ""
msgid "Removing version..."
msgstr ""

#: openplotterKplex.py:52
msgid "Kplex (NMEA 0183 multiplexer) Graphical user interface"
msgstr ""

#: openplotterKplex.py:62
msgid "Help"
msgstr ""
Expand Down
2 changes: 1 addition & 1 deletion openplotterKplex/openplotterKplex.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self):

if os.path.dirname(os.path.abspath(__file__))[0:4] == '/usr': v = version
else: v = version.version
wx.Frame.__init__(self, None, title=_('Kplex (NMEA 0183 multiplexer) Graphical user interface')+' '+v, size=(800,444))
wx.Frame.__init__(self, None, title='Kplex '+v, size=(800,444))
self.SetFont(wx.Font(10, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL))
icon = wx.Icon(self.currentdir+"/data/kplex.png", wx.BITMAP_TYPE_PNG)
self.SetIcon(icon)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
setup (
name = 'openplotterKplex',
version = version.version,
description = 'OpenPlotter app to manage serial devices',
description = 'OpenPlotter app to manage NMEA 0183 data',
license = 'GPLv3',
author="e-sailing",
author_email='e.minus.sailing@gmail.com',
Expand Down