Skip to content

Commit

Permalink
0.0.3
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
  • Loading branch information
Julien Veyssier committed Sep 21, 2020
1 parent 54e7feb commit 0dd21b7
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
5 changes: 3 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
<id>integration_github</id>
<name>GitHub integration</name>
<summary>Integration of GitHub software development management service</summary>
<description><![CDATA[GitHub integration provides a dashboard widget displaying your important notifications and a unified search provider to search for repositories, issues and pull requests.]]></description>
<version>0.0.2</version>
<description><![CDATA[GitHub integration provides a dashboard widget displaying your most important notifications
and a unified search provider for repositories, issues and pull requests.]]></description>
<version>0.0.3</version>
<licence>agpl</licence>
<author>Julien Veyssier</author>
<namespace>Github</namespace>
Expand Down
2 changes: 1 addition & 1 deletion lib/Dashboard/GithubWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}

/**
Expand Down
1 change: 0 additions & 1 deletion src/views/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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)
: ''
Expand Down

0 comments on commit 0dd21b7

Please sign in to comment.