v0.0.31 - Clean public release

- Updated to v0.0.31 with GUI startup warning fix
- Updated jackify-engine for improved compatibility
- Removed development-only files from public repo
- Added LICENSE and CONTRIBUTING.md for professional release
- Professional public repository ready for alpha release
This commit is contained in:
Omni
2025-09-07 21:43:22 +01:00
parent cd591c14e3
commit af7685dd21
65 changed files with 1250 additions and 647 deletions

View File

@@ -9,7 +9,7 @@ from pathlib import Path
from jackify.shared.colors import (
COLOR_SELECTION, COLOR_RESET, COLOR_PROMPT, COLOR_INFO, COLOR_ERROR
)
from jackify.shared.ui_utils import print_jackify_banner, print_section_header
from jackify.shared.ui_utils import print_jackify_banner, print_section_header, clear_screen
class RecoveryMenuHandler:
"""
@@ -21,9 +21,8 @@ class RecoveryMenuHandler:
self.logger = logging.getLogger(__name__)
def _clear_screen(self):
"""Clear the terminal screen"""
import os
os.system('cls' if os.name == 'nt' else 'clear')
"""Clear the terminal screen with AppImage compatibility"""
clear_screen()
def show_recovery_menu(self, cli_instance):
"""Show the recovery tools menu."""