Fixed package name for libdisplay-info2 failed to install

On branch development
 Your branch is up to date with 'origin/development'.

 Changes to be committed:
	modified:   CHANGELOGS.md
	modified:   install-scripts/00-dependencies.sh
This commit is contained in:
Don Williams 2025-12-10 16:55:30 -05:00
parent 9281ac4295
commit cb1250ce8d
2 changed files with 134 additions and 128 deletions

View File

@ -6,7 +6,10 @@
- Hyprland Build to v0.52.2
- Thanks entirely to @sdegler
- Fixed:
- `qt5-style-kvantum-themes` failed to install Wrong package name
- `qt5-style-kvantum-themes` failed to install
- Wrong package name it's `qt-style-kvantume-themes`
- `libdisplay-info2` failed to install
- New package name: `libdisplay-info3`
## 10 October 2025

View File

@ -110,7 +110,7 @@ hyprland_dep=(
binutils
libc6
libcairo2-dev
libdisplay-info2
libdisplay-info3
libdrm2
libjpeg-dev
libjxl-dev
@ -140,7 +140,10 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Change the working directory to the parent directory of the script
PARENT_DIR="$SCRIPT_DIR/.."
cd "$PARENT_DIR" || { echo "${ERROR} Failed to change directory to $PARENT_DIR"; exit 1; }
cd "$PARENT_DIR" || {
echo "${ERROR} Failed to change directory to $PARENT_DIR"
exit 1
}
# Source the global functions script
if ! source "$(dirname "$(readlink -f "$0")")/Global_functions.sh"; then