Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
ee4b680
Add carpeater filter UI and functionality to ignore specific repeaters
MrAlders0n Jan 13, 2026
efdff74
Enhance carpeater filter UI with additional information modal and imp…
MrAlders0n Jan 13, 2026
9e8bad8
Refactor carpeater filter UI: enhance checkbox styling and input beha…
MrAlders0n Jan 13, 2026
8a05f00
Refactor carpeater filter UI: update label text and improve checkbox …
MrAlders0n Jan 13, 2026
103aeda
Enhance carpeater filter UI: improve checkmark visibility on load and…
MrAlders0n Jan 13, 2026
d5a1e6c
Update MAX_RX_RSSI_THRESHOLD to improve filtering of close/interferin…
MrAlders0n Jan 13, 2026
3cfa201
Add RSSI validation for carpeater failsafe and enhance carpeater info…
MrAlders0n Jan 13, 2026
6721b1a
Fix carpeater error log to use RSSI drop count instead of packet drop…
MrAlders0n Jan 13, 2026
3aa9df1
Update MAX_RX_RSSI_THRESHOLD to enhance filtering of close/interferin…
MrAlders0n Jan 13, 2026
cefc593
Update carpeater info link to enhance functionality and styling
MrAlders0n Jan 13, 2026
9a6124a
Add event listeners for Carpeater Info modal interactions
MrAlders0n Jan 13, 2026
fbca45e
Enhance Carpeater Info Modal styling for improved visibility and user…
MrAlders0n Jan 13, 2026
6e4bd88
Refactor modal display logic and improve styling
MrAlders0n Jan 13, 2026
3ac3b18
Update MAX_RX_RSSI_THRESHOLD to improve filtering of close/interferin…
MrAlders0n Jan 13, 2026
74daf70
Rename function to improve clarity in carpeater RSSI error logging
MrAlders0n Jan 13, 2026
e4e909f
Update version badge in README to reflect version 1.8.4
MrAlders0n Jan 13, 2026
8a02b45
Update MAX_RX_RSSI_THRESHOLD to enhance filtering of close/interferin…
MrAlders0n Jan 13, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions MeshMapper_WebClient.code-workspace

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MeshCore GOME WarDriver

[![Version](https://img.shields.io/badge/version-1.8.0-blue.svg)](https://github.com/MrAlders0n/MeshCore-GOME-WarDriver/releases/tag/v1.8.0)
[![Version](https://img.shields.io/badge/version-1.8.4-blue.svg)](https://github.com/MrAlders0n/MeshCore-GOME-WarDriver/releases/tag/v1.8.4)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![Platform](https://img.shields.io/badge/platform-Android%20%7C%20iOS-orange.svg)](#platform-support)

Expand Down
4 changes: 3 additions & 1 deletion content/tailwind-in.css
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
@import "tailwindcss";
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
Comment on lines +1 to +3
Copy link

Copilot AI Jan 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This represents a major version downgrade from Tailwind CSS v4.1.18 to v3.4.19. The import syntax has been changed from the v4-style single import to the v3-style triple import pattern. While this change appears intentional and the generated CSS file has been updated to match, this is a significant infrastructure change that could affect future styling. Consider documenting the reason for this downgrade in the PR description or commit message, especially if it's related to compatibility issues or build tool constraints.

Suggested change
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
@import "tailwindcss";

Copilot uses AI. Check for mistakes.
Loading
Loading