From 78b1d32e6901818e9b24379ba672e501ec755120 Mon Sep 17 00:00:00 2001 From: David Young Date: Wed, 29 Apr 2026 15:00:05 -0600 Subject: [PATCH] fix versions --- .claude/settings.local.json | 8 -------- compile.conf | 2 +- hampackupdate | 21 +++++++++++++++++++-- 3 files changed, 20 insertions(+), 11 deletions(-) delete mode 100644 .claude/settings.local.json diff --git a/.claude/settings.local.json b/.claude/settings.local.json deleted file mode 100644 index 6b65416..0000000 --- a/.claude/settings.local.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "permissions": { - "allow": [ - "WebFetch(domain:github.com)", - "WebSearch" - ] - } -} diff --git a/compile.conf b/compile.conf index 231fe68..de84a62 100644 --- a/compile.conf +++ b/compile.conf @@ -51,7 +51,7 @@ gui=true steps=rm -rf $HOME/.local/bin/yaac, mkdir -p $HOME/.local/bin/yaac, mv /tmp/hampack-build/yaac/* $HOME/.local/bin/yaac/ [potacat] -version=1.3.14 +version=1.5.10 git=https://github.com/Waffleslop/POTACAT.git install=$HOME/.local/bin/POTACAT.AppImage desktop=$HOME/.local/share/HamPack/desktop/potacat.desktop diff --git a/hampackupdate b/hampackupdate index 29431ab..dca4ae5 100755 --- a/hampackupdate +++ b/hampackupdate @@ -40,7 +40,24 @@ else yay -Sua --noconfirm fi -# Will need to update the downloaded binaries and the compiled apps -# In the area below... +HAMPACK_DIR="$HOME/.local/share/HamPack" + +echo "Pulling latest HamPack configuration..." +git -C "$HAMPACK_DIR" pull + +echo "Installing any new packages..." +source "$HAMPACK_DIR/utils.sh" +source "$HAMPACK_DIR/packages.conf" +install_packages "${UTILITIES[@]}" +install_packages "${APPLICATIONS[@]}" + +echo "Installing any new Flatpaks..." +source "$HAMPACK_DIR/install-flatpaks.sh" + +echo "Installing any new or updated compiled applications..." +bash "$HAMPACK_DIR/install-compiled.sh" + +echo "Installing any new or updated pre-built binaries..." +bash "$HAMPACK_DIR/install-binaries.sh" echo "Done. You probably want to reboot your system..."