Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/maps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Veyssier <eneiluj@posteo.net>2021-12-20 12:28:27 +0300
committerJulien Veyssier <eneiluj@posteo.net>2021-12-20 12:28:58 +0300
commite9afbe4af1b72ea401be042c8ceff3152b135e21 (patch)
tree3b909cd5484f085cc57454301a208126d0698418
parent930ba1edc4ba1f7fc4b7194f93e49753beec33df (diff)
ready for 0.1.10v0.1.9-12-nightly
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
-rw-r--r--.github/workflows/release.yml9
-rw-r--r--CHANGELOG.md5
-rw-r--r--appinfo/info.xml2
-rw-r--r--src/components/map/Popup.vue2
-rw-r--r--src/components/map/PopupFormItem.vue2
5 files changed, 14 insertions, 6 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index d0681410..8b1e80ff 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -12,10 +12,13 @@ jobs:
APP_ID: maps
runs-on: ubuntu-latest
steps:
- - name: Use Node 12
+ - name: Use Node 14
uses: actions/setup-node@v1
with:
- node-version: 12
+ node-version: 14
+
+ - name: Set up npm
+ run: npm i -g npm
- name: Setup PHP
uses: shivammathur/setup-php@v2
@@ -53,7 +56,7 @@ jobs:
sudo apt install make openssl -y
echo "###### installing nextcloud"
mkdir ~/html
- git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b stable21 ~/html/nextcloud
+ git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b master ~/html/nextcloud
sed -i $'s|if (substr($fullPath, 0, strlen($root) + 1) === $root . \'/\')|if (is_string($root) and substr($fullPath, 0, strlen($root) + 1) === $root . \'/\')|g' ~/html/nextcloud/lib/autoloader.php
cp -r $GITHUB_WORKSPACE ~/html/nextcloud/apps/${APP_ID}
php ~/html/nextcloud/occ maintenance:install --database "sqlite" --admin-user "admin" --admin-pass "password"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ebe2fb5f..6b99a620 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+## 0.1.10 – 2021-12-20
+### Fixed
+- Add padding on icons/name
+ [#654](https://github.com/nextcloud/maps/pull/654) @RobinFrcd
+
## 0.1.9 – 2021-06-29
### Added
- GitHub automated release action
diff --git a/appinfo/info.xml b/appinfo/info.xml
index a681940c..99d13e76 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -33,7 +33,7 @@
<screenshot>https://raw.githubusercontent.com/nextcloud/maps/master/screenshots/screenshot3.png</screenshot>
<dependencies>
<lib>exif</lib>
- <nextcloud min-version="20" max-version="23"/>
+ <nextcloud min-version="20" max-version="24"/>
</dependencies>
<repair-steps>
<install>
diff --git a/src/components/map/Popup.vue b/src/components/map/Popup.vue
index 26d6256f..7bbc4cea 100644
--- a/src/components/map/Popup.vue
+++ b/src/components/map/Popup.vue
@@ -66,7 +66,7 @@ export default {
width: 100%;
}
- /deep/ .buttons {
+ &::v-deep .buttons {
display: flex;
}
}
diff --git a/src/components/map/PopupFormItem.vue b/src/components/map/PopupFormItem.vue
index 1837170b..75dc396f 100644
--- a/src/components/map/PopupFormItem.vue
+++ b/src/components/map/PopupFormItem.vue
@@ -78,7 +78,7 @@ $spacing: 0.5em;
.input-wrapper {
width: 100%;
- /deep/ {
+ &::v-deep {
.textarea {
resize: vertical;
}