Update version to 2.0.1 and make version reading dynamic

This commit is contained in:
MasterDraco 2025-03-05 00:31:42 +00:00
parent d08820c9c6
commit bd55ef8613
3 changed files with 9 additions and 5 deletions

View File

@ -1,18 +1,21 @@
# Transmission RSS Manager v2.0.0
# Transmission RSS Manager v2.0.1
A comprehensive web-based tool to automate and manage your Transmission torrent downloads with RSS feed integration, intelligent media organization, and enhanced security features. Now with automatic updates and easy installation!
## Changelog
### v2.0.1 (2025-03-05)
- **New**: Automatic detection of existing installations for seamless updates
- **Improved**: Enhanced update process that preserves existing configurations
- **Improved**: Installer now dynamically reads version from package.json
### v2.0.0 (2025-03-05)
- **Major**: Completely redesigned installation system using git
- **New**: One-click update feature with version checking
- **New**: Automatic Transmission detection and installation
- **New**: System status dashboard with update notifications
- **New**: Automatic detection of existing installations for seamless updates
- **New**: About page with developer information
- **Improved**: Better error handling for Transmission connection
- **Improved**: Enhanced update process that preserves existing configurations
- **Fixed**: Various UI bugs and responsiveness issues
### v1.2.0 (2025-02-15)

View File

@ -15,7 +15,8 @@ NC='\033[0m' # No Color
# Print header
echo -e "${BOLD}==================================================${NC}"
echo -e "${BOLD} Transmission RSS Manager Installer ${NC}"
echo -e "${BOLD} Version 2.0.0 - Git Edition ${NC}"
VERSION=$(grep -oP '"version": "\K[^"]+' "${SCRIPT_DIR}/package.json" 2>/dev/null || echo "Unknown")
echo -e "${BOLD} Version ${VERSION} - Git Edition ${NC}"
echo -e "${BOLD}==================================================${NC}"
echo

View File

@ -1,6 +1,6 @@
{
"name": "transmission-rss-manager",
"version": "2.0.0",
"version": "2.0.1",
"description": "A comprehensive web-based tool to automate and manage your Transmission torrent downloads with RSS feed integration and intelligent media organization",
"main": "server.js",
"scripts": {