Skip to content
This repository was archived by the owner on May 2, 2025. It is now read-only.

Commit bfe7ce8

Browse files
committed
Update changelog. Bump version.
1 parent ce088b1 commit bfe7ce8

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

docs/changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 0.10.0
4+
5+
**Features & changes:**
6+
7+
* Added frame logs tab to node to display all uplink and downlink
8+
frames of a given node. Note: This requires
9+
[LoRa Server](https://docs.loraserver.io/loraserver/) 0.18.0.
10+
* Updated organization, application and node navigation in UI.
11+
312
## 0.9.1
413

514
**Bugfixes:**

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pages:
1515
- changelog.md
1616

1717
extra:
18-
version: '0.9.1'
18+
version: '0.10.0'
1919
github:
2020
download_release: true
2121

ui/src/views/organizations/OrganizationLayout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class OrganizationLayout extends Component {
8282
<ul className="nav nav-tabs">
8383
<li role="presentation" className={(activeTab === "" || activeTab.startsWith("applications")) ? 'active' : ''}><Link to={`/organizations/${this.props.params.organizationID}`}>Applications</Link></li>
8484
<li role="presentation" className={(activeTab.startsWith("gateways") ? 'active' : '') + (this.state.organization.canHaveGateways ? '' : 'hidden')}><Link to={`/organizations/${this.props.params.organizationID}/gateways`}>Gateways</Link></li>
85-
<li role="presentation" className={(activeTab === "edit" ? 'active': '') + (this.state.isGlobalAdmin ? '' : 'hidden')}><Link to={`/organizations/${this.props.params.organizationID}/edit`}>Organization settings</Link></li>
85+
<li role="presentation" className={(activeTab === "edit" ? 'active': '') + (this.state.isGlobalAdmin ? '' : 'hidden')}><Link to={`/organizations/${this.props.params.organizationID}/edit`}>Organization configuration</Link></li>
8686
<li role="presentation" className={(activeTab.startsWith("users") ? 'active' : '') + (this.state.isAdmin ? '' : 'hidden')}><Link to={`/organizations/${this.props.params.organizationID}/users`}>Organization users</Link></li>
8787
</ul>
8888
<hr />

0 commit comments

Comments
 (0)