From 748419faa558940dca03a41d09fcc9bb2e1f2106 Mon Sep 17 00:00:00 2001 From: Vaxry <43317083+vaxerski@users.noreply.github.com> Date: Thu, 12 Jun 2025 13:40:55 +0200 Subject: [PATCH] hyprpm: check version and update automatically on add (#10706) ideally should let the user know, but jic also checks for header updates --- hyprpm/src/main.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hyprpm/src/main.cpp b/hyprpm/src/main.cpp index c8b3bce06..47a557e2c 100644 --- a/hyprpm/src/main.cpp +++ b/hyprpm/src/main.cpp @@ -101,9 +101,19 @@ int main(int argc, char** argv, char** envp) { if (command.size() >= 3) rev = command[2]; + const auto HLVER = g_pPluginManager->getHyprlandVersion(); + auto GLOBALSTATE = DataState::getGlobalState(); + + if (GLOBALSTATE.headersHashCompiled != HLVER.hash) { + std::println(stderr, "{}", failureString("Headers outdated, please run hyprpm update.")); + return 1; + } + NSys::root::cacheSudo(); CScopeGuard x([] { NSys::root::dropSudo(); }); + g_pPluginManager->updateHeaders(false); + return g_pPluginManager->addNewPluginRepo(command[1], rev) ? 0 : 1; } else if (command[0] == "remove") { if (command.size() < 2) {