From 0dd21b739399f9b3938b22fb807767c26a2c93ea Mon Sep 17 00:00:00 2001 From: Julien Veyssier Date: Mon, 21 Sep 2020 12:53:31 +0200 Subject: [PATCH] 0.0.3 Signed-off-by: Julien Veyssier --- CHANGELOG.md | 12 ++++++++++++ README.md | 7 +++---- appinfo/info.xml | 5 +++-- lib/Dashboard/GithubWidget.php | 2 +- src/views/Dashboard.vue | 1 - 5 files changed, 19 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4015276..d45a0f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## 0.0.3 – 2020-09-21 +### Changed +* improve authentication design +* bump nc-vue and nc-vue-dashboard +* improve widget empty content +* split search in 2 providers: issues/PRs and repos +* improve search results (icons, names...) +* warn about privacy when enabling search + +### Fixed +* fix paginated search results + ## 0.0.2 – 2020-09-02 ### Fixed * Change display name to "GitHub" diff --git a/README.md b/README.md index 9f6069c..6d847e7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # GitHub integration in Nextcloud -This app adds a dashboard item to see your main GitHub notifications. +🐙 Put an octopus in your engine! -## Releases - -... +This app adds a dashboard item to see your most important GitHub notifications. +It also adds a search provider for repositories, issues and pull requests. diff --git a/appinfo/info.xml b/appinfo/info.xml index 9ebb365..1718a20 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -3,8 +3,9 @@ integration_github GitHub integration Integration of GitHub software development management service - - 0.0.2 + + 0.0.3 agpl Julien Veyssier Github diff --git a/lib/Dashboard/GithubWidget.php b/lib/Dashboard/GithubWidget.php index bf21954..920c918 100644 --- a/lib/Dashboard/GithubWidget.php +++ b/lib/Dashboard/GithubWidget.php @@ -49,7 +49,7 @@ public function getId(): string { * @inheritDoc */ public function getTitle(): string { - return $this->l10n->t('Github notifications'); + return $this->l10n->t('GitHub notifications'); } /** diff --git a/src/views/Dashboard.vue b/src/views/Dashboard.vue index 9f42547..f9bf3dd 100644 --- a/src/views/Dashboard.vue +++ b/src/views/Dashboard.vue @@ -188,7 +188,6 @@ export default { }) }, getRepositoryAvatarUrl(n) { - console.debug(n.repository.owner.avatar_url) return (n.repository && n.repository.owner && n.repository.owner.avatar_url) ? generateUrl('/apps/integration_github/avatar?') + encodeURIComponent('url') + '=' + encodeURIComponent(n.repository.owner.avatar_url) : ''