Release v0.7.1 - Remote Manifest System, Stability Fixes

This commit is contained in:
Omni
2026-07-02 21:04:19 +01:00
parent 6def3b480a
commit e5d329a2dc
96 changed files with 1950 additions and 1382 deletions
@@ -7,9 +7,12 @@ R&D NOTE: This is experimental code for investigation purposes.
"""
from typing import Optional
import logging
import shiboken6
import time
logger = logging.getLogger(__name__)
from PySide6.QtWidgets import (
QWidget, QVBoxLayout, QLabel, QListWidget, QListWidgetItem,
QHBoxLayout, QSizePolicy
@@ -113,7 +116,7 @@ class _CpuWorker(QThread):
def _debug_log(message):
from jackify.backend.handlers.config_handler import ConfigHandler
if ConfigHandler().get('debug_mode', False):
print(message)
logger.debug(message)
class FileProgressList(QWidget):