fix versions

This commit is contained in:
David Young
2026-04-29 15:00:05 -06:00
parent c8d25e1dbf
commit 78b1d32e69
3 changed files with 20 additions and 11 deletions

View File

@@ -1,8 +0,0 @@
{
"permissions": {
"allow": [
"WebFetch(domain:github.com)",
"WebSearch"
]
}
}

View File

@@ -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/ steps=rm -rf $HOME/.local/bin/yaac, mkdir -p $HOME/.local/bin/yaac, mv /tmp/hampack-build/yaac/* $HOME/.local/bin/yaac/
[potacat] [potacat]
version=1.3.14 version=1.5.10
git=https://github.com/Waffleslop/POTACAT.git git=https://github.com/Waffleslop/POTACAT.git
install=$HOME/.local/bin/POTACAT.AppImage install=$HOME/.local/bin/POTACAT.AppImage
desktop=$HOME/.local/share/HamPack/desktop/potacat.desktop desktop=$HOME/.local/share/HamPack/desktop/potacat.desktop

View File

@@ -40,7 +40,24 @@ else
yay -Sua --noconfirm yay -Sua --noconfirm
fi fi
# Will need to update the downloaded binaries and the compiled apps HAMPACK_DIR="$HOME/.local/share/HamPack"
# In the area below...
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..." echo "Done. You probably want to reboot your system..."