4 Commits
v1.2.0 ... main

Author SHA1 Message Date
Ben Allfree
b60527d92a fix: ingore @ mention in slash commands (closes #9) 2026-02-18 04:22:38 -08:00
Ben Allfree
06f032476d chore: formatting 2026-02-18 04:19:59 -08:00
Ben Allfree
907f22b22c v1.2.1 2025-12-09 11:26:02 -08:00
Ben Allfree
219dc25925 chore: update module registration and variable naming for consistency 2025-12-09 11:10:54 -08:00
4 changed files with 676 additions and 639 deletions

View File

@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [1.2.1] - 2025-12-09
### Patch
- Updated module registration from `#pragma MPM_MODULE` to `MPM_REGISTER_MESHTASTIC_MODULE` comment directive
- Renamed module variable from `lobbsPlugin` to `lobbsModule` for consistency
## [1.2.0] - 2025-12-09
### Minor
@@ -48,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Session management
- User directory and search functionality
[Unreleased]: https://github.com/MeshEnvy/lobbs/compare/v1.2.0...HEAD
[Unreleased]: https://github.com/MeshEnvy/lobbs/compare/v1.2.1...HEAD
[1.2.1]: https://github.com/MeshEnvy/lobbs/compare/v1.2.0...v1.2.1
[1.2.0]: https://github.com/MeshEnvy/lobbs/compare/v1.1.1...v1.2.0
[1.1.1]: https://github.com/MeshEnvy/lobbs/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/MeshEnvy/lobbs/compare/v1.0.1...v1.1.0

File diff suppressed because it is too large Load Diff

View File

@@ -37,4 +37,4 @@ class LoBBSModule : public SinglePortModule
void sendReply(NodeNum to, const std::string &msg);
};
extern LoBBSModule *lobbsPlugin;
extern LoBBSModule *lobbsModule;

View File

@@ -1,9 +1,14 @@
#pragma once
#define LOBBS_VERSION "1.2.0"
#define LOBBS_VERSION "1.2.1"
#define LOBBS_HEADER "LoBBS v" LOBBS_VERSION "\nCommands:\n"
#include "LoBBSModule.h"
#pragma MPM_MODULE(LoBBSModule, lobbsPlugin)
/**
* This plugin registers a Module with Meshtastic. Modules are the primary way
* to extend Meshtastic with new functionality. Modules are registered with the
* MPM_REGISTER_MESHTASTIC_MODULE comment directive below.
*/
// MPM_REGISTER_MESHTASTIC_MODULE: LoBBSModule, lobbsModule, []