Files
Warracker/frontend/version-checker.js
T
sassanix e4a24482f7 Email Change, PWA Support, Tag Management, Credential Security Improvements
This release introduces several key features and improvements

Added:
- Account email change support from Settings with full validation and UI update.
- Progressive Web App (PWA) capability with manifest and service worker integration.
- "Manage Tags" button on the main page to streamline tag management UX.

Changed:
- Improved responsiveness of key pages (index, status) across mobile and tablet views.
- Replaced hardcoded DB credentials with environment variable references (contribution by @humrochagf, commit 20997e9):
  • Credentials are now pulled from Docker Compose env vars.
  • Redundant superuser credential checks removed.
  • Updated migration and permission scripts for dynamic configuration.

This version enhances user flexibility, security, and cross-device compatibility.
2025-05-24 12:31:46 -03:00

53 lines
2.1 KiB
JavaScript

// Version checker for Warracker
document.addEventListener('DOMContentLoaded', () => {
const currentVersion = '0.9.9.8'; // Current version of the application
const updateStatus = document.getElementById('updateStatus');
const updateLink = document.getElementById('updateLink');
// Function to compare versions
function compareVersions(v1, v2) {
const v1Parts = v1.split('.').map(Number);
const v2Parts = v2.split('.').map(Number);
for (let i = 0; i < Math.max(v1Parts.length, v2Parts.length); i++) {
const v1Part = v1Parts[i] || 0;
const v2Part = v2Parts[i] || 0;
if (v1Part > v2Part) return 1;
if (v1Part < v2Part) return -1;
}
return 0;
}
// Function to check for updates
async function checkForUpdates() {
try {
const response = await fetch('https://api.github.com/repos/sassanix/Warracker/releases/latest');
if (!response.ok) throw new Error('Failed to fetch release information');
const data = await response.json();
const latestVersion = data.tag_name.replace('v', ''); // Remove 'v' prefix if present
const comparison = compareVersions(latestVersion, currentVersion);
if (comparison > 0) {
// New version available
updateStatus.textContent = `New version ${data.tag_name} available!`;
updateStatus.style.color = 'var(--success-color)';
updateLink.href = data.html_url;
updateLink.style.display = 'inline-block';
} else {
// Up to date
updateStatus.textContent = 'You are using the latest version';
updateStatus.style.color = 'var(--success-color)';
}
} catch (error) {
console.error('Error checking for updates:', error);
updateStatus.textContent = 'Failed to check for updates';
updateStatus.style.color = 'var(--error-color)';
}
}
// Check for updates when the page loads
checkForUpdates();
});