diff --git a/CHANGELOG.md b/CHANGELOG.md index c042815..2821202 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ See [issues](https://github.com/archlinux-downgrade/downgrade/issues) +## [v11.4.1](https://github.com/archlinux-downgrade/downgrade/compare/v11.4.0...v11.4.1) + +- [FIX] v11.4.0 installed the default configuration to `/downgrade` instead of + `/etc/xdg/downgrade` by mistake. If you installed that version, remove that + file after upgrading to v11.4.1+. + ## [v11.4.0](https://github.com/archlinux-downgrade/downgrade/compare/v11.3.0...v11.4.0) - [NEW] Add `--unignore` to reverse `IgnorePkg` additions diff --git a/Makefile b/Makefile index a773398..b86319d 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,7 @@ PREFIX ?= /usr/local LOCALEPREFIX ?= $(PREFIX)/share/locale MANPREFIX ?= $(PREFIX)/share/man SCRIPTS ?= $(shell find bin -type f -executable -printf "%f\n") +XDGPREFIX ?= /etc/xdg .PHONY: install install: diff --git a/bin/downgrade b/bin/downgrade index 28d038e..4cd4f5a 100755 --- a/bin/downgrade +++ b/bin/downgrade @@ -529,7 +529,7 @@ DOWNGRADE_FROM_ALA=1 DOWNGRADE_FROM_CACHE=1 DOWNGRADE_MAXDEPTH=1 DOWNGRADE_CONF="/etc/xdg/downgrade/downgrade.conf" -DOWNGRADE_VERSION="11.4.0" +DOWNGRADE_VERSION="11.4.1" DOWNGRADE_IGNORE="prompt" DOWNGRADE_TO_LATEST=0 DOWNGRADE_TO_OLDEST=0