From 06d9838420eaac657fdabc55947dd9a03f2eb9ff Mon Sep 17 00:00:00 2001 From: Julien Veyssier Date: Mon, 20 Dec 2021 10:28:27 +0100 Subject: ready for 0.1.10 Signed-off-by: Julien Veyssier --- .github/workflows/release.yml | 9 ++++++--- CHANGELOG.md | 5 +++++ appinfo/info.xml | 2 +- src/components/map/Popup.vue | 2 +- src/components/map/PopupFormItem.vue | 2 +- 5 files changed, 14 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d0681410..74269057 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 @@ https://raw.githubusercontent.com/nextcloud/maps/master/screenshots/screenshot3.png exif - + 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; } -- cgit v1.2.3