|
2 | 2 | import urllib.request, json, select |
3 | 3 | from configparser import ConfigParser |
4 | 4 |
|
5 | | -LOCAL_VERSION = "0.3.01" |
6 | | -LATEST_VERSION_URL = "https://github.com/AppleOSX/UXTU4Unix/releases/latest" |
7 | | -GITHUB_API_URL = "https://api.github.com/repos/AppleOSX/UXTU4Unix/releases/latest" |
| 5 | +LOCAL_VERSION = "0.3.02" |
| 6 | +LATEST_VERSION_URL = "https://github.com/HorizonUnix/UXTU4Unix/releases/latest" |
| 7 | +GITHUB_API_URL = "https://api.github.com/repos/HorizonUnix/UXTU4Unix/releases/latest" |
8 | 8 | current_dir = os.path.dirname(os.path.realpath(__file__)) |
9 | 9 | os.makedirs(f'{current_dir}/Logs', exist_ok=True) |
10 | 10 | logging.basicConfig(filename=f'{current_dir}/Logs/UXTU4Unix.log', filemode='w', encoding='utf-8', |
@@ -59,7 +59,7 @@ def clear(): |
59 | 59 | logging.info(f' {cpu} ({family})') |
60 | 60 | if cfg.get('Settings', 'Debug', fallback='0') == '1': |
61 | 61 | logging.info(f" Loaded: {cfg.get('User', 'Preset',fallback = '')}") |
62 | | - logging.info(f" Version: {LOCAL_VERSION} by AppleOSX (Linux Edition)") |
| 62 | + logging.info(f" Version: {LOCAL_VERSION} by HorizonUnix (Linux Edition)") |
63 | 63 | logging.info("") |
64 | 64 |
|
65 | 65 | def get_hardware_info(command, use_sudo=False): |
@@ -644,7 +644,7 @@ def check_updates(): |
644 | 644 |
|
645 | 645 | def about(): |
646 | 646 | options = { |
647 | | - "1": lambda: webbrowser.open("https://www.github.com/AppleOSX/UXTU4Unix"), |
| 647 | + "1": lambda: webbrowser.open("https://www.github.com/HorizonUnix/UXTU4Unix"), |
648 | 648 | "f": updater, |
649 | 649 | "b": "break", |
650 | 650 | } |
|
0 commit comments