v0.7.37 - Enhanced admin interface with sliding sidebar navigation, moved dark mode and logout to sidebar footer, improved button styling consistency

This commit is contained in:
Your Name
2025-10-22 12:43:09 -04:00
parent 78d484cfe0
commit 17b2aa8111
7 changed files with 104 additions and 69 deletions

File diff suppressed because one or more lines are too long

View File

@@ -10,10 +10,10 @@
#define MAIN_H
// Version information (auto-updated by build system)
#define VERSION "v0.7.36"
#define VERSION "v0.7.37"
#define VERSION_MAJOR 0
#define VERSION_MINOR 7
#define VERSION_PATCH 36
#define VERSION_PATCH 37
// Relay metadata (authoritative source for NIP-11 information)
#define RELAY_NAME "C-Relay"

View File

@@ -25,6 +25,9 @@ int validate_timestamp_range(long since, long until, char* error_message, size_t
int validate_numeric_limits(int limit, char* error_message, size_t error_size);
int validate_search_term(const char* search_term, char* error_message, size_t error_size);
// Forward declaration for monitoring function
void monitoring_on_subscription_change(void);
// Global database variable
extern sqlite3* g_db;