Skip to content

Commit b7b4dc7

Browse files
chore: align release metadata with v0.0.10
1 parent c12b314 commit b7b4dc7

File tree

12 files changed

+23
-23
lines changed

12 files changed

+23
-23
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Choose the installation path that matches your NetBox deployment:
3636

3737
```bash
3838
cd /opt/netbox/netbox
39-
git clone https://github.com/netdevopsbr/netbox-proxbox.git
39+
git clone https://github.com/emersonfelipesp/netbox-proxbox.git
4040
source /opt/netbox/venv/bin/activate
4141
pip install -e ./netbox-proxbox
4242
```
@@ -103,7 +103,7 @@ If your NetBox runs with `netbox-community/netbox-docker`, install the plugin th
103103
```txt
104104
netbox-proxbox
105105
# or
106-
# netbox-proxbox @ git+https://github.com/netdevopsbr/netbox-proxbox.git
106+
# netbox-proxbox @ git+https://github.com/emersonfelipesp/netbox-proxbox.git
107107
```
108108

109109
2. Enable the plugin in `configuration/plugins.py`:
@@ -153,7 +153,7 @@ Key pages:
153153

154154
## Community
155155

156-
- GitHub Discussions: https://github.com/orgs/netdevopsbr/discussions
156+
- GitHub Discussions: https://github.com/orgs/emersonfelipesp/discussions
157157
- Discord: https://discord.gg/X6FudvXW
158158
- Telegram: https://t.me/netboxbr
159159

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ Proxbox currently focuses on synchronization and discovery. The plugin does not
8888

8989
## Stars History
9090

91-
[![Star History Chart](https://api.star-history.com/svg?repos=netdevopsbr/netbox-proxbox&type=Timeline)](https://star-history.com/#netdevopsbr/netbox-proxbox&Timeline)
91+
[![Star History Chart](https://api.star-history.com/svg?repos=emersonfelipesp/netbox-proxbox&type=Timeline)](https://star-history.com/#emersonfelipesp/netbox-proxbox&Timeline)

docs/installation/2-installing-plugin-git.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The code in this repository is `0.0.10` and targets NetBox `4.5.x`. That is the
1010

1111
```bash
1212
cd /opt/netbox/netbox
13-
git clone https://github.com/netdevopsbr/netbox-proxbox.git
13+
git clone https://github.com/emersonfelipesp/netbox-proxbox.git
1414

1515
source /opt/netbox/venv/bin/activate
1616
pip install -e /opt/netbox/netbox/netbox-proxbox

docs/installation/3-installing-plugin-docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ docker compose exec netbox /opt/netbox/netbox/manage.py migrate
4343
If you need the repository head instead of the latest published package, add this to `plugin_requirements.txt`:
4444

4545
```txt
46-
netbox-proxbox @ git+https://github.com/netdevopsbr/netbox-proxbox.git
46+
netbox-proxbox @ git+https://github.com/emersonfelipesp/netbox-proxbox.git
4747
```
4848

4949
Then use the same `configuration/plugins.py`, build, startup, and migration steps from Option 1.

docs/installation/pre-installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## HTMX Navigation
44

5-
Proxbox still has known UI issues when NetBox HTMX navigation is disabled. For background, see [issue #277](https://github.com/netdevopsbr/netbox-proxbox/issues/277).
5+
Proxbox still has known UI issues when NetBox HTMX navigation is disabled. For background, see [issue #277](https://github.com/emersonfelipesp/netbox-proxbox/issues/277).
66

77
Before using the plugin, check your NetBox user preferences at `/user/preferences` and enable HTMX navigation.
88

docs/roadmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
- Translate more documentation to Brazilian Portuguese (`pt-BR`)
99
- Improve multi-cluster operational workflows and validation
1010

11-
If you wish to have another feature or functionality not present today and not mentioned here, checkout **[Issues](https://github.com/netdevopsbr/netbox-proxbox/issues)** and/or **[Discussions](https://github.com/orgs/netdevopsbr/discussions)** to view if there's already ongoing work. If not, feel free to start **opening a discussion** and expects feedback from community so that it is approved and transferred to GitHub Issues.
11+
If you wish to have another feature or functionality not present today and not mentioned here, checkout **[Issues](https://github.com/emersonfelipesp/netbox-proxbox/issues)** and/or **[Discussions](https://github.com/orgs/emersonfelipesp/discussions)** to view if there's already ongoing work. If not, feel free to start **opening a discussion** and expects feedback from community so that it is approved and transferred to GitHub Issues.

llms.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ netbox-proxbox is a NetBox plugin that synchronizes Proxmox infrastructure data
2525

2626
### Version
2727

28-
- Plugin version: `0.0.9.post1`
28+
- Plugin version: `0.0.10`
2929
- NetBox compatibility: `4.5.0` through `4.5.99`
3030

3131
---
@@ -935,12 +935,12 @@ job = ProxboxSyncJob.enqueue(sync_types=["all"], job_timeout=10800)
935935
```python
936936
# netbox_proxbox/__init__.py
937937

938-
class ProxboxPluginConfig(PluginConfig):
939-
name = "netbox-proxbox"
938+
class ProxboxConfig(PluginConfig):
939+
name = "netbox_proxbox"
940940
verbose_name = "Proxbox"
941941
description = "NetBox plugin for Proxmox integration"
942-
version = "0.0.9.post1"
943-
author = "Emerson Felipe"
942+
version = "0.0.10"
943+
author = "Emerson Felipe (@emersonfelipesp)"
944944
author_email = "emersonfelipe.2003@gmail.com"
945945
min_version = "4.5.0"
946946
max_version = "4.5.99"

netbox_proxbox/github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def get(**kwargs: object) -> str | None:
2121
if local_markdown:
2222
return local_markdown
2323

24-
owner = "netdevopsbr"
24+
owner = "emersonfelipesp"
2525
repo = "netbox-proxbox"
2626
url = f"https://api.github.com/repos/{owner}/{repo}/contents/{filename}"
2727

netbox_proxbox/templates/netbox_proxbox/community.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,19 @@ <h1 align="center">
8888
<div class="card">
8989
<div align="center">
9090
<br>
91-
<a target="_blank" href="https://github.com/netdevopsbr">
91+
<a target="_blank" href="https://github.com/emersonfelipesp">
9292
<img src="{% static 'netbox_proxbox/github.png' %}" alt="Discord Logo" width="50rem">
9393
</a>
9494
</div>
9595
<div class="card-body">
9696
<table class="table table-hover attr-table">
9797
<tr>
9898
<th scope="row"><strong>English (en)</strong></th>
99-
<td>Know more about <strong>@netdevopsbr</strong> and other <strong>opensource projects</strong></td>
99+
<td>Know more about <strong>@emersonfelipesp</strong> and other <strong>opensource projects</strong></td>
100100
</tr>
101101
<tr>
102102
<th scope="row"><strong>Português (pt-br)</strong></th>
103-
<td>Saiba mais sobre a <strong>@netdevopsbr</strong> e outros <strong>projetos opensource</strong></td>
103+
<td>Saiba mais sobre a <strong>@emersonfelipesp</strong> e outros <strong>projetos opensource</strong></td>
104104
</tr>
105105
</table>
106106
<div>
@@ -111,8 +111,8 @@ <h1 align="center">
111111
<a
112112
style="text-decoration: none; color: inherit"
113113
target="_blank"
114-
href="https://github.com/netdevopsbr"
115-
>@netdevopsbr
114+
href="https://github.com/emersonfelipesp"
115+
>@emersonfelipesp
116116
<i class="fa-brands fa-github fa-shake" style="color: #ffffff;"></i>
117117
</a>
118118
</button>
@@ -163,4 +163,4 @@ <h1 align="center">
163163
</div>
164164
</div>
165165
</div>
166-
{% endblock %}
166+
{% endblock %}

netbox_proxbox/templates/netbox_proxbox/home/netbox_card.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ <h2 class="card-header">NetBox</h2>
4040
<a
4141
class="btn btn-outline-primary"
4242
target="_blank"
43-
href="https://github.com/netdevopsbr/netbox-proxbox/blob/develop/netbox_proxbox/__init__.py"
43+
href="https://github.com/emersonfelipesp/netbox-proxbox/blob/develop/netbox_proxbox/__init__.py"
4444
>Show Example</a>
4545
</div>
4646
</div>

0 commit comments

Comments
 (0)