From f335ce7204d07da23db9a3b6701381bb787c50fb Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Tue, 15 Apr 2025 14:59:30 -0700 Subject: [PATCH] fix gemini --- create-appimage.sh | 112 ------------------ scripts/appimage/readme.md | 13 ++ .../llmMessage/sendLLMMessage.impl.ts | 8 +- 3 files changed, 19 insertions(+), 114 deletions(-) delete mode 100644 create-appimage.sh diff --git a/create-appimage.sh b/create-appimage.sh deleted file mode 100644 index c79a351c..00000000 --- a/create-appimage.sh +++ /dev/null @@ -1,112 +0,0 @@ -#!/bin/bash -set -e # Exit on error -set -x # Print commands as they are executed - -# Configuration -APP_NAME="void" -APP_VERSION="1.0.0" -ARCH="x86_64" - -export ARCH - -# Check if void binary exists in current directory -if [ ! -f "./void" ]; then - echo "Error: void binary not found in current directory" - exit 1 -fi - -# Check if icon exists -if [ ! -f "./void.png" ]; then - echo "Error: void.png icon not found in current directory" - exit 1 -fi - -# Create temporary directory -TEMP_DIR="$(mktemp -d)" -echo "Created temporary directory: $TEMP_DIR" -APP_DIR="$TEMP_DIR/$APP_NAME.AppDir" - -# Create basic AppDir structure -mkdir -pv "$APP_DIR/usr/bin" -mkdir -pv "$APP_DIR/usr/lib" -mkdir -pv "$APP_DIR/usr/share/applications" -mkdir -pv "$APP_DIR/usr/share/icons/hicolor/256x256/apps" - -# Exclude create-appimage.sh and appimagetool-x86_64.AppImage from being copied -echo "Copying files excluding create-appimage.sh and appimagetool-x86_64.AppImage..." -for file in ./*; do - if [[ "$file" != "./create-appimage.sh" && "$file" != "./appimagetool-x86_64.AppImage" ]]; then - cp -rv "$file" "$APP_DIR/usr/bin/" - fi -done - -# Copy the icon to required locations -cp -v ./void.png "$APP_DIR/void.png" -cp -v ./void.png "$APP_DIR/usr/share/icons/hicolor/256x256/apps/void.png" - -# Copy dependencies with error checking -echo "Copying dependencies..." -for lib in $(ldd ./void | grep "=> /" | awk '{print $3}'); do - if [ -f "$lib" ]; then - cp -v "$lib" "$APP_DIR/usr/lib/" || echo "Failed to copy $lib" - else - echo "Warning: Library $lib not found" - fi -done - -# Create desktop file with error checking -echo "Creating desktop file..." -if ! cat > "$APP_DIR/$APP_NAME.desktop" < "$APP_DIR/AppRun" <