Improved how title loading is handled and improved databases

This commit is contained in:
2024-08-21 22:39:50 -04:00
parent ac42de6efc
commit 0ca2cc272a
5 changed files with 182 additions and 161 deletions

View File

@@ -2,6 +2,21 @@
# Copyright 2024 NinjaCheetah
import requests
from dataclasses import dataclass
@dataclass
class SelectedTitle:
# Class to store all components of a selected title to make tracking it easier.
tid: str
name: str
archive_name: str
version: str
ticket: bool
region: str
category: str
console: str
danger: str
def check_nusget_updates(app, current_version: str, progress_callback=None) -> str | None: