Skip to content

Commit 869c746

Browse files
authored
Merge pull request #908 from nextcloud/v0.2.3
V0.2.3
2 parents 21993ec + 34f39a6 commit 869c746

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
sudo apt install make openssl -y
5757
echo "###### installing nextcloud"
5858
mkdir ~/html
59-
git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b master ~/html/nextcloud
59+
git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b v25.0.2 ~/html/nextcloud
6060
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
6161
cp -r $GITHUB_WORKSPACE ~/html/nextcloud/apps/${APP_ID}
6262
php ~/html/nextcloud/occ maintenance:install --database "sqlite" --admin-user "admin" --admin-pass "password"

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## 0.2.3 - 2022.12.29 NC 25 Redesign
8+
### Fixed
9+
### Updated
10+
- New nextcloud vue components
11+
[#840](https://github.com/nextcloud/maps/pull/840) @tacruc
12+
713
## 0.2.2 - 2022.12.29 NC 24 Redesign
814
### Fixed
915
- Search for coordinate

β€Žappinfo/info.xmlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
- **πŸ“± Devices:** Lost your phone? Check the map!
1515
- **γ€° 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.
1616
]]></description>
17-
<version>0.2.2</version>
17+
<version>0.2.3</version>
1818
<licence>agpl</licence>
1919
<author mail="eneiluj@posteo.net">Julien Veyssier</author>
2020
<author mail="kontakt+github@arne.email">Arne Hamann</author>
@@ -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="25" max-version="26"/>
36+
<nextcloud min-version="25" max-version="25"/>
3737
<php min-version="7.4" max-version="8.1"/>
3838
</dependencies>
3939
<repair-steps>

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "maps",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "Maps app",
55
"main": "main.js",
66
"directories": {

β€Žsrc/network.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import axios from '@nextcloud/axios'
2-
import * as realAxios from 'axios'
2+
import { default as realAxios } from 'axios'
33
import { generateUrl } from '@nextcloud/router'
44
import {
55
// showSuccess,

0 commit comments

Comments
Β (0)