diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d06814107..742690577 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 ebe2fb5f0..6b99a6204 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 a681940cd..362c8576f 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -14,7 +14,7 @@ - **📱 Devices:** Lost your phone? Check the map! - **〰 Tracks:** Load GPS tracks or past trips. Recording with [PhoneTrack](https://f-droid.org/en/packages/net.eneiluj.nextcloud.phonetrack/) or [OwnTracks](https://owntracks.org) is planned. ]]> - 0.1.9 + 0.1.10 agpl Julien Veyssier Arne Hamann @@ -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 26d6256f0..7bbc4ceae 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 1837170bc..75dc396fa 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; }