bump version, add required Hyprland version

This commit is contained in:
Stanisław Zagórowski 2023-10-24 22:26:33 +02:00
parent 7f1a6c3d6c
commit 2b1abdbf9e
3 changed files with 5 additions and 2 deletions

View file

@ -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.

View file

@ -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]

View file

@ -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()