From bf0d380dd29a146bbb40c342ad04190b15f4e7de Mon Sep 17 00:00:00 2001 From: shuvashish76 Date: Fri, 23 Jan 2026 14:41:46 +0530 Subject: [PATCH 1/2] Add AppImage installation instructions Added installation instructions for AppImage using AppMan and AM. --- docs/installation/linux.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/installation/linux.md b/docs/installation/linux.md index ee8f0a70..017029ea 100644 --- a/docs/installation/linux.md +++ b/docs/installation/linux.md @@ -31,6 +31,18 @@ sudo dnf5 install ./libation.rpm --- +### AppImage + +- Install via [AppMan](https://github.com/ivan-hc/AppMan) (rootless) + ```bash + appman -i libation + ``` +- Install via [AM](https://github.com/ivan-hc/AM) + ```bash + am -i libation + ``` +Thanks to Package Forge dev [Samuel](https://github.com/Samueru-sama) for [AppImage](https://github.com/pkgforge-dev/Libation-AppImage) maintenence. + ### Arch Linux ```bash @@ -76,6 +88,7 @@ Pacstall is the AUR Ubuntu wishes it had. It takes the concept of the AUR and pu ```bash pacstall -I libation-deb ``` +Thanks to [Tobias Heinlein](https://github.com/niontrix) for Pacstall package maintenance. --- From c6c3b39e9c1ff83cc9ae6329d6c20a8940143738 Mon Sep 17 00:00:00 2001 From: Robert Date: Tue, 27 Jan 2026 09:06:46 -0500 Subject: [PATCH 2/2] Bug #1578 Adding null checks to the line that's logged with NRE. This bit of code has been untouched for years and is run hundreds of times per day. I'm documenting this suspiciously --- Source/LibationWinForms/Form1.QuickFilters.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/LibationWinForms/Form1.QuickFilters.cs b/Source/LibationWinForms/Form1.QuickFilters.cs index 2d785201..68e78a25 100644 --- a/Source/LibationWinForms/Form1.QuickFilters.cs +++ b/Source/LibationWinForms/Form1.QuickFilters.cs @@ -57,7 +57,7 @@ namespace LibationWinForms private void productsDisplay_InitialLoaded(object sender, EventArgs e) { if (QuickFilters.UseDefault) - performFilter(QuickFilters.Filters.FirstOrDefault().Filter); + performFilter(QuickFilters.Filters.FirstOrDefault()?.Filter ?? ""); } } }