almost 0.0.8
parent
9698d13460
commit
bca2ae7090
|
@ -5,9 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## 0.0.8 – 2018-02-10
|
||||
### Added
|
||||
- display line total distance during drawing
|
||||
[#34](https://gitlab.com/eneiluj/gpxedit-oc/issues/34) @stevenhorner
|
||||
- compat with NC13
|
||||
[#38](https://gitlab.com/eneiluj/gpxedit-oc/issues/38) @poVoq
|
||||
|
||||
### Changed
|
||||
- update leaflet to 1.2.0
|
||||
|
|
11
README.md
11
README.md
|
@ -8,6 +8,8 @@ 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.
|
||||
Files can be loaded in GpxEdit interface or in Files app.
|
||||
|
||||
Go to [GpxEdit Crowdin project](https://crowdin.com/project/gpxedit) if you want to help to translate this app in your language.
|
||||
|
||||
This is not a perfect GPX editor.
|
||||
|
||||
What's saved :
|
||||
|
@ -48,7 +50,6 @@ GpxEdit :
|
|||
- supports waypoint symbols
|
||||
- uses [Leaflet.Draw](https://github.com/Leaflet/Leaflet.draw) and [Leaflet.draw.plus](https://github.com/Dominique92/Leaflet.draw.plus) amazing plugins
|
||||
- uses many other Leaflet plugins like Minimap, Sidebar2, MeasureControl, MousePositionControl
|
||||
- uses JQuery
|
||||
- adds possibility to edit .gpx files directly from the "Files" app
|
||||
- is able to cut lines in two
|
||||
|
||||
|
@ -57,14 +58,6 @@ 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
|
||||
or launch a little python tool i wrote :
|
||||
|
||||
```
|
||||
cd /path/to/gpxedit
|
||||
./tools/checkTranslations.py LANGUAGE ./ gpxedit
|
||||
```
|
||||
|
||||
## Donation
|
||||
|
||||
I develop this app during my free time. You can make a donation to me on Paypal. [Click HERE to make a donation](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66PALMY8SF5JE) (you don't need a paypal account)
|
||||
|
|
|
@ -13,6 +13,8 @@ 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.
|
||||
Files can be loaded in GpxEdit interface or in Files app.
|
||||
|
||||
Go to [GpxEdit Crowdin project](https://crowdin.com/project/gpxedit) if you want to help to translate this app in your language.
|
||||
|
||||
This is not a perfect GPX editor.
|
||||
|
||||
What's saved :
|
||||
|
@ -53,7 +55,6 @@ GpxEdit :
|
|||
- supports waypoint symbols
|
||||
- uses [Leaflet.Draw](https://github.com/Leaflet/Leaflet.draw) and [Leaflet.draw.plus](https://github.com/Dominique92/Leaflet.draw.plus) amazing plugins
|
||||
- uses many other Leaflet plugins like Minimap, Sidebar2, MeasureControl, MousePositionControl
|
||||
- uses JQuery
|
||||
- adds possibility to edit .gpx files directly from the "Files" app
|
||||
- is able to cut lines in two
|
||||
|
||||
|
@ -62,14 +63,6 @@ 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
|
||||
or launch a little python tool i wrote :
|
||||
|
||||
```
|
||||
cd /path/to/gpxedit
|
||||
./tools/checkTranslations.py LANGUAGE ./ gpxedit
|
||||
```
|
||||
|
||||
## Donation
|
||||
|
||||
I develop this app during my free time. You can make a donation to me on Paypal. [There is a donation link HERE](https://gitlab.com/eneiluj/gpxedit-oc#donation) (you don't need a paypal account)
|
||||
|
@ -107,7 +100,7 @@ If you look for more powerfull GPX editors, take a look at :
|
|||
<dependencies>
|
||||
<php min-version="5.6"/>
|
||||
<owncloud min-version="9.0" max-version="10.9" />
|
||||
<nextcloud min-version="9.0" max-version="12.9"/>
|
||||
<nextcloud min-version="9.0" max-version="13.9"/>
|
||||
</dependencies>
|
||||
<settings>
|
||||
<admin>OCA\GpxEdit\Settings\Admin</admin>
|
||||
|
|
Loading…
Reference in New Issue