mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-18 07:55:06 +00:00
Update service IDs
This commit is contained in:
parent
a34dcbd13e
commit
9dd0503498
@ -17,7 +17,7 @@ constexpr auto* TAG = "gps_settings";
|
||||
|
||||
// Storage key for the persisted configuration file (services would use their own service ID for
|
||||
// this; gps_settings has no service backing it, so it defines its own).
|
||||
constexpr auto* GPS_SETTINGS_STORAGE_ID = "gps";
|
||||
constexpr auto* GPS_SETTINGS_STORAGE_ID = "tactility.gps";
|
||||
|
||||
// region Configuration persistence
|
||||
|
||||
|
||||
@ -329,7 +329,7 @@ std::shared_ptr<AudioService> findAudioService() {
|
||||
}
|
||||
|
||||
extern const ServiceManifest manifest = {
|
||||
.id = "Audio",
|
||||
.id = "tactility.audio",
|
||||
.createService = create<AudioService>
|
||||
};
|
||||
|
||||
|
||||
@ -252,7 +252,7 @@ std::shared_ptr<DevelopmentService> findService() {
|
||||
}
|
||||
|
||||
extern const ServiceManifest manifest = {
|
||||
.id = "Development",
|
||||
.id = "tactility.development",
|
||||
.createService = create<DevelopmentService>
|
||||
};
|
||||
|
||||
|
||||
@ -280,12 +280,12 @@ void DisplayIdleService::reloadSettings() {
|
||||
|
||||
std::shared_ptr<DisplayIdleService> findService() {
|
||||
return std::static_pointer_cast<DisplayIdleService>(
|
||||
findServiceById("DisplayIdle")
|
||||
findServiceById("tactility.displayidle")
|
||||
);
|
||||
}
|
||||
|
||||
extern const ServiceManifest manifest = {
|
||||
.id = "DisplayIdle",
|
||||
.id = "tactility.displayidle",
|
||||
.createService = create<DisplayIdleService>
|
||||
};
|
||||
|
||||
|
||||
@ -193,7 +193,7 @@ std::shared_ptr<EspNowService> findService() {
|
||||
}
|
||||
|
||||
extern const ServiceManifest manifest = {
|
||||
.id = "EspNow",
|
||||
.id = "tactility.espnow",
|
||||
.createService = create<EspNowService>
|
||||
};
|
||||
|
||||
|
||||
@ -113,7 +113,7 @@ public:
|
||||
};
|
||||
|
||||
extern const ServiceManifest manifest = {
|
||||
.id = "KeyboardIdle",
|
||||
.id = "tactility.keyboardidle",
|
||||
.createService = create<KeyboardIdleService>
|
||||
};
|
||||
|
||||
|
||||
@ -85,7 +85,7 @@ void MemoryCheckerService::onTimerUpdate() {
|
||||
}
|
||||
|
||||
extern const ServiceManifest manifest = {
|
||||
.id = "MemoryChecker",
|
||||
.id = "tactility.memorychecker",
|
||||
.createService = create<MemoryCheckerService>
|
||||
};
|
||||
|
||||
|
||||
@ -140,7 +140,7 @@ void RtcTimeService::onStop(ServiceContext& serviceContext) {
|
||||
}
|
||||
|
||||
extern const ServiceManifest manifest = {
|
||||
.id = "RtcTime",
|
||||
.id = "tactility.rtctime",
|
||||
.createService = create<RtcTimeService>
|
||||
};
|
||||
|
||||
|
||||
@ -97,7 +97,7 @@ bool ScreenshotService::isTaskStarted() {
|
||||
}
|
||||
|
||||
extern const ServiceManifest manifest = {
|
||||
.id = "Screenshot",
|
||||
.id = "tactility.screenshot",
|
||||
.createService = create<ScreenshotService>
|
||||
};
|
||||
|
||||
|
||||
@ -359,7 +359,7 @@ public:
|
||||
};
|
||||
|
||||
extern const ServiceManifest manifest = {
|
||||
.id = "Statusbar",
|
||||
.id = "tactility.statusbar",
|
||||
.createService = create<StatusbarService>
|
||||
};
|
||||
|
||||
|
||||
@ -1797,7 +1797,7 @@ esp_err_t WebServerService::handleAssets(httpd_req_t* request) {
|
||||
}
|
||||
|
||||
extern const ServiceManifest manifest = {
|
||||
.id = "WebServer",
|
||||
.id = "tactility.webserver",
|
||||
.createService = create<WebServerService>
|
||||
};
|
||||
|
||||
|
||||
@ -551,7 +551,7 @@ public:
|
||||
} // namespace
|
||||
|
||||
extern const ServiceManifest manifest = {
|
||||
.id = "wifi",
|
||||
.id = "tactility.wifi",
|
||||
.createService = create<WifiService>
|
||||
};
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user