Skip to content

Commit 06d9838

Browse files
author
Julien Veyssier
committed
ready for 0.1.10
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
1 parent 930ba1e commit 06d9838

5 files changed

Lines changed: 14 additions & 6 deletions

File tree

β€Ž.github/workflows/release.ymlβ€Ž

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,13 @@ jobs:
1212
APP_ID: maps
1313
runs-on: ubuntu-latest
1414
steps:
15-
- name: Use Node 12
15+
- name: Use Node 14
1616
uses: actions/setup-node@v1
1717
with:
18-
node-version: 12
18+
node-version: 14
19+
20+
- name: Set up npm
21+
run: npm i -g npm
1922

2023
- name: Setup PHP
2124
uses: shivammathur/setup-php@v2
@@ -53,7 +56,7 @@ jobs:
5356
sudo apt install make openssl -y
5457
echo "###### installing nextcloud"
5558
mkdir ~/html
56-
git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b stable21 ~/html/nextcloud
59+
git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b master ~/html/nextcloud
5760
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
5861
cp -r $GITHUB_WORKSPACE ~/html/nextcloud/apps/${APP_ID}
5962
php ~/html/nextcloud/occ maintenance:install --database "sqlite" --admin-user "admin" --admin-pass "password"

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
8+
## 0.1.10 – 2021-12-20
9+
### Fixed
10+
- Add padding on icons/name
11+
[#654](https://github.com/nextcloud/maps/pull/654) @RobinFrcd
12+
813
## 0.1.9 – 2021-06-29
914
### Added
1015
- GitHub automated release action

β€Žappinfo/info.xmlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<screenshot>https://raw.githubusercontent.com/nextcloud/maps/master/screenshots/screenshot3.png</screenshot>
3434
<dependencies>
3535
<lib>exif</lib>
36-
<nextcloud min-version="20" max-version="23"/>
36+
<nextcloud min-version="20" max-version="24"/>
3737
</dependencies>
3838
<repair-steps>
3939
<install>

β€Žsrc/components/map/Popup.vueβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export default {
6666
width: 100%;
6767
}
6868
69-
/deep/ .buttons {
69+
&::v-deep .buttons {
7070
display: flex;
7171
}
7272
}

β€Žsrc/components/map/PopupFormItem.vueβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ $spacing: 0.5em;
7878
.input-wrapper {
7979
width: 100%;
8080
81-
/deep/ {
81+
&::v-deep {
8282
.textarea {
8383
resize: vertical;
8484
}

0 commit comments

Comments
Β (0)