Version bump to 2.34
This commit is contained in:
parent
be2d0569da
commit
ef8cff3c69
2 changed files with 4 additions and 4 deletions
|
|
@ -36,7 +36,7 @@ _log_path = config_manager.get('logging.path', 'logs/app.log')
|
||||||
logger = setup_logging(_log_level, _log_path)
|
logger = setup_logging(_log_level, _log_path)
|
||||||
|
|
||||||
# App version — single source of truth for backup metadata, version-info endpoint, etc.
|
# App version — single source of truth for backup metadata, version-info endpoint, etc.
|
||||||
SOULSYNC_VERSION = "2.33"
|
SOULSYNC_VERSION = "2.34"
|
||||||
|
|
||||||
# Dedicated source reuse logger — writes to logs/source_reuse.log
|
# Dedicated source reuse logger — writes to logs/source_reuse.log
|
||||||
import logging as _logging
|
import logging as _logging
|
||||||
|
|
|
||||||
|
|
@ -3599,7 +3599,7 @@ function closeHelperSearch() {
|
||||||
// ═══════════════════════════════════════════════════════════════════════════
|
// ═══════════════════════════════════════════════════════════════════════════
|
||||||
|
|
||||||
const WHATS_NEW = {
|
const WHATS_NEW = {
|
||||||
'2.33': [
|
'2.34': [
|
||||||
// --- April 19, 2026 ---
|
// --- April 19, 2026 ---
|
||||||
{ date: 'April 19, 2026' },
|
{ date: 'April 19, 2026' },
|
||||||
{ title: 'Fix Wishlist Albums Cycle Stuck at 1 Concurrent', desc: 'Auto-wishlist processing during the "albums" cycle was limited to 1 concurrent download even with higher configured settings. The max_concurrent=1 restriction is only needed for Soulseek folder-based album grabs, not individual wishlist track downloads. Albums cycle now uses the configured concurrency like singles' },
|
{ title: 'Fix Wishlist Albums Cycle Stuck at 1 Concurrent', desc: 'Auto-wishlist processing during the "albums" cycle was limited to 1 concurrent download even with higher configured settings. The max_concurrent=1 restriction is only needed for Soulseek folder-based album grabs, not individual wishlist track downloads. Albums cycle now uses the configured concurrency like singles' },
|
||||||
|
|
@ -3735,12 +3735,12 @@ const WHATS_NEW = {
|
||||||
|
|
||||||
function _getCurrentVersion() {
|
function _getCurrentVersion() {
|
||||||
const btn = document.querySelector('.version-button');
|
const btn = document.querySelector('.version-button');
|
||||||
return btn ? btn.textContent.trim().replace('v', '') : '2.33';
|
return btn ? btn.textContent.trim().replace('v', '') : '2.34';
|
||||||
}
|
}
|
||||||
|
|
||||||
function _getLatestWhatsNewVersion() {
|
function _getLatestWhatsNewVersion() {
|
||||||
const versions = Object.keys(WHATS_NEW).sort((a, b) => parseFloat(b) - parseFloat(a));
|
const versions = Object.keys(WHATS_NEW).sort((a, b) => parseFloat(b) - parseFloat(a));
|
||||||
return versions[0] || '2.33';
|
return versions[0] || '2.34';
|
||||||
}
|
}
|
||||||
|
|
||||||
function openWhatsNew() {
|
function openWhatsNew() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue