diff --git a/CHANGELOG.md b/CHANGELOG.md index 07e14ea..41b2a7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## 3.2.0 - 2025-08-28 + +### Added +- search providers marked as external sources [#96](https://github.com/nextcloud/integration_mastodon/pull/96) @janepie + +### Changed +- npm packages updated [#96](https://github.com/nextcloud/integration_mastodon/pull/96) @janepie +- max NC version bumped to 32 [#96](https://github.com/nextcloud/integration_mastodon/pull/96) @janepie +- CSP Nonce updated [#85](https://github.com/nextcloud/integration_mastodon/pull/85) @janepie + ## 3.1.1 - 2025-02-14 ### Changed diff --git a/appinfo/info.xml b/appinfo/info.xml index aed97df..7a2fd57 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -4,7 +4,7 @@ Mastodon integration Integration of Mastodon self-hosted social networking service - 3.1.1 + 3.2.0 agpl Julien Veyssier Mastodon diff --git a/lib/Search/SearchAccountsProvider.php b/lib/Search/SearchAccountsProvider.php index bbc6841..46c13ae 100644 --- a/lib/Search/SearchAccountsProvider.php +++ b/lib/Search/SearchAccountsProvider.php @@ -150,6 +150,6 @@ protected function getThumbnailUrl(array $entry): array { return [true, $url]; } public function isExternalProvider(): bool { - return True; + return true; } } diff --git a/lib/Search/SearchHashtagsProvider.php b/lib/Search/SearchHashtagsProvider.php index 9bf41d4..a936b42 100644 --- a/lib/Search/SearchHashtagsProvider.php +++ b/lib/Search/SearchHashtagsProvider.php @@ -142,7 +142,7 @@ protected function getThumbnailUrl(array $entry): array { return [true, $url]; } - public function isExternalProvider(): bool { - return True; + public function isExternalProvider(): bool { + return true; } } diff --git a/lib/Search/SearchStatusesProvider.php b/lib/Search/SearchStatusesProvider.php index ef18084..0315871 100644 --- a/lib/Search/SearchStatusesProvider.php +++ b/lib/Search/SearchStatusesProvider.php @@ -156,7 +156,7 @@ protected function getThumbnailUrl(array $entry): array { return [true, $url]; } - public function isExternalProvider(): bool { - return True; + public function isExternalProvider(): bool { + return true; } }