diff --git a/CHANGELOGS.md b/CHANGELOGS.md index cbddcf7..f6ba853 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -1,5 +1,8 @@ ## Changelogs +## 30 Apr 2024 +- Updated hyprland.sh to install v0.34.0 Hyprland + ## 22 Apr 2024 - Change dotfiles to specific version only as Debian and Ubuntu cant keep up with Hyprland development diff --git a/README.md b/README.md index 13031e6..8a54de8 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@
-### ♨️♨️♨️ ATTENTION ♨️♨️♨️ 06 Dec 2023 -- Recent hyprland release v0.33.0, needed a newer libdrm and Debian dont have newer libdrm yet on their repo. That is why for now, the hyprland version to be installed with this script is v0.32.3 +### ♨️♨️♨️ ATTENTION ♨️♨️♨️ 30 Apr 2024 +- Due to fast development of Hyprland and most up to date requirement of hyprland, Hyprland version to be installed by this script will be older version. For now, the hyprland version to be installed with this script is v0.34.0 ### ♨️♨️♨️ ATTENTION ♨️♨️♨️ 22 Apr 2024 - Pre-configured dotfiles to be downloaded here will be v2.2.6 only diff --git a/install-scripts/00-dependencies.sh b/install-scripts/00-dependencies.sh index 3b8987b..266a591 100755 --- a/install-scripts/00-dependencies.sh +++ b/install-scripts/00-dependencies.sh @@ -53,6 +53,7 @@ dependencies=( libsystemd-dev libtiff-dev libtiffxx6 + libtomlplusplus-dev libudev-dev libvkfft-dev libvulkan-dev diff --git a/install-scripts/hyprland.sh b/install-scripts/hyprland.sh index 65274a4..0eec6be 100755 --- a/install-scripts/hyprland.sh +++ b/install-scripts/hyprland.sh @@ -25,7 +25,7 @@ if [ -d "Hyprland" ]; then rm -rf "Hyprland" 2>&1 | tee -a "$LOG" fi -if git clone --recursive -b v0.32.3 "https://github.com/hyprwm/Hyprland"; then +if git clone --recursive -b v0.34.0 "https://github.com/hyprwm/Hyprland"; then cd "Hyprland" || exit 1 make all if sudo make install 2>&1 | tee -a "$MLOG"; then diff --git a/install.sh b/install.sh index a095472..95eb670 100755 --- a/install.sh +++ b/install.sh @@ -27,9 +27,8 @@ echo printf "\n%.0s" {1..5} echo "$(tput bold)$(tput setaf 3)ATTENTION!!!! VERY IMPORTANT NOTICE!!!! $(tput sgr0)" -echo "$(tput bold)$(tput setaf 7)Recent Hyprland release v0.33.0 needed a newer libdrm $(tput sgr0)" -echo "$(tput bold)$(tput setaf 7)Debian doesn't have the newer libdrm yet on their repo. $(tput sgr0)" -echo "$(tput bold)$(tput setaf 7)For now, the Hyprland version to be installed with this script will be v0.32.3$(tput sgr0)" +echo "$(tput bold)$(tput setaf 7)Due to fast development of Hyprland, Hyprland to be install here would be old version $(tput sgr0)" +echo "$(tput bold)$(tput setaf 7)For now, the Hyprland version to be installed with this script will be v0.34.0$(tput sgr0)" printf "\n%.0s" {1..3} printf "\n%.0s" {1..5}