refs #43 compat with NC14
parent
cf72733a10
commit
be69f65cef
|
@ -2,6 +2,7 @@
|
||||||
<info>
|
<info>
|
||||||
<id>gpxedit</id>
|
<id>gpxedit</id>
|
||||||
<name>GpxEdit</name>
|
<name>GpxEdit</name>
|
||||||
|
<summary lang="en">Simple GPX file editor</summary>
|
||||||
<description>
|
<description>
|
||||||
# GpxEdit Nextcloud application
|
# GpxEdit Nextcloud application
|
||||||
# GpxEdit Owncloud application
|
# GpxEdit Owncloud application
|
||||||
|
@ -80,10 +81,9 @@ If you look for more powerfull GPX editors, take a look at :
|
||||||
- [JOSM](https://josm.openstreetmap.de/)
|
- [JOSM](https://josm.openstreetmap.de/)
|
||||||
|
|
||||||
</description>
|
</description>
|
||||||
<licence>AGPL</licence>
|
|
||||||
<summary>Simple GPX file editor</summary>
|
|
||||||
<author>Julien Veyssier</author>
|
|
||||||
<version>0.0.8</version>
|
<version>0.0.8</version>
|
||||||
|
<licence>agpl</licence>
|
||||||
|
<author>Julien Veyssier</author>
|
||||||
<namespace>GpxEdit</namespace>
|
<namespace>GpxEdit</namespace>
|
||||||
<documentation>
|
<documentation>
|
||||||
<user>https://gitlab.com/eneiluj/gpxedit-oc/wikis/userdoc</user>
|
<user>https://gitlab.com/eneiluj/gpxedit-oc/wikis/userdoc</user>
|
||||||
|
@ -98,9 +98,10 @@ If you look for more powerfull GPX editors, take a look at :
|
||||||
<screenshot>https://gitlab.com/eneiluj/gpxedit-oc/uploads/428415bd2cd22b8e74230730786e9551/ed1.png</screenshot>
|
<screenshot>https://gitlab.com/eneiluj/gpxedit-oc/uploads/428415bd2cd22b8e74230730786e9551/ed1.png</screenshot>
|
||||||
<screenshot>https://gitlab.com/eneiluj/gpxedit-oc/uploads/c01709a10880a64815ca783fcf574169/ed2.png</screenshot>
|
<screenshot>https://gitlab.com/eneiluj/gpxedit-oc/uploads/c01709a10880a64815ca783fcf574169/ed2.png</screenshot>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<php min-version="5.6"/>
|
<database min-version="9.4">pgsql</database>
|
||||||
<owncloud min-version="9.0" max-version="10.9" />
|
<database>sqlite</database>
|
||||||
<nextcloud min-version="9.0" max-version="13.9"/>
|
<database min-version="5.5">mysql</database>
|
||||||
|
<nextcloud min-version="14.0" max-version="14.9"/>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<settings>
|
<settings>
|
||||||
<admin>OCA\GpxEdit\Settings\Admin</admin>
|
<admin>OCA\GpxEdit\Settings\Admin</admin>
|
||||||
|
|
|
@ -10,12 +10,9 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
div#map {
|
div#map {
|
||||||
position: absolute;
|
position: fixed;
|
||||||
top: 0;
|
width: 100%;
|
||||||
bottom: 0;
|
height: 100%;
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
width:100%;
|
|
||||||
/*width: calc(100% - 300px);*/
|
/*width: calc(100% - 300px);*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -922,3 +919,9 @@ div#ho button {
|
||||||
.leaflet-control-locate .fa {
|
.leaflet-control-locate .fa {
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
.leaflet-bottom {
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
input[type=checkbox] {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
|
@ -35,8 +35,6 @@ style('gpxedit', 'Leaflet.LinearMeasurement');
|
||||||
|
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<div id="app-content">
|
<div id="app-content">
|
||||||
<div id="app-content-wrapper">
|
<?php print_unescaped($this->inc('gpxcontent')); ?>
|
||||||
<?php print_unescaped($this->inc('gpxcontent')); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue