remove: RC1 update fix doc from repo

This commit is contained in:
Pulse Monitor
2025-08-08 23:11:36 +00:00
parent fbb6e14721
commit 487d2b9528
-44
View File
@@ -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.