diff --git a/README.md b/README.md index 40c0ca8..e228327 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ # split-monitor-workspaces A small plugin to provide `awesome`/`dwm`-like behavior with workspaces: split them between monitors and provide independent numbering +# Requirements +- Hyprland >= v0.31.0 + # Installing Since Hyprland plugins don't have ABI guarantees, you *should* download the Hyprland source and compile it if you plan to use plugins. This ensures the compiler version is the same between the Hyprland build you're running, and the plugins you are using. diff --git a/hyprload.toml b/hyprload.toml index dadc712..ebd78bd 100644 --- a/hyprload.toml +++ b/hyprload.toml @@ -1,6 +1,6 @@ [split-monitor-workspaces] description = "Split monitor workspaces" -version = "1.0.0" +version = "1.1.0" author = "Duckonaut" [split-monitor-workspaces.build] diff --git a/src/main.cpp b/src/main.cpp index 446876a..6003a9a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -182,7 +182,7 @@ APICALL EXPORT PLUGIN_DESCRIPTION_INFO PLUGIN_INIT(HANDLE handle) e_monitorAddedHandle = HyprlandAPI::registerCallbackDynamic(PHANDLE, "monitorAdded", refreshMapping); e_monitorRemovedHandle = HyprlandAPI::registerCallbackDynamic(PHANDLE, "monitorRemoved", refreshMapping); - return {"split-monitor-workspaces", "Split monitor workspace namespaces", "Duckonaut", "1.0"}; + return {"split-monitor-workspaces", "Split monitor workspace namespaces", "Duckonaut", "1.1.0"}; } APICALL EXPORT void PLUGIN_EXIT()