Skip to content

Commit

Permalink
add 'report an issue' link to plugin menu
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Apr 1, 2024
1 parent 110202b commit ee745a0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ All notable changes to homebridge-config-ui-x will be documented in this file.
- remove mdns interface tooltips
- network interface widget: custom interface
- fix status widget graphs
- add 'report an issue' link to plugin menu

### Translation Changes

Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,6 @@ The [Homebridge Plugin Template](https://github.com/homebridge/homebridge-plugin

There are many existing plugins you can study; you might start with the [Homebridge Example Plugins](https://github.com/homebridge/homebridge-examples) or a plugin that already implements the device type you need.

When writing your plugin, you'll want Homebridge to load it from your development directory instead of publishing it to `npm` each time. Run this command inside your plugin project folder so your global installation of Homebridge can discover it:


## Common Issues

### Errors during installation
Expand Down Expand Up @@ -142,7 +139,6 @@ Try the following:
1. Swap between the `Bonjour HAP` and `Ciao` mDNS Advertiser options. See [the wiki](https://github.com/homebridge/homebridge/wiki/mDNS-Options) for more details.
2. iOS DNS cache has gone stale or gotten misconfigured. To fix this, turn airplane mode on and back off to flush the DNS cache.


## Community

The official Homebridge Discord server and Reddit community are where users can discuss Homebridge and ask for help.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,13 @@ <h5 class="card-title mb-2 text-truncate">
{{ 'child_bridge.label_child_setup' | translate }}
</button>
<!-- // -->
<!-- report an issue link -->
<div class="dropdown-divider" *ngIf="plugin.links?.bugs"></div>
<a ngbDropdownItem *ngIf="plugin.links?.bugs" rel="noopener noreferrer" target="_blank" [href]="plugin.links.bugs">
<i class="icon-button fa fa-fw fa-question-circle-o"></i>
{{ 'support.useful_links.issue' | translate }}
</a>
<!-- // -->
</div>
</span>
</div>
Expand Down

0 comments on commit ee745a0

Please sign in to comment.