From 487d2b9528ca894a6a90443e8f4dcaf3b25d0dfc Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Fri, 8 Aug 2025 23:11:36 +0000 Subject: [PATCH] remove: RC1 update fix doc from repo --- RC1_UPDATE_FIX.md | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 RC1_UPDATE_FIX.md diff --git a/RC1_UPDATE_FIX.md b/RC1_UPDATE_FIX.md deleted file mode 100644 index 77d18db15..000000000 --- a/RC1_UPDATE_FIX.md +++ /dev/null @@ -1,44 +0,0 @@ -# Manual Update from v4.1.0-rc.1 to v4.1.0-rc.2 - -Users on v4.1.0-rc.1 may experience issues with automatic updates due to a bug in the update checking logic. Here's how to manually update: - -## Option 1: Direct Binary Update (Recommended) - -```bash -# Stop Pulse service -sudo systemctl stop pulse - -# Backup current installation -sudo cp /usr/local/bin/pulse /usr/local/bin/pulse.backup - -# Download and extract new version -cd /tmp -wget https://github.com/rcourtman/Pulse/releases/download/v4.1.0-rc.2/pulse-v4.1.0-rc.2-linux-amd64.tar.gz -tar -xzf pulse-v4.1.0-rc.2-linux-amd64.tar.gz - -# Install new binary -sudo mv pulse /usr/local/bin/pulse -sudo chmod +x /usr/local/bin/pulse - -# Start Pulse service -sudo systemctl start pulse -``` - -## Option 2: Fresh Install - -```bash -curl -fsSL https://raw.githubusercontent.com/rcourtman/Pulse/main/scripts/install.sh | bash -``` - -## Verify Update - -After updating, verify the version: -```bash -pulse --version -``` - -Should show: `v4.1.0-rc.2` - -## What Was Fixed - -The v4.1.0-rc.1 release had a bug in the update checking logic that prevented it from properly detecting newer releases. This has been fixed in v4.1.0-rc.2. \ No newline at end of file