Skip to content

Commit

Permalink
Merge pull request #632 from nextcloud/release-0.1.9
Browse files Browse the repository at this point in the history
v0.1.9
  • Loading branch information
Julien Veyssier authored Jul 6, 2021
2 parents b04a35c + b9e8401 commit 242ab38
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ root = true

[*]
charset = utf-8
indent_style = space
indent_style = tab
indent_size = 4
end_of_line = lf
insert_final_newline = true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,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 master ~/html/nextcloud
git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b stable21 ~/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 Expand Up @@ -115,4 +115,4 @@ jobs:
DOWNLOAD_URL=https://github.com/${{ github.repository }}/releases/download/v${VERSION}/${APP_ID}-${VERSION}.tar.gz
curl -X POST -H "Authorization: Token $APPSTORE_TOKEN" https://apps.nextcloud.com/api/v1/apps/releases -H "Content-Type: application/json" -d '{"download":"'${DOWNLOAD_URL}'", "signature": "'${SIGNATURE}'", "nightly": true}'
env:
APPSTORE_TOKEN: ${{ secrets.APPSTORE_TOKEN }}
APPSTORE_TOKEN: ${{ secrets.APPSTORE_TOKEN }}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## 0.1.9 – 2021-06-29
### Added
- GitHub automated release action

### Fixed
- fix tracks not loading
[#587](https://github.com/nextcloud/maps/pull/587) @Ablu
[#574](https://github.com/nextcloud/maps/issues/574) @Tazzios
- fix images not loading
[#559](https://github.com/nextcloud/maps/pull/559) @tacruc
[#543](https://github.com/nextcloud/maps/issues/543) @beardhatcode
- fix db-related install problems on NC 21
[#568](https://github.com/nextcloud/maps/pull/568) @eneiluj
[#541](https://github.com/nextcloud/maps/issues/541) @J0WI

## 0.1.8 – 2020-10-03
### Fixed
- controllers not being declared soon enough in some cases
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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="22"/>
<nextcloud min-version="20" max-version="23"/>
</dependencies>
<repair-steps>
<install>
Expand Down
3 changes: 2 additions & 1 deletion lib/Migration/Version000009Date20190625000800.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
'length' => 10,
]);
$table->addColumn('looked_up', 'boolean', [
'notnull' => true,
'notnull' => false,
'default' => false,
]);
$table->setPrimaryKey(['id']);
$table->addIndex(['adr'], 'maps_adr');
Expand Down
3 changes: 2 additions & 1 deletion lib/Migration/Version000012Date20190722184716.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
'length' => 10,
]);
$table->addColumn('looked_up', 'boolean', [
'notnull' => true,
'notnull' => false,
'default' => false,
]);
$table->setPrimaryKey(['id']);
$table->addIndex(['adr'], 'maps_adr');
Expand Down

0 comments on commit 242ab38

Please sign in to comment.