Skip to content

Commit

Permalink
0.1.10
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
  • Loading branch information
Julien Veyssier committed Dec 20, 2021
1 parent 930ba1e commit 2a32c2e
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
]]></description>
<version>0.1.9</version>
<version>0.1.10</version>
<licence>agpl</licence>
<author mail="eneiluj@posteo.net">Julien Veyssier</author>
<author mail="kontakt+github@arne.email">Arne Hamann</author>
Expand All @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion src/components/map/Popup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default {
width: 100%;
}

/deep/ .buttons {
&::v-deep .buttons {
display: flex;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/map/PopupFormItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ $spacing: 0.5em;
.input-wrapper {
width: 100%;

/deep/ {
&::v-deep {
.textarea {
resize: vertical;
}
Expand Down

0 comments on commit 2a32c2e

Please sign in to comment.