parent
625359f170
commit
5ba9a666c4
|
@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## 0.0.7 – 2017-06-27
|
||||
### Added
|
||||
- add option to approximate elevation of new point
|
||||
[#18](https://gitlab.com/eneiluj/gpxedit-oc/issues/18) @TheTiPi
|
||||
|
@ -14,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
[#22](https://gitlab.com/eneiluj/gpxedit-oc/issues/22) @a15n
|
||||
- add new metadata fields : track name, link url, link text
|
||||
[#26](https://gitlab.com/eneiluj/gpxedit-oc/issues/26) @manudinovi
|
||||
[#30](https://gitlab.com/eneiluj/gpxedit-oc/issues/30) @manudinovi
|
||||
|
||||
### Changed
|
||||
- change way to cut lines, hover the middle marker and press Del
|
||||
|
|
15
README.md
15
README.md
|
@ -3,11 +3,15 @@
|
|||
Simple Owncloud/Nextcloud app to load, edit and save GPX files on an interactive map.
|
||||
You can load/save files from your Owncloud/Nextcloud file storage.
|
||||
GPX, KML, CSV (unicsv format) and geotagged JPG are supported for loading. JPG files are loaded as waypoints.
|
||||
There is a file explorer inside the app interface to select a file to load and a folder to save what is currently on the map.
|
||||
Files can be loaded in GpxEdit interface or in Files app.
|
||||
|
||||
This is not a perfect GPX editor.
|
||||
|
||||
What's saved :
|
||||
- metadata
|
||||
- name
|
||||
- link url
|
||||
- link text
|
||||
- tracks
|
||||
- name
|
||||
- comment
|
||||
|
@ -27,6 +31,7 @@ What's saved :
|
|||
|
||||
GpxEdit does load/save time data.
|
||||
Elevation data is loaded and saved but every new waypoint/track/trackpoint added by user actions in GpxEdit will have neither elevation nor time data.
|
||||
There is an "approximate" option to set elevation to new points if surrounding points have elevation data.
|
||||
|
||||
Tracks are saved with one segment (trkseg tag).
|
||||
|
||||
|
@ -49,7 +54,13 @@ This app is tested on Nextcloud 11 and 12 with Firefox and Chromium.
|
|||
|
||||
Any feedback will be appreciated.
|
||||
|
||||
If you want to help to translate this app in your language, take the english=>french files in "l10n" directory as examples.
|
||||
If you want to help to translate this app in your language, take the english=>french files in "l10n" directory as examples
|
||||
or launch a little python tool i wrote :
|
||||
|
||||
```
|
||||
cd /path/to/gpxedit
|
||||
./tools/checkTranslations.py LANGUAGE ./ gpxedit
|
||||
```
|
||||
|
||||
## Donation
|
||||
|
||||
|
|
|
@ -11,11 +11,15 @@ Simple Owncloud app to load, edit and save GPX files on an interactive map.
|
|||
You can load/save files from your Nextcloud file storage.
|
||||
You can load/save files from your Owncloud file storage.
|
||||
GPX, KML, CSV (unicsv format) and geotagged JPG are supported for loading. JPG files are loaded as waypoints.
|
||||
There is a file explorer inside the app interface to select a file to load and a folder to save what is currently on the map.
|
||||
Files can be loaded in GpxEdit interface or in Files app.
|
||||
|
||||
This is not a perfect GPX editor.
|
||||
|
||||
What's saved :
|
||||
- metadata
|
||||
- name
|
||||
- link url
|
||||
- link text
|
||||
- tracks
|
||||
- name
|
||||
- comment
|
||||
|
@ -35,6 +39,7 @@ What's saved :
|
|||
|
||||
GpxEdit does load/save time data.
|
||||
Elevation data is loaded and saved but every new waypoint/track/trackpoint added by user actions in GpxEdit will have neither elevation nor time data.
|
||||
There is an "approximate" option to set elevation to new points if surrounding points have elevation data.
|
||||
|
||||
Tracks are saved with one segment (trkseg tag).
|
||||
|
||||
|
@ -57,7 +62,13 @@ This app is tested on Nextcloud 11 and 12 with Firefox and Chromium.
|
|||
|
||||
Any feedback will be appreciated.
|
||||
|
||||
If you want to help to translate this app in your language, take the english=>french files in "l10n" directory as examples.
|
||||
If you want to help to translate this app in your language, take the english=>french files in "l10n" directory as examples
|
||||
or launch a little python tool i wrote :
|
||||
|
||||
```
|
||||
cd /path/to/gpxedit
|
||||
./tools/checkTranslations.py LANGUAGE ./ gpxedit
|
||||
```
|
||||
|
||||
## Donation
|
||||
|
||||
|
|
Loading…
Reference in New Issue