# Changelog

<details>

<summary>Flight Log. Release 3.0.0</summary>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2F6HTxoi0QftQI3megrwgo%2FFlight_Release_3.0.0.png?alt=media&#x26;token=b8271111-3c3e-43c0-b490-018ec93c65fa" alt=""><figcaption></figcaption></figure>

## Fight Log CHIRP 3.0.0

CHIRP 3.0.0 is a fundamental platform rework. We rebuilt the entire connectivity layer with a new Connector architecture, overhauled device management around a Digital Twin model with visual data normalization that lets you connect any device instantly, shipped a visual BPMN-based rules engine with version control and production-grade deployment, introduced a multi-channel alarm system with mobile push notifications for Android and iOS, delivered fully configurable dashboard widgets with context-aware conditional formatting, and added organization-level access control powered by ABAC with full audit logging. This release also completes our migration from Sui JSON-RPC to gRPC and GraphQL across all blockchain services.

***

### Major Changes

* **Connector Architecture** — Protocol-agnostic connectivity framework with LoRaWAN and Tracker connectors
* **Digital Twin Device Management** — New device model with visual data normalization, sensor templates, and device photos
* **Visual Rules Engine** — BPMN-based automation with CEL expressions, version control, and one-click deployment
* **Alarm Management System** — Five severity levels, escalation policies, and mobile push notifications for Android and iOS
* **Fully Configurable Dashboards** — Context-aware widgets with conditional formatting, plus a new Image Map widget
* **Organizations and Access Control** — Multi-tenant isolation with ABAC permissions and audit trail
* **Sui Blockchain Migration** — All services migrated from JSON-RPC to gRPC and GraphQL

#### Connector Architecture — Extensible Device Connectivity

The way devices connect to CHIRP has been completely rebuilt. Instead of protocol-specific device registration flows, CHIRP 3.0.0 introduces a Connector architecture — a protocol-agnostic framework that standardizes how any device type connects to the platform.

**How It Works**

Every device connection now follows a consistent model: **Connector** (defines the protocol type) → **Connection** (a configured instance for your organization) → **Device** (registered through the connection). This separation means the platform can support new protocols by adding new connector types — without rebuilding core infrastructure.

**Connector Types at Launch**

* **LoRaWAN (LNS)** — The platform includes a fully integrated LoRaWAN Network Server. No external LNS to deploy or maintain. Gateway registration, device joins, uplinks, downlinks, and message deduplication are handled automatically.
* **Tracker** — Designed for OBD2/CAN vehicle trackers used in fleet and asset monitoring. Preconfigured support for over 2,000 vehicle tracker models. Enter your device details and receive a unique endpoint URL for data ingestion.

Each connection is scoped to your organization and managed through a unified interface.

**Why This Matters**

Previously, adding support for a new device protocol required changes across the core platform. With the Connector architecture, new protocols become new connector types — a database record and an optional UI component. This makes CHIRP fundamentally more scalable and ready for future protocol support without platform-wide changes.

***

#### Digital Twin Device Management

Every device registered on CHIRP now becomes a Digital Twin — a living digital representation that goes far beyond a simple data row. The Digital Twin holds the device's identity, sensor configuration, telemetry history, photos, and connection binding in one unified model. Because the physical device binding is optional, this architecture also opens the door for device emulators — model your entire setup with emulated devices first, then replace them one by one with real hardware without losing any configuration or history.

**The New Device Experience**

Device management now uses a guided dialog with four tabs:

1. **Device Info** — Name your device and upload photos for visual identification during site visits or facility walkthroughs.
2. **Connection** — Bind the device to a connector. Select your LoRaWAN or Tracker connection and enter protocol-specific credentials (EUI, application key, etc.).
3. **Metrics** — Define what data the device reports. Select from sensor templates, then map raw connector data fields to normalized metrics. Different manufacturers, different raw output formats — but after mapping, every device speaks the same data language across the entire platform.
4. **Logs** — View the device's raw event history with date filtering. Every data point the device has ever sent is accessible for troubleshooting and verification.

**Visual Data Normalization — Connect Any Device Instantly**

This is one of the most impactful changes in CHIRP 3.0.0. Previously, adding a new device type required contacting CHIRP support — and working with prototype devices or hardware still in development was not possible at all. Every manufacturer sends data differently: one sensor sends "t" for temperature, another sends "temp1", another sends "Temperature". Without a predefined mapping created manually in the database, the platform simply could not ingest the data.

The platform now shows you the live payload from any connected device — every field it transmits, with real-time values and timestamps. Open the Metrics tab and you see exactly what the device is sending. Map raw fields to normalized sensors through a visual interface, and data flows instantly through the entire platform:

1. Choose a sensor template from your library (for example "Temperature", measured in °C, type FLOAT)
2. Select which raw field maps to that sensor (pick "t" from the dropdown)
3. Done. Data flows automatically through dashboards, rules, alarms, and history queries.

This works with any device — production hardware, early prototypes that do not have standardized codecs, or legacy equipment where manufacturers send proprietary codes instead of human-readable field names. If the device sends data, you can see the payload and map it.

The normalization system works in layers: Normalized Keys define the semantic concept ("Temperature"). Sensor Templates add units and data types. Sensors are instances attached to a device. Sensor Mappings connect each sensor to a raw connector key. Define your measurement vocabulary once, then map any device — regardless of manufacturer — to the same standardized parameters. Different field names, same normalized data everywhere in the platform.

**Key Capabilities**

* Sensor templates with normalized keys and units — define your measurement vocabulary once, reuse it across all devices
* Visual field mapping — see the raw device payload and map fields directly, no support tickets needed
* Physical device binding and unbinding — swap hardware without losing device history or configuration
* Device photos via a dedicated media service — upload images for identification and documentation
* User metadata — add custom properties to devices for your own categorization and filtering
* Favorite devices — mark frequently accessed devices for quick navigation

***

#### Visual Rules Engine

CHIRP 3.0.0 ships a completely new automation engine built on BPMN (Business Process Model and Notation) — the same standard used by enterprise workflow engines. Design automation flows visually, write conditions in a real expression language, and deploy with confidence — knowing you can roll back any change instantly.

**Design Automation Visually**

Rules are designed on a visual BPMN canvas where you drag and drop nodes to build automation flows. Start events trigger the rule when sensor data arrives. Exclusive gateways route the flow based on conditions. Script tasks evaluate expressions and transform data. Enrichment nodes pull in data from other devices for cross-device logic. Set Alarm nodes trigger notifications through the alarm system. Boundary error events catch failures and route them to alternative flows.

**Write Real Conditions with CEL**

Conditions use CEL (Common Expression Language) — a fast, safe expression language originally designed by Google. Instead of simple threshold comparisons, you can write expressions like:

```
device.temperature > 30 && device.humidity > 80
device.battery_level < 10
device.door_status == "open" && time.now.hour >= 22
```

CEL gives you the power of a real language with the safety of a sandbox — no file access, no infinite loops, no side effects. Learn more at [cel.dev](https://cel.dev).

**Collaborate Without Conflicts**

When you open a rule for editing, the platform locks it to prevent conflicts. Other team members see who holds the lock. If you step away and the session times out, your changes are automatically saved before the lock releases. Organization owners can force-unlock a rule if needed — and even forced unlocks preserve all unsaved work.

**Never Lose Work**

Every change is automatically saved — periodically in the background, when you close the editor, and when your session times out. You can also save manually at any time. A real-time status indicator shows whether your latest changes are saved, saving, or encountered an error.

**Version History and Rollback**

Every save creates a new version in the rule's history. You can name versions for easy reference, compare any two versions, and restore a previous version with one click. Restoring doesn't delete anything — the current version moves to history, and the restored version becomes active.

**Build, Validate, and Deploy**

Before a rule goes live, it goes through a build step that validates the entire flow — checking for structural errors, invalid expressions, and missing connections. If validation passes, the rule is compiled into a deployable artifact. Deploy with one click, stop instantly if something goes wrong, and roll back to any previous build.

**Trash and Recovery**

Deleted rules move to trash with a configurable retention period. Restore them at any time before cleanup runs. Nothing is permanently lost by accident.

***

#### Alarm Management System

Stay on top of what matters with a centralized alarm system that monitors, notifies, and escalates — across email, SMS, and push notifications on your phone.

**Mobile Apps for Android and iOS**

CHIRP now has mobile apps for both Android and iPhone. Receive push notifications directly on your phone when an alarm triggers — you do not need to be at your desk to know something went wrong.

**Alarm Inbox**

All triggered alarms appear in one centralized inbox, organized by severity. Active alarms rise to the top. Click any alarm to jump directly to the rule that triggered it. Mark alarms as resolved to clear them.

**Alarm Rules**

Create alarm definitions with five severity levels — Critical, High, Medium, Low, and Info. Each level controls escalation behavior and notification urgency. Configure escalation policies with multi-step chains: define who gets notified, through which channel, and how long to wait before escalating to the next step.

**Multi-Channel Notifications**

* **Email** — Receive alarm details in your inbox
* **SMS** — Get text alerts for time-sensitive events
* **Push** — Notifications delivered directly to your Android or iOS device

Each channel requires verification before activation — click a link for email, enter a code for SMS. Configure notification intervals to control how often repeated alerts arrive for the same issue, preventing notification fatigue.

**Schedule Windows and Quiet Hours**

Set weekly notification schedules with timezone support. Suppress non-critical alerts during off-hours. When the schedule resumes, catch up on any missed notifications automatically.

***

#### Fully Configurable Dashboards and Widgets

Dashboards in CHIRP 3.0.0 are built exactly the way you need them. Organize dashboards into folders — by building, zone, department, or any structure that fits your workflow. Every widget is fully configurable: choose your data sources, define how data is displayed, and set conditional formatting that makes sense for YOUR context.

**The Big Shift: Context-Aware Visualization**

Widgets are no longer predefined. You configure every widget to show the data you care about, the way you need to see it. The same temperature sensor can appear on two different widgets with completely different meanings:

* On a "Room Comfort" widget: 20°C shows as green (comfortable)
* On a "Cold Storage" widget: 20°C shows as red (critical — the fridge is too warm)

You define conditional colors per sensor on each widget — number ranges, exact string values, or boolean states. Conditions are priority-ordered: the first matching condition determines the color. Custom units, icons, and labels complete the picture.

**Image Map Widget (New)**

Upload a floor plan image, then place sensor pins at exact positions on the map. See live data from every sensor overlaid directly on your facility layout. Color-coded pins change in real time based on your conditional formatting rules — walk into the monitoring room and instantly see which zones are normal and which need attention.

The Image Map supports multiple floors or layers — switch between building levels to monitor your entire facility from a single widget.

**Last Data Widget**

View the most recent values from any device using numeric displays, doughnut charts, or pie charts. Configure multiple devices and metrics within a single widget. Conditional color-coding highlights values that need attention.

**Chart Widget**

Analyze historical data with line or bar charts. Add configurable thresholds — colored bands that highlight when data enters warning or critical ranges. Support for multiple data sources and flexible time ranges makes trend analysis straightforward.

***

#### Organizations, Access Control, and Audit Trail

CHIRP 3.0.0 introduces a complete organization model with Attribute-Based Access Control (ABAC) that isolates data, devices, rules, and billing across teams.

**Organizations**

Every new user gets a personal organization automatically on registration. Create additional organizations for different teams, clients, or projects. Each organization has its own devices, connectors, dashboards, rules, alarms, and subscription — completely isolated from other organizations.

**Attribute-Based Access Control (ABAC)**

Instead of traditional role-based access (RBAC) where you are limited to predefined roles like Admin, Editor, or Viewer, CHIRP uses ABAC — permissions are evaluated dynamically based on multiple attributes: organization membership, page-level access, resource ownership, and user context. This means you can grant a contractor edit access to one specific dashboard without giving them access to anything else. No role explosion, no workarounds — just precise, granular control.

Invite users to your organization and assign exactly what each team member can see and modify at the page and resource level.

Configure organization settings including name, corporate email, and branding. Switch between organizations seamlessly if you belong to more than one.

**Audit Trail**

Every significant membership action within your organization is logged: invitations sent, users joined, permissions changed, users removed. The audit trail is searchable, filterable by actor and event type, and accessible only to users with explicit Audit Trail permissions. Full transparency for compliance and operational oversight.

**Subscription and Billing**

* Free tier available — connect up to 2 devices without entering a credit card
* Subscription limits enforced in the UI — clear visibility into what your plan includes
* Plan-based version history retention for rules
* Stripe integration for payment management

***

#### Sui Blockchain Infrastructure Migration

CHIRP has completed a full migration of all blockchain-facing services from Sui JSON-RPC to gRPC and GraphQL — ahead of Sui Network's planned JSON-RPC deprecation.

**Migrated Services**

* **Fountain Assistant** — Token distribution and faucet service
* **Chirp Assistant** — Blockchain interaction helper
* **Data Extractor** — Blockchain data retrieval service
* **Controller** — Network coordination service
* **Validator** — Transaction validation service
* **Core Chirp Library** — Shared blockchain functionality

The migration delivers lower latency, better scalability, richer query semantics, and a stack that fits Sui's object model far better than JSON-RPC. All services have been thoroughly tested and are running in production — ensuring zero downtime when Sui's legacy JSON-RPC endpoints are retired.

</details>

<details>

<summary>Flight Log. Release 2.2.1</summary>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FmV6DkduT93HjkCjdPvhd%2FFlight_Release_2.2.1.png?alt=media&#x26;token=baf72792-d45e-4a0f-b85d-cc5fafe5372f" alt=""><figcaption></figcaption></figure>

## Major Changes

### Staking System Update

* Introduced 6-month penalty-free withdrawal window (January 15, 2026 - July 15, 2026)
* Added notification about upcoming 30% base staking rewards decrease effective January 15, 2027
* Enhanced intro text clarity regarding reward calculation mechanics (variable rates based on total network stake and duration)

#### Important Dates

* January 15, 2026: Base staking rewards decrease by 30%
* July 15, 2026: Penalty-free early withdrawal window ends

#### Notes

* Rewards continue to accrue continuously and require manual claiming
* During the penalty-free period, users can withdraw accrued rewards without incurring standard early withdrawal penalties

### Stripe Bank Card Integration

#### Features

* Card Linking: Users can now connect their bank card through Stripe to activate free trial subscriptions
* Card Management: Users can view and manage linked cards in their Stripe account
* Card Removal: Users have the option to unlink/remove their bank card at any time

#### Security

* All payment data is processed securely through Stripe's PCI-compliant infrastructure

### DePIN Section Introduction&#x20;

* Created new DePIN section in navigation
* Moved Mining Board, Wallet, Kage, and Redeem NFT to DePIN section

#### Improved

* Simplified Overview page layout
* Better organization of DePIN-related features
* Cleaner navigation structure

## Minor Changes

### Stripe Subscription Management Fix

#### Fixed

* Users now have only one active order after upgrading subscription plan
* Corrected order replacement logic to ensure previous subscription order is properly canceled when upgrading

#### Improved

* Enhanced subscription upgrade flow to properly transition between tariff plans
* Improved Stripe order management to ensure clean subscription changes
* Updated order lifecycle handling during tariff plan upgrades

#### Technical Changes

* Implemented proper order cancellation/replacement logic during subscription upgrades
* Added validation to prevent duplicate active orders for same user

<br>

### Frontend Technical Debt Cleanup

#### Refactored

* Core UI components: Button, Tab, Text Field, Select, Typography
* Improved consistency and maintainability across component library

#### Removed

* Deprecated legacy components
* Unused translation keys

#### Improved

* Enhanced component reusability and type safety
* Reduced bundle size
* Cleaner component APIs

<br>

### Gateway Instructions Link Fix

* Users can now easily access gateway Installation | Chirp DePIN documentation
* Resolved issue where instruction button had no action

</details>

<details>

<summary>Flight Log. Release 2.2.0</summary>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2F0FcEYck5UgvoG7FEvfzD%2FFlight_Release_2.2.0.png?alt=media&#x26;token=7d0b0fa6-489c-4785-8b8a-241bdbcd1270" alt=""><figcaption></figcaption></figure>

### **CHIRP 2.2.0 is one of the biggest releases of the year.**<br>

This update introduces five major platform capabilities that move Chirp into a new phase of scalability — enabling larger deployments, stronger operational control, and a foundation for long-term commercial growth.

Most importantly, **CHIRP 2.2.0 launches Chirp Billing and Subscriptions.** This is a major milestone for the ecosystem: revenue generated from real product usage is used to **buy back CHIRP on the open market**, directly linking platform adoption to sustainable token demand and long-term network growth.

***

### &#x20;Major Changes

***

### 1. Billing & Subscription Launch&#x20;

**Billing and subscriptions are important because they convert real product usage into real market buying pressure.**\
Every time a customer pays for connectivity, device management, or data services, those proceeds are used to **buy back the token on the open market**, which directly links adoption to token demand. That means growth in users and subscriptions doesn’t just grow the business — it **actively supports the token economy** by turning usage into ongoing buy pressure instead of relying on speculation.

#### Subscription Management

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FUUxZ0Pfzj8H34eUPPb6p%2Fimage.png?alt=media&#x26;token=8bf4ab38-03d2-4718-a410-e4cc9ba77a9a" alt=""><figcaption></figcaption></figure>

A dedicated **Subscription** page is now live, giving users full access to Chirp’s plan and billing experience.

* View all available pricing plans and plan features
* Select a plan and complete checkout via our new **Stripe integration**
* Instantly view current subscription status and plan details
* Secure payment processing through a redirect to the Stripe portal
* The currently active subscription is clearly shown
* Subscription management (cancellation or plan changes) is handled directly in the Stripe portal
* **Frictionless trial activation** — users can start a trial without providing credit card details

#### Subscription Upgrade & Downgrade

Subscription transitions are now clean, predictable, and usage-aware.

* **Scheduled Downgrades:** Downgrades take effect at the end of the billing cycle
* **Usage Validation:** The system checks current usage limits before confirming a downgrade
* **Guided Downgrade Process:** Available downgrade plans display warnings if current usage exceeds limits
* **Value-Maximizing Scheduling:** Downgrades are delayed until plan expiration, ensuring users receive full value
* **Post-Expiry Access Control:** Expired subscriptions enter restricted mode with clear prompts for renewal

***

### 2. Free Plan + Access Continuity&#x20;

#### Free Subscription Defaults

Chirp now supports a full free subscription lifecycle.

* New users are automatically assigned the default **free plan** at registration
* Free plan details are now visible in the Billing / Subscription area
* Users can upgrade to a paid plan at any time
* Upon paid plan expiration, users are automatically downgraded to the free plan with feature restrictions applied

#### Mining & Crypto Access

We’ve preserved core network participation regardless of subscription tier.

* **Keeper Mining Continuity:** Keeper miners continue mining on all plans — no gate quantity restrictions
* **Crypto Section Access:** All Crypto sections remain fully accessible to Keepers and Players, independent of subscription status

***

### 3. Notifications: SMS Support + Add-On Credits&#x20;

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FpXpjbiRM0sfc0FQJZIqX%2Fimage.png?alt=media&#x26;token=982ee11c-0e5f-45eb-9920-528732d332b1" alt=""><figcaption></figcaption></figure>

#### SMS as a Notification Channel

The Notification Center now includes **SMS Alerts**, enabling reliable real-time delivery for high-priority events.

* SMS channel with phone verification flow
* Phone number input + verification code interface
* Toggle control for enabling/disabling SMS notifications
* Error handling for invalid or expired verification codes
* Duplicate phone number detection

**How to enable SMS notifications**

1. Go to **Notifications → Settings**
2. Click **+ Add phone number** in the SMS section
3. Enter your phone number and click Save
4. Enter the verification code sent to your phone
5. Toggle SMS notifications on/off as needed

***

#### SMS Add-On (Credit Purchase System)

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FuvGw0YU98VpkmQ3ycWgw%2Fimage.png?alt=media&#x26;token=8bcc3a5a-72d1-4b10-9d87-40d6e2585452" alt=""><figcaption></figcaption></figure>

SMS is now available as a **purchase-based add-on**, allowing users to buy SMS credits on demand.

* Flexible quantity selection
* Transparent per-SMS pricing and total cost before purchase
* Secure payments via Stripe
* Confirmation modal after successful checkout
* Live SMS balance display in real-time

**How to purchase SMS credits**

1. Open **SMS Notification Settings**
2. Choose the number of SMS credits to purchase
3. Review the unit price + total cost
4. Complete payment via Stripe
5. Confirm purchase and view updated balance instantly

***

### 4. Organization Management Enhancements (New Capability)

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FddLxbaYxoYb43Pk375yX%2Fimage.png?alt=media&#x26;token=75b92614-fee4-49fc-b144-279d3706a850" alt=""><figcaption></figcaption></figure>

Organization owners now have stronger control over governance and structure.

* Organization owners can edit the organization name directly in **Organization Settings**
* Ownership can be transferred to another member through the organization member list
* The new owner receives an email invitation to accept ownership
* Ownership transfer invitations expire after **7 days**
* The new owner must re-authenticate to accept ownership
* Once accepted, the new owner is automatically granted the **Editor role with full administrative rights**
* All organization changes require explicit saving to take effect

***

### 5. Dashboard Hierarchy & Folder Structure (New Capability)

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FiY9TVTa4dOMmlnaLVVgT%2Fimage.png?alt=media&#x26;token=9e5d98be-d444-4a6f-9c88-0713611060ce" alt=""><figcaption></figcaption></figure>

Dashboards can now scale with your organization using a new two-level folder structure.

* Dashboards can now be organized as **folders → dashboards**

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FYoFbCMASt7u6TE8RIv5P%2Fimage.png?alt=media&#x26;token=2bf3668e-43cd-4408-8fc4-e599eb929186" alt=""><figcaption></figcaption></figure>

* Folders can be created using the Settings icon next to **Add dashboard**
* Dashboards can be added, modified, and deleted within this folder structure
* Users can reorder dashboards and change hierarchy using the **Edit** button in the Dashboards menu
* Widgets can be added to any dashboard regardless of folder placement

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FqULbYKGi39aJercxMsLH%2Fimage.png?alt=media&#x26;token=bebb78c6-2d73-4a74-87be-b472abb49bb8" alt=""><figcaption></figcaption></figure>

***

### Minor Improvements

#### Admin Contact Visibility

* Permission tooltips now display **admin contact details**, helping users quickly request access or assistance when blocked by permissions

</details>

<details>

<summary>Flight Log. Release 2.1.0</summary>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FAfVEKoUBf7FKlCuO67Xa%2FFlight_Release_2.1.0.png?alt=media&#x26;token=c7e014f7-dd64-4bbd-9b1b-45177f590058" alt=""><figcaption></figcaption></figure>

This release introduces a major enterprise-grade update - the Organizations system powered by Attribute-Based Access Control (ABAC).\
It provides a flexible permission model enabling multi-user management, granular access control, and collaborative device operations within enterprise environments.\
This feature is primarily used by Chirp’s B2B clients and forms the foundation for Chirp’s upcoming white-label and large-scale deployment solutions.

***

### Released features

#### Organizations (ABAC: Attribute-Based Access Control)

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FuzN8VSi0BAasnkyOsC9s%2F%E2%95%A8%D0%B1%E2%95%A8%E2%95%9C%E2%95%A8%E2%95%95%E2%95%A8%E2%95%9D%E2%95%A8%E2%95%9B%E2%95%A8%E2%95%91%20%E2%95%A4%D0%9D%E2%95%A8%E2%95%91%E2%95%A4%D0%90%E2%95%A8%E2%96%91%E2%95%A8%E2%95%9C%E2%95%A8%E2%96%91%202025-11-10%20%E2%95%A8%E2%96%93%2015.46.38.png?alt=media&#x26;token=e996ee11-dfba-43e5-a9bf-8520636bdfa0" alt=""><figcaption></figcaption></figure>

Added a new Organizations section, enabling platform owners and enterprise clients to manage teams and user access levels.

Users can:

* View their organization name and access level in the left menu.
* Browse organizations they belong to.
* Access Users and Settings pages for each organization.

*ABAC system supports multi-user collaboration, ensuring secure and structured access management across projects. Organization names are automatically generated in the format “{UserName}’s IoT.”*

#### User Management within Organizations

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FKEgBGc2ybqK5dqDDlAUb%2F%E2%95%A8%D0%B1%E2%95%A8%E2%95%9C%E2%95%A8%E2%95%95%E2%95%A8%E2%95%9D%E2%95%A8%E2%95%9B%E2%95%A8%E2%95%91%20%E2%95%A4%D0%9D%E2%95%A8%E2%95%91%E2%95%A4%D0%90%E2%95%A8%E2%96%91%E2%95%A8%E2%95%9C%E2%95%A8%E2%96%91%202025-11-10%20%E2%95%A8%E2%96%93%2015.44.14.png?alt=media&#x26;token=04184a46-9d8a-4649-af7a-e3b503bb918c" alt=""><figcaption></figcaption></figure>

* Organization owners can now add, manage, and assign roles to users within their organization.
* Roles and permissions include:

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FHosPBVx4d9SZjXtL3ve1%2F%E2%95%A8%D0%B1%E2%95%A8%E2%95%9C%E2%95%A8%E2%95%95%E2%95%A8%E2%95%9D%E2%95%A8%E2%95%9B%E2%95%A8%E2%95%91%20%E2%95%A4%D0%9D%E2%95%A8%E2%95%91%E2%95%A4%D0%90%E2%95%A8%E2%96%91%E2%95%A8%E2%95%9C%E2%95%A8%E2%96%91%202025-11-10%20%E2%95%A8%E2%96%93%2015.47.36.png?alt=media&#x26;token=3cd0e705-897f-45e0-8600-2ba1dc6c7460" alt=""><figcaption></figcaption></figure>

\
\- Admin: Full access except deleting owner.\
\
\- Editor: Access to all features except Billing and User Management.\
\
\- Viewer: Read-only access across the platform.<br>

* Owners can invite new users via email; invitations include an “Accept Invitation” link for direct onboarding.

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FDTAAfUTDhymbDg4W3VY3%2F%E2%95%A8%D0%A1%E2%95%A8%E2%95%A1%E2%95%A8%E2%95%96%20%E2%95%A8%E2%95%9C%E2%95%A8%E2%96%91%E2%95%A8%E2%95%96%E2%95%A8%E2%96%93%E2%95%A8%E2%96%91%E2%95%A8%E2%95%9C%E2%95%A8%E2%95%95%E2%95%A4%D0%9F.png?alt=media&#x26;token=1d6d1ad1-d9d9-41be-a495-652d9fd90ec7" alt=""><figcaption></figcaption></figure>

* Supports viewing invitation statuses and modifying or deleting user access.
* Enables distributed team management for enterprise clients.

#### Devices, SIM Cards, Rules & Notifications in Organizations

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FRaqyb8vjvqqVOHlCVjho%2F%E2%95%A8%D0%A1%E2%95%A8%E2%95%A1%E2%95%A8%E2%95%96%20%E2%95%A8%E2%95%9C%E2%95%A8%E2%96%91%E2%95%A8%E2%95%96%E2%95%A8%E2%96%93%E2%95%A8%E2%96%91%E2%95%A8%E2%95%9C%E2%95%A8%E2%95%95%E2%95%A4%D0%9F%202.png?alt=media&#x26;token=f73e4045-128e-4262-b5f6-23a1f82b7288" alt=""><figcaption></figcaption></figure>

* Added full organization-level management for devices, SIM cards, rules, and notifications.
* Members with edit access can:

&#x20;\- Add, edit, or delete devices, SIM cards, rules, and notifications within the organization.\
&#x20;\- Upload, view, and delete device photos.

*All organization users can view shared assets created by others, fostering streamlined collaboration and operational transparency within a shared workspace.*

### Backend & Platform Improvements

#### Device Favorites Handler Refactor

* Backend refactoring to separate favorite device management into a dedicated handler (UpdateDeviceFavoriteById).
* Improves code clarity, modularity, and permission management flexibility.
* Manual and integration tests updated to confirm proper behavior.

#### Gateway Creation — Optional Photo Upload Fix

* Fixed an issue requiring mandatory photo upload during new gateway creation.
* Users can now proceed without uploading an image by clicking Continue, as intended.

### Kage App

#### New Features - **Magnet Functionality**

Magnets increase the beacon claim distance from 10 meters to 50 meters, improving gameplay range and efficiency.

#### Updates, Improvements & Fixes

* **New Beacons placement**
* **Beacon Pool replenishment**
* **Increased Distance Accuracy:** improved beacon distance accuracy.
* **Interface Update:** round duration information and new minimum threshold of 800k Data Chips updated&#x20;
* **Bug Fixes:**
  * Fixed ANR error causing app freezes.
  * Resolved crash related to scanner functionality.
  * Added disabled status for `paymentState` to prevent misreporting.

</details>

<details>

<summary>Flight Log. Release 2.0.0</summary>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FxwDpYzHQ6ih0FlJwZkqW%2FFlight_Release_2.0.0.png?alt=media&#x26;token=707d2708-92ea-4f3d-a688-a92461ebd27c" alt=""><figcaption></figcaption></figure>

### Released features&#x20;

#### Custom Dashboards

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FP3nkCCZIoTZGcNEwdyXP%2F%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA%20%D1%8D%D0%BA%D1%80%D0%B0%D0%BD%D0%B0%202025-10-22%20091518.png?alt=media&#x26;token=3ab1ca48-b7a4-4bd4-99b1-024aa6a9860a" alt=""><figcaption></figcaption></figure>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2Fd048ZDtTqdKzYQH5iv9n%2F%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA%20%D1%8D%D0%BA%D1%80%D0%B0%D0%BD%D0%B0%202025-10-22%20092256.png?alt=media&#x26;token=4f1a2bad-18ef-4763-af0f-923bc8a72a39" alt=""><figcaption></figcaption></figure>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FYZbPnsJWKkjCNAvyn8PW%2FDashboard_01b.png?alt=media&#x26;token=65f675f9-b034-42cf-9cd0-f2bfe307dbc2" alt=""><figcaption></figcaption></figure>

* Introduced fully customizable dashboards, allowing users to create personalized data views and monitoring setups.&#x20;
* Users can now design dashboards based on their specific workflows, device groups, or IoT environments.

*Custom dashboards functionality enables better situational awareness, flexibility for enterprise monitoring, and simplified data-driven decision-making.*

* **Key functionality:**

  * Add, rearrange, and resize widgets to tailor data visualization.
  * Remove dashboards when no longer needed.

  #### Collapsible menu

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FxWtrvLqydsy9HKMhfPUd%2FDashboard_01c.png?alt=media&#x26;token=d5134656-5b92-4942-8631-33c6df70473f" alt=""><figcaption></figcaption></figure>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FMCFhUTL06wjDABJjtTIc%2FDashboard_02.png?alt=media&#x26;token=1d3527b4-c854-4a42-95ce-b2d0c84654d4" alt=""><figcaption></figcaption></figure>

* Introduced a collapsible sidebar menu that enhances workspace usability:
  * Menu can be minimized to a narrow icon strip or expanded on hover.
  * Provides a cleaner, distraction-free view of dashboard data.
  * Improves user navigation and available screen space.

#### Device Photo Management & Direct Upload

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FlHqcRFHJiXqE2l4XKsDs%2FDashboard_03.png?alt=media&#x26;token=964839bc-42fc-4588-8a14-d272611f2afd" alt=""><figcaption></figcaption></figure>

* Added photo placeholders for devices without images, prompting users to upload visual context.
* Users can upload up to three photos directly from the device page, without navigating to settings - making photo management quick and intuitive.
* Photos can show not only the device itself but also its installation location or surrounding environment, making it easier to locate, service, or replace devices in the field.
* Uploaded photos are visible on the device details page and available for reference when creating rules.

*Improves traceability, maintenance efficiency, and overall asset management.*

***

#### Automated Kage Beacon Payouts

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FEZk647oqmXl83TXdCiPk%2F%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA%20%D1%8D%D0%BA%D1%80%D0%B0%D0%BD%D0%B0%202025-10-22%20145354.png?alt=media&#x26;token=374df104-2595-46f9-b7b7-20ec31bb76a0" alt=""><figcaption></figcaption></figure>

* Implemented automated reward payouts for Kage Beacons at the start of each new epoch (every 2 days).
* Rewards are now distributed automatically upon token minting, removing the need for manual payouts.
* Improves consistency, accuracy, and speed of Kage reward distribution.

#### New Kage Store Cards

* Introduced new store cards for Premium Pass and Magnets.
* Items can now be viewed and purchased directly from the Kage Store interface.<br>

### Minor changes, Bug fixes & optimizations&#x20;

#### Rule Inactive Status Email Fix

* Fixed an issue where notifications continued to be sent after a rule was set to inactive.
* Inactive rules now correctly stop email notifications and mark notifications as resolved.

#### Rule Deletion Email Fix

* Fixed an issue where notifications continued to be sent after a rule was deleted.

#### Token Price Update Fix

* Fixed an issue where the CHIRP token price was not updating on the Explorer page.
* Token prices now refresh correctly and display current values in real time.

#### GPS Tracker URL Fix

* The device URL now correctly links to the production environment.

#### Widget Pinning Fix

* Fixed an issue where widgets could not be pinned on device pages.

#### Magnet Description Fix in Kage

* Fixed missing “m/meter” in the Magnet description on the Kage page.

#### Kage Store White Theme

* Added a white theme for the Kage Store interface.

#### Non-LoRa Device Creation Fix

* Fixed an issue where users could not add non-LoRa devices if isEnabledDevicePhoto was disabled.
* Users can now add non-LoRa devices regardless of the device photo setting.

</details>

<details>

<summary>Flight Log. Release 1.2.1</summary>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2F5eb3C2u4NvZkBxyZM7Mr%2FFlight_Release_1.2.1.png?alt=media&#x26;token=600c5127-ea6a-416d-8e7e-3d755beb7ca6" alt=""><figcaption></figcaption></figure>

### Released features

#### Notification Menu

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FwgbSp3iBldVbhdRh7qVp%2FNotofications_Screenshot.png?alt=media&#x26;token=82c6137b-481e-43c6-87ad-2fb017f098c7" alt=""><figcaption></figcaption></figure>

* New notification menu accessible from the bottom-left corner.
* Dropdown shows recent notifications with title, description, timestamp, and status.
* Supports categories (Alerts, Warnings, Information, System, etc.) and filters (All, Unread, Unresolved, Critical).
* Users can mark notifications as read (individually or all at once).
* Rule notifications include status indicators: *New, Read, Resolved*.
* Notifications also appear in the Notification card on the Overview page.

***

#### Device & Gateway Photo Uploads

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FdKOErpeRFjSjpgt0KGqR%2Fimage.png?alt=media&#x26;token=6df4fb25-f9e9-4374-886d-9be89cff19bb" alt=""><figcaption></figcaption></figure>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FJP4v5QOICiZlGpLWwGjn%2Fimage.png?alt=media&#x26;token=363be03f-d40c-4507-af67-72f71639226a" alt=""><figcaption></figcaption></figure>

* Users can now upload up to 3 photos for devices and gateways (during creation or from the device/gateway page).
* Uploaded photos are visible on the device page and when creating rules.
* Added upload button with “+” icon and ability to view all photos in expanded info.
* Photos can be deleted in settings (delete icon on hover, always visible on mobile).
* Improved UX: entire device/gateway card can now be expanded or collapsed with a click.

***

#### Explorer Updates

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2Flkop5cevRMeFlzXMsjjj%2Fimage.png?alt=media&#x26;token=9ca3a773-5906-419b-9c7c-55a3a73b7076" alt=""><figcaption></figcaption></figure>

* **TVL & Token Holders Widgets**
  * New widgets showing Total Holders count and TVL ( total value locked which equals non-circulationg supply).
  * Includes staked and lock-up pool details.
* **Updated Token Circulation Widget**
  * Displays both circulating and non-circulating token amounts.
  * Non-circulating tokens are calculated as the difference between total supply and circulating supply.

***

### Bug fixes & optimizations&#x20;

#### Notifications S**ervice Refactoring**

* Split monolithic service into smaller, maintainable services.
* Introduced explicit interfaces between layers for better testability.
* Updated repository structure aligned with database tables.
* Adjusted tests for new architecture.
* Notification icon is now correctly displayed even with more than 10 notifications.
* Corrected error message for expired verification codes.

***

#### UI/UX

* **AI Agent Window Fix**: resolved overlapping with “Device is Beta” window.
* **Gateway Label Fix**: removed incorrect “Not a miner” labels.
* **Rules Action Fix**: actions now display correctly when adding multiple rules with OR operator.
* **Docs Section Fix**: Docs section is now fully clickable.
* **Boosters & Pass Titles Fix**: corrected alignment on the Kage page.

***

#### Platform & Transactions

* **Rename Lockup Pool**: updated to *Community Vault* across the platform.
* **Data Credits Purchase Fix**: users can now buy Data Credits via Now Payments without errors.
* **Gateway Submission Fix**: submission works correctly without server-side errors.
* **Reward Claim Fix**: rewards can now be claimed without server issues.
* **Error Message Fix**: corrected error message when adding gateways.
* **Transaction Stability**: improved blockchain transaction processing with polling to prevent timeouts.

</details>

<details>

<summary>Flight Log. Release 1.2.0</summary>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FmGFsB6NF5jMXLwOZ0wj5%2FFlight_Release_1.2.0.png?alt=media&#x26;token=2542bf46-c59b-49f7-a7c8-0e3e225dd7a2" alt=""><figcaption></figcaption></figure>

### Released features

**Tank Distance Sensor Widget**\
![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FlG6pQpy0D20pMDhZirGZ%2Fimage_2025-09-05_15-36-10.png?alt=media\&token=1e9cd486-ff55-4c10-831d-7d04f00e2c78)

* New Tank Distance Sensor Widget available on the dashboard.
* Supports units with configured distance sensors.
* Displays real-time updates from the sensor.
* Shows “No data” when recent sensor readings are unavailable.

**Soil Sensor Integration**\
![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FIpWOW2WQccAyGjM5dz0x%2Fimage_2025-09-05_15-38-37.png?alt=media\&token=249cdc11-ea98-4538-9df4-45d23c737985)

* Soil Sensor Measurements: Added configuration support for soil sensor measurements.
* Sensor Field Mapping:

Field 1: Battery level.

Field 2: ADC readings for soil moisture.

**Custom Notification Frequency**\
\
![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FTxGk4hSrisDDwTlzFUKX%2FCustom%20notification%20frequency.png?alt=media\&token=3845c7ea-3d79-4e9c-8ee3-c192df8ddcaa)

* Introduced Custom Notification Frequency settings.
* Users can configure one-time or recurring notification intervals
* Default setting is disabled until explicitly enabled by the user.

**Rule Timer**\
\
![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FYxZ8Nbim8f144CgaywPP%2FRule%20timer%20\(1\).png?alt=media\&token=582f28e9-b453-472b-abdf-47aaa8fd37ea)

* Introduced a Rule Timer that allows users to define when a rule is active.
* Users can enable/disable the timer and configure detailed scheduling options:
* Select start and end time for rule execution.
* Set a start date for the rule to begin operating.
* Choose specific days of the week when the rule should run.

**Kage app (development ready – scheduled release Sep 17)**<br>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FhHNMrS4rzFQglkaYbelk%2FScreen_Boosters.png?alt=media&#x26;token=c805cbda-9924-42e1-9401-382024c33595" alt=""><figcaption></figcaption></figure>

* Scanner and Premium Pass Purchase System (Kage Store). Players can get Scanners with varying detection ranges and Premium Pass for access to higher rewards.
* Virtual objects (Beacons) global placement.&#x20;
* Beacons with CHIRP token rewards added, with bonuses in high-activity areas.
* Beacons with Data Chips rewards added
* Beacons search functionality ready. Basic search with radius 150 metres and Upgraded search with Scanners

### Released enterprise use only features (closed alpha)

**Personal Organization Creation on User Account**\
![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2F6bbVauuV43h7HyhHpwjM%2Forgan.png?alt=media\&token=f2c1b70d-21ec-464b-84f6-f1a8998754cf)

* Registration now automatically generates a personal org: {USER\_NAME}’s IoT.
* Safe failure handling prevents orphaned accounts.
* Enhanced error logging for smoother debugging.

**SMS Notifications in Notification Center**

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FXivCrkD08UXRhs1oI5ub%2FNotification_Center.png?alt=media&#x26;token=fe052725-dbea-4ef4-9041-0867221990e3" alt=""><figcaption></figcaption></figure>

* Ability to register & verify phone numbers for SMS alerts.
* Users can toggle SMS notifications after verification.
* Improved UI with validation & feedback during setup.<br>

#### Subscription System

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FYWyFvUclqzeSitrFHMyn%2FSubscription.png?alt=media&#x26;token=38f1b57c-3035-422f-bc6e-66ddebc3b7b0" alt=""><figcaption></figcaption></figure>

* Stripe Integration: Implemented a comprehensive subscription system through Stripe, enabling users to purchase, renew and change subscription plans.
* Tiered Access: Created a multi-tiered subscription model with different access levels (Starter, Pro, Business, Enterprise) providing varying device limits and feature sets.
* Subscription Management: Added user interface for managing subscriptions, including plan upgrades/downgrades and renewal options.
* Payment Processing: Integrated secure payment processing with support for multiple payment methods and currencies

### Under development

**Kage app**

* Automatic Beacon Replacement: beacons reappear after being found.
* Kage Map Functionality: real-time tracking of player activity.

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FFdyo0mqTd4JSAsf4Z39s%2Fkage%20map.png?alt=media&#x26;token=7e227330-ff69-4cc3-afac-55883b7a9024" alt=""><figcaption></figcaption></figure>

* Hexagon Conquer Feature: territory-based gameplay layer.

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FND1RprBBotzGePr4GToa%2Fhex%20kage.png?alt=media&#x26;token=7a5a834f-c4c3-4065-a40e-fc99d6207a91" alt=""><figcaption></figcaption></figure>

### Bug fixes & optimizations

* AI Assistant: Fix Enter Key Improved input behavior in AI Assistant.
* Gateway Status Fix: Brand-new gateways now show “Last seen – No data” instead of a date.
* Device Log (Button Fix): Restored visibility of the “Download Log” button.
* Image Upload Fix: Image uploads when adding a gateway/miner now work reliably without errors.
* Rule Creation (Attribute Fix): All attributes are now displayed correctly when creating rules.
* Devices Sharing Table Fix: Shared device list is now refreshed automatically upon deletion.
* MCP Integration: Analyzed and prepared integration of Model Context Protocol (MCP) for smart home devices, mapping REST API to MCP standard.
* Transaction Stability: Improved blockchain transaction processing with polling mechanism to prevent timeouts and ensure transaction completion.

</details>

<details>

<summary>Flight Log. Release 1.1.0</summary>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FxzTc3HHAZJAfOl9jmfEM%2FFlight_Release_1.1.0.png?alt=media&#x26;token=071540e4-b86b-49a1-89d3-e02284379ba2" alt=""><figcaption></figcaption></figure>

### Major Changes

#### Date device added

* "Date added" is now visible on the device page under Settings for all registered devices.

#### "+ Remain true for" for conditions

* “+ Remain true for” button. This feature allows users to create rules that are triggered only if a condition (e.g., motion detection) remains true for a specified duration.
* The "Remain true for" field is connected to specific conditions, and when the condition is deleted, the "Remain true for" field is also removed.
* Notification resolved. To receive new notifications when a rule is triggered, the user must first complete all previously received notifications.

#### Improved Local Services Deployment

* Enhanced the local deployment process for services to streamline development and testing.
* Goal: Each service is now easily deployable locally with a single command, reducing setup complexity and improving development efficiency.

#### &#x20;AI Assistant Integration

![](https://lh7-rt.googleusercontent.com/docsz/AD_4nXdQvW3Nibcly5lQ-tLBTyYTBtXa2rdpjcnn-4CAX6DV4HbZg0WlaV1BARVNHv6Ak20B5VJup04FnEpwXiM98CZjNuoBaJs_bqVrHbK2PCuRlLk5D5cfh-4LUZ8PXy8XBov6l1dFnmmLzTlJ0APREg?key=tNsubmjd5HuEL0rOWRh-uQ)

* Introduced a new AI Assistant to provide intelligent support and data insights across the platforms.
* The assistant can interact with users in chat form, leverage platform-specific contexts for better reasoning, and generate visual insights from device data.

### Minor Changes

#### Remove signing on wallet deleting

* Remove wallet. No signature is required to confirm the deletion of a wallet from a user's account.
* Removed the requirement for signing when deleting a wallet.
* This update streamlines the process by eliminating the need for user authentication (e.g., signature) when removing a wallet from the system.

#### Add Metrics Tracking to Site and Application

* Integrated metrics tracking into the site and application to monitor user behavior across various scenarios.
* Set up tracking for key actions: adding a device, adding a widget to the dashboard, and creating a rule.
* Metrics will help identify where users drop off, where they experience delays, and where they proceed smoothly.

#### Bug Fix: DC Balance Displays as Zero During Impersonation

* Fixed a bug where the DC balance incorrectly displayed as zero during impersonation sessions.

#### Bug Fix: Unable to Top Up DC — All Payment Methods Failing

* Fixed a critical issue preventing users from topping up Data Credits (DC) via the NowPayments integration.

#### Bug Fix: Wrong Error Message When Wallet Has 0 Chirp Tokens

* Fixed an issue where users with a connected wallet and a 0 Chirp token balance received an incorrect error message.

#### Bug Fix: Users Able to View Other Accounts’ Notifications via Search

* Fixed a security issue where users could inadvertently access notifications belonging to other accounts by using the search function.

#### UX Improvement: Subscription Page – Replaced Technical Parameters with User-Friendly Feature Names

* Improved the Subscription page by replacing technical or configuration-style terms with clear, user-friendly feature names.

</details>

<details>

<summary>Flight Log. Release 1.0.0</summary>

<figure><img src="https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FOkRxkKKoSMuZP7yRjKV5%2FFlight_Release_1.0.0.png?alt=media&#x26;token=7b6c2e2e-6b3d-4644-ba70-079b876a78c0" alt=""><figcaption></figcaption></figure>

## New Features <a href="#new-features" id="new-features"></a>

## Staking <a href="#staking" id="staking"></a>

Staking itself helps $CHIRP token holders grow their balance by locking their tokens for a particular timeframe for extra rewards.

This encourages long-term holding, increases token stability, and keeps users engaged as well. Features includes flexible reward rates, auto-reinvestment, and bonus perks.

More details: <https://docs.chirptoken.io/chirp-token/staking>

## Rules Engine <a href="#rules-engine-dostupno-tolko-pod-ficha-flagom" id="rules-engine-dostupno-tolko-pod-ficha-flagom"></a>

**Rules Engine** allows users to set up and run automated rules for device data. The rule engine will help automate tasks, make the platform more efficient, and improve how devices are managed. This is the first version, laying the foundation for future updates and improvements.

## Notification Center <a href="#notification-center" id="notification-center"></a>

The **Notification Center** is designed to help users stay informed about important events in the system. It ensures that critical alerts, important updates, and general information reach the right people at the right time.

With this feature, users will:

* **Receive notifications in real-time** when system events occur
* **See notifications categorized by priority** (Critical, Important, Information)
* **View all notifications** with timestamps.
* **Filter notifications** by priority and date.
* **Mark notifications as read** to track which messages they’ve already seen.
* **Delete notifs** to remove unnecessary messages while keeping relevant ones.

## Bug fixes <a href="#bug-fixes" id="bug-fixes"></a>

Cannot paste DEVEUI correctly

AI assistant locks function buttons

</details>

<details>

<summary>Beta release 0.36.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2F6MwJUnfy7qngT6ogmJBP%2Fimage.png?alt=media\&token=059aa055-0b48-4ad1-8eb1-fa5ab08c9720)

## Features

User board redesigned\
Map: Centering when no device or coordinates are present\
Map: Updated colors\
Light theme added for widgets\
Improved graphs for calculated widgets, including colors and decimal points\
Added ability to set normal value boundaries in widget settings\
Displayed min/max/avg on widget progress bar\
Redesigned tooltips\
Updated Claim Reward window

## Bugfixes

Fixed miner status icon not updating\
Fixed rewards wallet verification issue on rewards page via sidebar button\
Corrected total and last rewards counters showing zero\
Explorer: Fixed Token Supply Widget displaying incorrect graph\
Explorer: Restored missing Top Earners\
Explorer: Corrected sorting order in Transaction Block\
User Board: Fixed UI bug for Favorite devices in adaptive mode\
User Board: Corrected number of needed attention device notifications\
User Board: Added missing "Mark all as read" button\
Fixed disappearing data credit balance after page reload\
Mining board: Fixed page height bug\
Corrected sidebar menu scaling\
Improved widget settings reset functionality\
Fixed Chirp Epochs not displaying on rewards graph\
Resolved login failure after logout\
Removed share device function for device owner

</details>

<details>

<summary>Beta release 0.35.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FpUHLkzT2AnhEtAyu7TEt%2Fimage.png?alt=media\&token=f29f8d42-2306-4369-855c-9857643bfb6d)

### Features

*App*

• Added availability and RX/TX charts for third-party gateways\
• Displayed min/max/avg on the widget graph\
• Added empty states for Mining Board and User Board maps\
• Enabled search by DevID on Device list page

*Firmware*

• New firmware release v1.1.3 now available\
• Added MQTT client\
• Optimized upgrade script\
• Disabled Ziti tunnel on firmware start\
• Removed Wi-Fi settings reset when not connected to gateway's AP\
• Added more NTP servers\
• Optimized ECC chip setup scripts\
• Wisgate UI: Improved interface responsiveness\
• Enhanced network connection stability\
• Significantly reduced traffic consumption from 3 GB/month (v1.0.234) to 600 MB/month

### Bugfixes

• Map: Fixed ruler in adaptive mode\
• Map: Removed scrolling after map opening\
• Fixed issue where new Miners received no payments or rewards\
• Fixed update firmware request bug\
• Fixed confirmation link on sign-in page\
• Leader Board: Corrected total distance calculation\
• Muted sign-in buttons after returning to login page\
• Fixed session error during password change\
• Mobile: Fixed page reload during tracker map usage\
• Devices: Corrected search field placeholder\
• Fixed login and sign-up using Apple account\
• Fixed display of new firmware version on gateway's dashboard\
• Login: Corrected Apple warning text\
• Resolved issue preventing registration using Google / Apple accounts\
• Fixed login failure when using Apple / Google accounts\
• Fixed bug where registration button wasn't blurred after click\
• Resolved login forward back to login page issue\
• Corrected sorting order for transactions in Mining Board

*Tracker App*

• Implemented logout on internet connection loss\
• Added leaderboard position information\
• Fixed issue of new device creation after app update\
• Reduced multiple location messages\
• Fixed iOS device absence on Leader Board\
• Resolved user registration error\
• Android App: Fixed large map movements during rest

</details>

<details>

<summary>Beta release 0.34.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2F0xwdKS4nUY617NDqkbEA%2Fimage.png?alt=media\&token=77737478-0801-4a1d-9464-824baf6c19a8)

### Features

* Device info block added for Device page & Gateway page
* All layers (device icons, track, ruler) on the map are erased when switching the light/dark theme
* Connected wallet: UI improvements
* Redesigned dark theme for map
* Added light theme for map
* Login page optimization
* Added scrolling/filtering feature to Rewards chart
* Explorer: changed default sorting to total for top earners

*Leaderboard:*

* Add device aliases to Leaderboard
* Removed highlighting of first positions in Leaderboard

### Bugfixes

* Verification using Ledger device does not work
* Fixed statistics widgets in Explorer
* Mining Board: Calculation of Potential Reward
* Mining Board: map ruler error when switching themes
* Light theme: black buttons for PayPal card payment
* Light theme: black view of feedback form
* Notification email about personal info change during widget configuration
* Unexpected logout fixed

</details>

<details>

<summary>Beta release 0.33.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FPpRYrxbauteqGbXwbcTZ%2Fimage.png?alt=media\&token=f5598d88-65d5-492e-829f-1d6af1d9a507)

### Features

* Frontend improvements: White theme released, switch dark/white themes in sidebar by clicking user avatar
* Frontend improvements: Map color redesigned for better readability
* Frontend improvements: Sign-in buttons for Google / Apple redesigned for better interaction
* Mining board: Reward coefficients are shown to demonstrate the potentially lost reward due to low availability
* Mining board: Reward scrolling feature now allows to scroll epochs to where it all began
* SIM cards: New SIM parameters are available on SIM card page
* Devices: Widget switch main/other allows to switch main and other data to highlight only the most important information
* Wallet security: Signature for wallet removal is now required to increase the safety of mining on Chirp platform

### Bugfixes

* Redeem NFT: Exception during order creation
* Redeem NFT: Wallet address input
* Login and logout issues

</details>

<details>

<summary>Beta release 0.32.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FkEgcR775jQK3KcWnUxj2%2Fimage.png?alt=media\&token=44f64418-ad98-4794-bfb4-20206f138859)

### Features

**Chirp Token**\
Extractor: Extract claim records for payouts\
Make each instance of the validator service use its own consumer name\
SDK & Crypto: Claim transaction tools\
Ledger Node: Each record should have a date\
Ledger Node: Transaction multi-signing algorithm\
Depositary Contract: Claim function\
Ledger Node: Prepare Transaction\
Extractor: Transactions controller\
Refactoring top holders without SUI ScanBalances

**Chirp App**\
Mining Board:

* Added "Claim" button
* Popup "How much do you wish to claim?" with amount to claim (max amount button)
* Popup: Sign transaction
* Popup: "Success" or "Transaction declined"
* Table fixed: rename Reward to Deposit and tooltip "These are claimable deposits. They can be claimed from the blockchain."
* Fetch rewards only for displayed epochs
* Fixed mining board blocks style

App optimizations for devices and gateways pages\
Support initial miner firmware registration link in app\
Leaderboard widget at device page\
Leak Sensor widget improvement\
Added sorting for non-LoRa devices in add device dialog menu\
Added main metrics for tracker pages\
Explorer: Added gateway aliases for top earners table\
Explorer: Added “Type” column to payments table\
Reward Wallet: Signed the wallet removal operation\
Connect Wallet: New sidebar menu added; now, the chain is displayed for the connected wallet

### Bugfixes

Mainnet stability: fixed duplicating keys error\
Mainnet stability: deleted unnecessary checkpoints\
Login page: fixed white screen error\
Redeem NFT: wallet address does not fit input\
Contact Support pop-up at device page fixed\
Gateway: location not displayed in gateways table\
Tracker Map: tracks not displayed in adaptive mode\
Fixed tooltip shift for rewards chart\
Fixed app crash on Smart Plug device page

</details>

<details>

<summary>Firmware release 1.0.234</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2F5H1gTbCFt5fKOCjNO0VK%2Fimage.png?alt=media\&token=584adf96-0274-4e2c-99bf-e30af3a29da9)

### Features

* Gateway availability issues have been resolved;
* Fixed problems with Wi-Fi connection loss;
* Improved Wisgate UI performance and fixed bugs;
* Added feature to disable LTE modem by default if not in use.

</details>

<details>

<summary>Beta release 0.31.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FwJF0mrW7n72tvDtClXDt%2Fimage.png?alt=media\&token=354fe64c-5649-4124-ae5b-2d3cd69ae2c3)

### Features

* Leaderboard Page: New widget designed for the Chirp Tracker mobile app and the upcoming BIG Airdrop Campaign
* Added top-up for sim-card balance via PayPal, credit card or Data Credits
* Improved connect/verify wallet banner
* Redeem NFT: disabled “Burn NFT” button if network is not mainnet
* Prompt user to switch to mainnet for verification
* Non GPS Device page (mobile) improvements
* Fixed charts in widgets
* Disabled e-mail change form in Settings
* Gateways: Update to latest firmware support request on gateway’s page
* Added device type to browser URL
* Mining Board: show “Pending…” only in the latest payment
* Replaced gateway icon with Chirp icon on the gateway page and user board
* Moved calendar button to the far right side on all tabs
* Added new map features from Network Explorer to main application
* Gateway registration: set data credit amount to default 4000
* Added sub-location field to gateway
* Leak Sensor Widget improved

### Bugfixes

* Wallet verification failed for Google Auth wallets
* New order create app crashed
* Change password wasn’t logout from account
* Map did not displayed for non-lora sim card trackers
* Gateways: “Add gateway” button shifted left
* IMEI of mobile tracker was editable
* Empty balance for connected and verified wallet
* Device sharing did not working for non-lora devices
* User avatar was deleted after relogin
* Devices number delta did not updated on Network Explorer
* Devices table: fixed wrong battery percentage view

</details>

<details>

<summary>New feature 0.30.1</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FIUvd02wh6OV4i8dnbnzg%2Fimage.png?alt=media\&token=c208aea6-70cf-4cb0-80a0-1c5ce8da15fd)

New sign-up and sign-in features are available! You can now join Chirp with Google or Apple account.

</details>

<details>

<summary>Beta release 0.30.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FADvjb4jBFJ8yVd2qJDH8%2Fimage.png?alt=media\&token=b62038ca-977e-4a7f-88f1-4fdd81205e6c)

### Features

* Updated Crypto Explorer page - enhanced mobile view for the page, new top holders and top earners tables available
* Improved visibility, Explorer now only displays the miners within the visible area
* Re-designed SIM cards page
* Reworked 4G GPS trackers page
* Added DevEUI to device list page
* Improved visibility of the "Add device" button
* Sped up the Gateways page loading
* Removed default map centering on all pages
* Improved Leak Sensor widget
* Updated Privacy Policy
* Added EULA banner
* Introduced guide to Buy & Redeem NFT

### Bugfixes

* Hotfixes for Redeem NFT: resolved issues with burning NFT, re-fetching NFTs, and dropdown with country code for phone field
* Fixed UI not recognizing a wallet network change
* Mobile: Fixed wrong alignment on the Connected wallet page
* Mobile: Fixed wrong pagination in Crypto Explorer transactions
* Mobile: Fixed Mainnet warning message displayed on the mobile version
* Tracker path now created based on the last update timeline
* Fixed wallet verification failure for Google Auth Sui wallet
* Added Button or Link to Chirp platform after email confirmation
* Fixed issue where users with shared tracker could see list of users with this tracker shared
* Changed text on widget from "Door is closed/open" to "Open/Closed"
* Fixed tooltip clipping in the first column of the Rewards chart
* Device log details no longer overwritten during preview
* The old view is no longer displayed before the sim card device page is loaded

</details>

<details>

<summary>Hotfix 0.29.1</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2F3j7FKXMhIL140rtuCFkt%2Fimage.png?alt=media\&token=491ef26f-a473-4c09-92cb-cd861b1778db)

## Hotfixes

Redeem NFT page changes:

* add banner “Once you have burned your NFTs, order will become available after transaction is confirmed on blockchain and Chirp platform validates the transaction”
* update Miner NFT logo
* improve performance of NFT scanner for minimize time to discovery bought and burned NFTs

</details>

<details>

<summary>Beta release 0.29.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FE8ZGxOjCuENTuJbFbJNU%2Fimage.png?alt=media\&token=796d58f9-0b14-485f-b721-2c7ad6527ef5)

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FKwaqJQFOcfdpYR0Mbeca%2Fimage.png?alt=media\&token=c62bc001-36c7-4b67-8d9d-89beedf37ce2)

## Features

* Explorer redesign
  * World map for viewing Chirp coverage globally
  * Network stats widgets are added under the map
  * Map scrolling is now easier with a hotkey
  * We've improved the overall look and feel of the platform
* Added new Skyward NFT icon to the Redeem NFT page
* Included Redeem NFT texts and warnings
* Inserted rewards chart on the crypto-explorer
* Rolled out bug fixes for pings/tx/rx on the crypto-explorer
* Introduced device track sorting on the SIM card tracker device page
* Added change password form to settings
* Incorporated a link back to the login page after password changes
* Added password complexity hints to registration and password change forms
* Rolled out backend stability improvements

## Bugfixes

* Fixed a bug linking to the Chirp platform after email confirmation
* Fixed a bug with shared tracker
* Repaired the map expander block
* Corrected a bug on BFF: batch NFT burn and ordering fewer miners than NFTs burnt
* Fixed tooltip clipping in the first column of the Rewards chart

</details>

<details>

<summary>Beta release 0.28.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FjcVTdcUphti4D9viCQdT%2Fimage.png?alt=media\&token=ebce5fa9-f238-4b9b-9819-639f675146fc)

## Features

**NFT Sale 2.0**

* Redesigned NFT Redeem page
* New page with a list of orders

New Sui wallet widget: Connect your reward wallet to Chirp’s dashboard with our new widget\
Sui wallet verification: Verify your wallet using our new widget\
New non-LoRa devices page: Track devices more easily with new checkpoints on the map\
Revised 'Billing' section:

* 'Redeem NFT' moved to top level, placed after settings
* 'Rewards Wallet' moved to Settings
* 'Data Credits' moved to Settings
* 'Orders Table' moved to 'Redeem NFT' page

Added spacing before 'Docs' and 'Explorer' page (same vertical spacing as between 'Sim Cards' and 'Billing')\
Improved Leak Sensor Widget\
Improved Door Open Sensor Widget\
Share device button is now visible\
Split and refactor sidebar menu: split menu into sections with a separators\
Add Terms of Use and Privacy Policy pages to [docs.chirptoken.io](http://docs.chirptoken.io/)\
Support request widget is now available in the sidebar and new device request form you can find at the settings tab

*Firmware release 1.0.215*

* Gateway UI: Added a switch for turning on/off gateway LEDs to settings page
* Gateway UI: Added firmware update feature to settings page
* Firmware: Restore LoRaWAN frequency plan after firmware upgrade
* Firmware: Improved network connection to Chirp servers for better gateway online uptime

## Bugfixes

* Mining Board: Payments displayed for unfinished epochs
* Fixed device table sorting by status bug
* Password requirements are now checked on the frontend
* Mobile: Added wallet connection warning popup on Gateways page
* Login UI: Fixed issue where sign-up/sign-in pages weren't found under signed-in user
* Fixed bug on custom date range for devices
* Fixed display issue with full-screen map
* Battery widget: Fixed graph displaying data of battery with 0%
* Crypto Explorer: Fixed alignment issue with epoch change timer during epoch change
* Crypto explorer: Adaptive widget for epochs
* Fixed typo in email confirmation message
* Fixed issue with Device Log entry opening on each log page
* Gateway page: app crash in some cases
* Fixed map expander block in adaptive mode

</details>

<details>

<summary>Beta release 0.27.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FzYICKAPVUa02QyNSSecK%2Fimage.png?alt=media\&token=96d96aab-b6ea-4fa4-8833-666502777fec)

## Features

New sign-up, sign-in, social sign-in, forgot password and verify e-mail pages have been added.

Mining Board:

* A Network Keepers address for rewards has been added for users who haven't connected their Sui wallet to their Chirp account yet.

Crypto Explorer:

* Links in the transaction block digest have been updated to [suiscan.xyz](https://suiscan.xyz/testnet/home).
* Classic pagination has been added to Crypto Explorer.
* Speed up transactions and payments processing.

Added links to Terms of Use and Privacy Policy:

* Links to Terms of Use and Privacy Policy have been added to the Sign In screen.
* A mandatory radio button stating 'I accept the Terms of Use' has been added to the Sign Up screen.
* A mandatory radio button stating 'I accept the Privacy Policy' has been added to the Sign Up screen.

A new Chirp sim card page has been added at [chirpwireless.io](http://chirpwireless.io/).

## Bugfixes

The following issues have been resolved:\
Mining Board: Incorrect order of epochs on the Graph\
Reward Wallet: The current balance of the wallet always showed 0\
Rewards: Last Payment and Total always displayed as 0\
Rewards: Rewards payments were being made for non-approved gateways\
Mobile: Scroll function was not working on the Rewards details page\
Mobile: The wallet connection warning popup was missing on the Gateways page\
Mobile: Fixed the placement of the 'Device is supported in beta' widget\
Mobile: Fixed the Graphs axes artifacts issue\
Sim Card: Fixed a bug that caused page crashes for some sim cards\
No data was being displayed for shared devices on the device list page.\
Verify e-mail link was incorrect\
Typo in e-mail confirmation message

</details>

<details>

<summary>Beta release 0.26.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FeikrIZ3qUOUvxebO4iNH%2Fimage.png?alt=media\&token=a9e8d1e4-0277-4e80-ace6-e8a174ada6cf)

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FRASTUSUGAQnExitlfinI%2Fimage.png?alt=media\&token=51c45c79-3ece-4d6d-b572-0bfce7db4983)

## Features

Testnet Smart Contracts Created:

* A 'Chirp' smart contract has been created. This contract encompasses the complete Chirp Token contract. It allows the minting of tokens and their distribution through liquidity pools according to tokenomics.
* A 'Ledger' smart contract has been developed. This contract functions as a decentralized mechanism that frequently stores the rewards information into the IPFS, utilizing IPFS CID. This CID consists of all the essential information related to the reward calculations conducted during the Chirp Epoch, which is then subsequently logged into the SUI Blockchain.

Decentralized Reward Distribution Mechanism for testnet:

* Rewards are determined based on miner availability.
* A 'reward\_bundle' is assembled, including gateway identifiers, availabilities, and token reward stakes, which is then stored in IPFS.
* This data is recorded into the SUI Blockchain using the IPFS CID.
* Data is retrieved from the SUI Blockchain to facilitate payout transactions.
* Rewards are distributed to miners.

New public page: Explorer ([chirptoken.io/explorer/](http://chirptoken.io/explorer/))

* An epoch loading bar displays the current state of the ongoing epoch.
* "Token supply" and "token supply %" charts show the quantity and percentage of the current minted and total supplies.
* A list of transactions displays all the Chirp transactions on the network, including links to the transaction block digest on the Sui explorer.
* A list of payments shows all Chirp payments with links to transaction blocks on the Sui explorer.

Mining Board:

* A map indicating user miner locations.
* A list of user miners.
* A "Testnet" alert indicating the current Testnet stage.
* An epoch loading bar shows the current state of the ongoing epoch.
* A histogram displays reward history for each epoch.
* A historical list of rewards.
* An alert is shown for miner purchase if no miners are registered to the user.

Gateway page: A new histogram "Rewards" shows rewards for a specific gateway.

New "copy wallet address" button added to the reward wallet and "add Chirp miner" pages.

Inner objects in device event logs are now unpacked.

## Bugfixes

Style bug with the search-on-map field

</details>

<details>

<summary>Beta release 0.25.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FdGSi0l6q4iNBnMqtC79h%2Fimage.png?alt=media\&token=1a9ca8d6-4d0c-4ff0-b557-38b8c9aa76c1)

### Features

Devices and gateways tables performance optimization\
New “add reward wallet” widget to Gateways and Gateway pages. Show this message only if user has miners and didn’t connect the wallet\
“Adding a wallet for rewards” step in “add Chirp Miner” process\
Remove links to Terms of Use and Privacy Policy from sidebar, its still available at login/sign-up page.

### Bugfixes

Mobile: Small zoom after any entry field change

</details>

<details>

<summary>Beta release 0.24.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2F7gLasAv5eZMI16asx8Cb%2Fimage.png?alt=media\&token=e81d29fd-e2b8-4c28-80ed-f3c5c2a90cd1)

### Features

Changelog posts are now available for your feedback. Feel free to share your impressions with us.\
We've added a search by location field to the map for User Board and Explorer.\
Loaders have been added to the add and delete device pages to prevent warnings.\
The Explorer now shows the ping distance.\
The Terms of Use and Privacy Policy are now hosted at [docs.chirpwireless.io](http://docs.chirpwireless.io/).

### Bugfixes

Fixed a bug in device sharing table not updating after un-sharing the device\
Mobile version: Small zoom after any entry field change\
Fixed coverage layers in explorer for gateways without any displayed coverage\
Fixed a bug with wrong date setting in calendar caused app crash

</details>

<details>

<summary>Beta release 0.23.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2F9utkIFkal0VkduvYDtVs%2Fimage.png?alt=media\&token=fecaa1c2-23a0-42e0-8399-e71cc3b315b0)

### Features

New feedback widget: feel free to let Chirp team know what you like and what we can improve\
“Add LoRa device” dialog supports adding locations and sub-locations for device placement\
Added search by model for “Add LoRa device” dialog\
Performance improvement: coverage map layer now displays much faster\
New mobile view for settings and device pages\
Update cloud infrastructure services

### Bugfixes

Explorer map was hidden on mobile devices\
Locations and sub-locations expanding in drop-down lists crashed if the height of the content exceeds the screen limits\
Email didn’t received if email address changed in profile settings page\
Availability chart in gateway page now displays absolute values for current time, not only for full day\
User Board: Coverage layer loaded and displayed by default\
User Board: Dashboard not available in Safari browser\
Widgets: “Show alert” button didn’t switch alerting mode,\
Widgets: Status widget state changed by selecting Today filter in calendar\
Widgets: Open times widget calculation fix if device was reset

</details>

<details>

<summary>Beta release 0.22.0</summary>

### Features

Mobile dashboard reworked, now provided more user-friendly pages:

* Device page
* Gateway page
* Devices table

Device widgets reworked, now it supports displaying values for events:

* first event for period
* last event
* average of events
* delta of events

Removed fields Gateway, AllGateways for non-lora devices.

*Chirp Miner*\
Firmware release v.1.0.177\
Implement firmware update features (will be implemented in gateway page soon)\
Update Wisgate UI frontend (fix spaces validation in the SSID bug)

### Bugfixes

The latest information of graphs in gateway section are not showing current date, they show the day before, its shifted with -1 days\
The appearance of TX/RX numbers doesn’t display the amount of y-axis correctly, after reaching 100k one day, is has shown 10k\
Device status didn’t update in some cases\
Non-lora GPS trackers now support displaying tracks on map at device page

</details>

<details>

<summary>Beta release 0.21.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FBnPy16gdymmrBpvzjbjs%2Fimage.png?alt=media\&token=bcafd322-4f3e-46ad-8a04-577ca8cd4933)

### Features

Rewards wallet connection flow is reworked, so you can simply connect your Sui wallet to Chirp for rewards\
New information on device page map: new icons, distance measurement (ruler), RSSI metric. Now map supports terrain and satellite view layers\
Explorer now has slider for upper information blocks\
Notifications: if Chirp Gateway is unavailable more than 1 hour or it became online - you’ll receive e-mail and notification to your profile

*3rd Party Gateways. Now Chirp supports LoRaWAN network servers in regions:*

* AS923
* AS923-2
* AU915-0
* EU433
* EU868
* IN865
* KR920
* RU864
* US915-0
* US915-1

Add Gateway EUI in gateway’s settings tab

*New supported vendors and devices:*

* Adeunis (18 devices)
* Bosch (2 devices)
* Сomtac (4 devices)
* Decentlab GmbH (45 devices)
* Digital Matter Pty Ltd (5 devices)
* GWF Messsysteme AG (2 devices)
* IMST GmbH 3 (devices)
* ioThings (1 device)
* KELLER Druckmesstechnik AG (4 devices)
* Laird Connectivity, Inc. (4 devices)
* MCCI Corporation (17 devices)
* Mcf88 SRL (16 devices)
* Enginko SRL (18 devices)
* Multi-Tech Systems, Inc. (1 device)
* Netvox Technology Co. (128 devices)
* nke WATTECO (22 devices)
* Onethinx B.V. B.V. (1 device)
* OrbiWise (1 device)
* Parametric Engineering GmbH (2 devices)
* Radio Bridge Inc. (21 devices)
* STMicroelectronics International NV (7 devices)
* STREGA (5 devices)
* TalkPool AB (6 devices)
* Tektelic Communications Inc. (25 devices)

### Bugfixes

Fix search form for 4G devices models

</details>

<details>

<summary>Beta release 0.20.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FpWsK31XInkLCJctJdYSv%2Fimage.png?alt=media\&token=cd358dfc-89bb-463f-8085-e0b8a5490ac6)

### Features

“Add to favorites” button for shared devices\
Move the gateway registration flow to the new design

*New icons on the device page map for 3 scenarios:*

* device has its own coordinates
* device has location / sub-location
* device has location history

Move devices latitude and longitude from widgets to other metrics\
Add battery percentage to device list\
QR code scan for DevEUI in “add device”\
“Add gateway” flow now support both types of gateways: Chirps and 3rd Party\
Font sizes got bigger for better accessibility\
Synchronize table designs on device and gateway lists, device log, orders and sim cards pages

*Cellular GPS devices are now supported by Chirp platform!*\
Cellular device are displayed on maps\
All cellular device parameters are displayed on device page as text widgets\
Cellular devices can now be shared\
Cellular device settings tab in device view

* Name
* Model
* Unique ID

*3rd Party Gateways:*\
3rd Party gateway registration is now available\
3rd Party gateway overview and settings pages

*Chirp Miner:*\
Firmware release v.1.0.156\
Fixed resolve dns if chirp dns was lost\
Set AP mode only if user doesn’t configured wifi connection. Add wifi AP trace to gateway logs\
Add new frontend (support regions configuration)\
Firmware release version is shown in Gateway Web UI\
Fixed dhcp options (fix connect to webgui using wifi AP)\
Firmware update process is scheduled every 10 minutes 3 times if it fails

### Bugfixes

Device log tags rescaling\
Devices measurements diffs in events and widgets are now fixed\
Remove (0,0) device coordinates from tracks in empty events\
Scrolling issue on main device details page\
New gateway configs received if gateway reset or reflashed\
When scrolling in device log, the rounding at the top disappears\
As the screen size increases, the grid with devices changes greatly and large horizontal margins appear\
There are no rounded corners on the map\
The date of the last connection of the device is different in the list of devices and the detailed page of the device\
On all graphs, time has moved far to the right towards the edge\
When changing the name of the device, it changes only after reloading the page

*Dragino Door Sensor:*\
There is no battery data on the overview page, although there is some in the logs\
Added horizontal scrolling in logs\
There are no DOOR\_OPEN\_STATUS values and the text is also cut off\
Dragino door sensor placement on map\
Dragino door sensor events and widgets improved

*User board:*\
“Show all” button in Favorite devices didn’t work

</details>

<details>

<summary>Alpha release 0.14.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FF86B9iUJq4PXqlY60sWe%2Fimage.png?alt=media\&token=a14fde01-4a72-4777-8ecd-d42f953eec71)

### Features

On device board, we split widgets into main and other and added lots of new widgets, now for every parameter that device provides.\
Verified and unverified devices: we are adding more and more devices and once the devices has been checked physically, devices for which widgets haven’t been tested, are market unverified / beta.\
Some new Sensecap T1000 widgets are available on device page.\
“Add device” redesign with new validations.\
GPS tracks improvements.

### Bugfixes

Sensecap T1000 chaotic map display fixed.\
Gateway registration flow minor bugs.\
GPS devices with coordinates and no locations set now displayed on map correctly.\
Wisgate UI registration flow minor bugs.\
Some device log events with state is not displayed.\
Some device log events with multiple gateways sources were smashed in one string.\
Device Overview tab now fetch recent events and widgets are updating correspondingly.\
Explorer - gateways with online status now highlighted.\
Google authentication for site redirected to outdated page, now its fine\
Download logs were limited for a hundred events.

</details>

<details>

<summary>Alpha release 0.13.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FqE5YjOwDkbvtSrrSBzxR%2Fimage.png?alt=media\&token=19df77a2-2f14-48b5-b5a7-e661c533e711)

### Features

Explorer page has been redesigned without header for a more spacious map experience\
Mobile view improvements\
Sim card table improvements (different header, column titles, measurements)\
Adding a LoRaWAN device to the platform has been simplified and half-automated\
Device log is now clickable and can show entire message contents\
Platform backend can now service 4g GPS devices\
Lots of Dragino devices added to the platform (D20-LB, DDS45-LB, DSO3A-LB, GroPoint Air, LA66, LDS02, LDS12-LB, LHT52, LHT65N, LT-22222-L, LTC2, LWL02, PS-LB, S31-LB, SE01-LB, SPH01-LB, SW3L-LB, TrackerD, WLO3A-LB,)

### Bugfixes

A number of design fixes (icons, fonts, shadows, element sizes)\
Removing device from favorites throws an error\
Cant select sub-location in add device modal\
Dragino LDS02 status update delays on graphs\
Shared device update returns 404

</details>

<details>

<summary>Alpha release 0.12.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2Fd3oVtEBaTUhkGxKydGlA%2Fimage.png?alt=media\&token=17622565-bf16-4df5-a8fc-5d6ca1f9600a)

### Features

Devices

* T1000 device added
* Abeeway trackers added
* Compact Tracker
* Industrial Tracker
* Micro Tracker
* Smart Badge
* RAK7201 device added

Dashboard

* Gateways list and gateway page are now available
* Device and gateway settings tabs are added to device/gateway page
* Device log pagination improved for faster page switching
* “Dashboard” page in old design was replaced with user board, device and gateway pages

### Bugfixes

Mobile view blocked by menu\
Map point is not displayed if sublocation is not set\
Tablet layout: mobile version improvements\
AS923 LoRaWAN frequency fixed

</details>

<details>

<summary>Alpha release 0.11.0</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FudYpEhU1ffUViarT06u5%2Fimage.png?alt=media\&token=35b72344-edc8-4b49-9b26-5408580806d5)

### Features

User board redesign

* Header in dashboard is replaced with a fixed left sidebar
* New sorting of Items on the left panel in your dashboard, expandable categories
* Complete layout change on all pages
* Frontend cache system implemented for fast and stable dashboard response

Explorer: Detailed gateway sidepanel. By clicking on the hex then gateway you will see new graphs with gateway pings, gateway availability\
Device page: Device measurement units can be switched, e.g. Celsius / Fahrenheit\
Device page: Device graph can be hidden\
Device page: Device widget ‘show alert’ toggle\
Backend feature - Device parameters map is implemented to display more device data on frontend\
For added security Cloudflare is enabled on chirpwireless.io

### Bugfixes

Device list: no location is displayed if sublocation is not set\
Device list: no scroll on small screens\
Device log: pagination buttons not hidden when less than 1 page worth of logs

</details>

<details>

<summary>Alpha release 0.10.0</summary>

### Features

Frontend

* New group widget
* 'All devices' filter tab
* Filter gateways from device list
* New calendar with quick filtering buttons for Today, Week, Month
* New device parameters tooltip in a device log
* More parameters are now visualized

Platform

* New device supported: Elsys EMS
* New device supported: Dragino LHT65N-E31F

Hardware

* New firmware v. 1.121 update for all online gateways in production
* 'Watchdog' feature

### Bugfixes

Device page

* Fix device log pagination pages count
* Dragino sensor widget shows wrong state
* Dragino sensor widget error

Gateway

* Transmission breaks in current firmwa

</details>

<details>

<summary>Alpha release 0.9.1</summary>

### Bugfixes

* Explorer sidebar not switching when choosing a different hex fix
* Device log filter button is hidden fix
* Filter GPS Tracker path with (0,0) coordinates
* Pings require clicking a gateway in hex fix
* Changelog entry for sprint 1 fix
* Miner sidebar displays wrong data on user-board/devices pages fix

</details>

<details>

<summary>Alpha release 0.9</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2Fvb6yanEL6RWM4BRzsoEu%2Fimage.png?alt=media\&token=047e5872-7819-4690-ac44-80cc70297bf7)

### Features

Ambassador program has been launched, ambassador page is up on chirptoken.io\
New gateway firmware 1.116 in production

* “Watchdog” feature is implemented for better gateway resilience
* A number of gateway security features has been implemented
* Gateway starts out-of-the-box with Ethernet connection
* Gateway services refactored for better performance
* Traffic consumption reduced to approx. 6 Gb monthly for more affordable gateway mobile connectivity

Devices

* Seedstudio T1000 tracker added
* New device adding made easier with standardised device config format

User board

* Text widget
* Device log sorting
* Device log filtering
* Device settings
* Group widget
* Empty state overview

### Bugfixes

* Expiring token issue fixed
* Coverage calculation issues fixed
* A number of gateway start-up issues fixed

Infrastructure

* All resources migrated to Google Cloud
* AWS resources eliminated
* GKE alerting is live

</details>

<details>

<summary>Alpha release 0.8</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2F4Qb675Irrk3FYnKWRJrs%2Fimage.png?alt=media\&token=48da094a-9d64-4aa0-9bb0-00ba1a5a7171)

### Features

* Coverage radius calculation is now considered based on GPS tracker data
* Coverage is now calculated regularly: radius once a week, gateway coverage per gateway setup
* UI Kit has been created to speed up frontend development
* Band choice is now available in ‘Add Device’ dialog
* Adding a new device into supported devices can be requested via ‘Add Device’ dialog
* Adding device on backend is made simpler
* Internal architecture optimization
* Pings between gateways are released to production
* Network usage reduced from ca. 15 Gb per month to ca. 6 Gb per month
* First Chirp SIMs are active with first Keeper tariff
* Chirp fleet management solution is live
* IoT wiki is live
* Chirpwireless.io landing page is live
* SEO optimization

</details>

<details>

<summary>Alpha release 0.75</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2Fhq85VVkso1FkRNa7Hsz7%2Fimage.png?alt=media\&token=faa725d6-353c-4826-9893-fa78ccd589c3)

### Features

* Dashboard release
* Billing & PayPal are now supported
* Data credits are now available on the platform
* List with orders has been extended with Tracking Info
* Dragino LDS02 stability tests to ensure stable device
* Gateway 915 MHz stability tests
* Production cluster filesystem backup has been automated

</details>

<details>

<summary>Alpha release 0.7</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FbKyg2PutkTDmILOWYS9a%2Fimage.png?alt=media\&token=6d392569-8340-49f0-bedb-cb2d67d0e604)

### Features

* Add 'gateway' category in left sidebar
* Remove financial graph
* 'How to' articles
* Move logout button in adaptive to hamburger menu
* Remove 'all' layer on map
* Wi-fi stabilization
* Main wallet protection
* Automate rewarding service calls
* Confirmation for gateway registration
* Final production registration
* Reward gateway owners on testnet
* Display wallet balance in header

</details>

<details>

<summary>Alpha release 0.6</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FklPMZkwxw6LzEwx46OFU%2Fimage.png?alt=media\&token=4e08ca14-4c71-4e17-bdd4-a49086ed824f)

### Features

* Rewarding service
* Backend support for different frequencies
* Gateway reset procedure
* Syscheck deploy
* Production docusaurus
* Adaptive design for gateway registration

</details>

<details>

<summary>Alpha release 0.52</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2Fa3AVVIEk0LtklUbHHuZm%2Fimage.png?alt=media\&token=7c9de5d2-22d9-468b-9f9f-6c35ea690044)

### Features

* New firmware distribution system
* Factory gateway initialization process
* Wallet connect on Chirp frontend
* IoT web platform adaptive design
* Android app MVP
* Feature request form

</details>

<details>

<summary>Alpha release 0.5</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2Fu1qLhqWRFuZrmjo7HXyG%2Fimage.png?alt=media\&token=5efa7cef-1671-43b4-acf4-d394bf95eba0)

### Features

* New gateway hardware platform by RAK
* NFT sale
* NFT sale security audit
* Integration with Opensea
* Device sharing over frontend
* Production platform in Chirp cloud
* Rewarding concept

</details>

<details>

<summary>Alpha release 0.45</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FAu7RDtSjNwT2LJcOPBVY%2Fimage.png?alt=media\&token=97248cb7-e23c-479e-b152-03d61212ac77)

### Features

* Coverage map calculation now considers topographic map
* Coverage map now includes verification of map by GPS devices (coverage will be displayed in locations where GPS tags have sent LoRa frames)
* Icon grouping on map
* Google authentication
* Android app prototype
* Flexible device configs
* Version monitoring on gateway

</details>

<details>

<summary>Alpha release 0.4</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2F2Emh4TbwKO5OGghWVzjL%2Fimage.png?alt=media\&token=6c4c285c-0e78-4019-93ae-b153e1f1dd82)

### Features

* Display GPS tracker data in frontend
* Mesh prototype
* Delete devices over frontend
* Camera feed prototype
* New LoRa shield with timestamping / geolocation support

</details>

<details>

<summary>Alpha release 0.3</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2Frs2iQeEp2LEv8Me6LSN0%2Fimage.png?alt=media\&token=0c09afc2-81f0-4b5f-b72e-68904d89b472)

### Features

* New firmware features for gateway registration
* Power meter support
* User avatar deletion
* Search in my iot table
* Added network graphs
* Back button in right sidebar
* Merged profile, change password, language tabs
* Profile tab redesign
* 'add location' tab redesign
* Display read notifications in notifications list

</details>

<details>

<summary>Alpha release 0.2</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FXIx8nMAo5R6XjtftNJm4%2Fimage.png?alt=media\&token=8a1ac976-3e24-4521-989a-678c726c1408)

### Features

* New landing page
* New 2.4 temperature sensor support
* Seamless transition between ‘My IoT’ and Dashboard
* Added favorite devices
* App header redesign
* Sign in / sign up pages redesign
* Map icons redesign
* Added right sidebar folding

</details>

<details>

<summary>Alpha release 0.1</summary>

![](https://2708052678-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg4r59oNmPCBVuD2cSjqt%2Fuploads%2FmVoC5Vc4MQoqvgWRMAIJ%2Fimage.png?alt=media\&token=cdcfb1a4-ae5b-43f5-a041-eeddf5e38e28)

### Features

* Landing page
* Public coverage map
* Personal area of the website
* Private coverage map
* IoT dashboard
* Device registration
* Gateway registration
* Settings
* Package statistics
* Dark mode!

</details>
