This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
1.6.0 - COMPFY UPDATE
Changelogs
- Moved all changes from
compfy
branch to main. - See Full Changelog
Issues
Nothing Here!
You can get this release using any of these methods:
Building Manually
$ meson setup --buildtype=release . build
$ ninja -C build
$ ninja -C build install
Arch Linux or other Arch derivatives
paru -S compfy
or
yay -S compfy
NixOS Stable (in either of the positions shown above)
(picom.overrideAttrs (oldAttrs: rec {
pname = "compfy";
version = "1.6.0";
buildInputs = [
pcre2
]
++
oldAttrs.buildInputs;
src = pkgs.fetchFromGitHub {
owner = "allusive-dev";
repo = "compfy";
rev = version;
hash = "sha256-IbU1nuDp6ddS3I6rHDXfR/zbfk8WUNPZd7TYnOa2/2o=";
};
postInstall = '''';
}))
Full Changelog: 1.5.0...1.6.0