This commit is contained in:
Vaxry 2025-12-01 16:59:11 +00:00
parent 1bfce2af12
commit e36d6ca093
Signed by: vaxry
GPG key ID: 665806380871D640
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ pkg_check_modules(hyprpm_deps REQUIRED IMPORTED_TARGET tomlplusplus hyprutils>=0
find_package(glaze QUIET)
if (NOT glaze_FOUND)
set(GLAZE_VERSION v5.1.1)
set(GLAZE_VERSION v6.1.0)
message(STATUS "glaze dependency not found, retrieving ${GLAZE_VERSION} with FetchContent")
include(FetchContent)
FetchContent_Declare(

View file

@ -80,7 +80,7 @@ SHyprlandVersion CPluginManager::getHyprlandVersion(bool running) {
const auto HLVERCALL = running ? NHyprlandSocket::send("j/version") : execAndGet("Hyprland --version-json");
auto jsonQuery = glz::read_json<glz::json_t>(HLVERCALL);
auto jsonQuery = glz::read_json<glz::generic>(HLVERCALL);
if (!jsonQuery) {
std::println("{}", failureString("failed to get the current hyprland version. Are you running hyprland?"));