diff --git a/Changelog.md b/Changelog.md index d1b6d4e..5faa957 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,6 @@ +## [0.3.02] + +- Moved from `AppleOSX` to @HorizonUnix ## [0.3.01] ## General diff --git a/Linux/Assets/SU.py b/Linux/Assets/SU.py index 4dfaac3..7bf8697 100644 --- a/Linux/Assets/SU.py +++ b/Linux/Assets/SU.py @@ -1,7 +1,7 @@ import os, urllib.request, zipfile, shutil, subprocess def update(): - url = "https://github.com/AppleOSX/UXTU4Unix/releases/latest/download/Linux.zip" + url = "https://github.com/HorizonUnix/UXTU4Unix/releases/latest/download/Linux.zip" script_dir = os.path.dirname(os.path.realpath(__file__)) current_dir = os.path.dirname(os.path.dirname(script_dir)) current_folder = os.path.join(current_dir, "UXTU4Unix") diff --git a/Linux/UXTU4Unix.py b/Linux/UXTU4Unix.py index 3289433..6ff02f6 100644 --- a/Linux/UXTU4Unix.py +++ b/Linux/UXTU4Unix.py @@ -2,9 +2,9 @@ import urllib.request, json, select from configparser import ConfigParser -LOCAL_VERSION = "0.3.01" -LATEST_VERSION_URL = "https://github.com/AppleOSX/UXTU4Unix/releases/latest" -GITHUB_API_URL = "https://api.github.com/repos/AppleOSX/UXTU4Unix/releases/latest" +LOCAL_VERSION = "0.3.02" +LATEST_VERSION_URL = "https://github.com/HorizonUnix/UXTU4Unix/releases/latest" +GITHUB_API_URL = "https://api.github.com/repos/HorizonUnix/UXTU4Unix/releases/latest" current_dir = os.path.dirname(os.path.realpath(__file__)) os.makedirs(f'{current_dir}/Logs', exist_ok=True) logging.basicConfig(filename=f'{current_dir}/Logs/UXTU4Unix.log', filemode='w', encoding='utf-8', @@ -59,7 +59,7 @@ def clear(): logging.info(f' {cpu} ({family})') if cfg.get('Settings', 'Debug', fallback='0') == '1': logging.info(f" Loaded: {cfg.get('User', 'Preset',fallback = '')}") - logging.info(f" Version: {LOCAL_VERSION} by AppleOSX (Linux Edition)") + logging.info(f" Version: {LOCAL_VERSION} by HorizonUnix (Linux Edition)") logging.info("") def get_hardware_info(command, use_sudo=False): @@ -644,7 +644,7 @@ def check_updates(): def about(): options = { - "1": lambda: webbrowser.open("https://www.github.com/AppleOSX/UXTU4Unix"), + "1": lambda: webbrowser.open("https://www.github.com/HorizonUnix/UXTU4Unix"), "f": updater, "b": "break", } diff --git a/macOS/Assets/SU.py b/macOS/Assets/SU.py index f1580e7..7bfd655 100644 --- a/macOS/Assets/SU.py +++ b/macOS/Assets/SU.py @@ -1,7 +1,7 @@ import os, urllib.request, zipfile, shutil, subprocess def update(): - url = "https://github.com/AppleOSX/UXTU4Unix/releases/latest/download/macOS.zip" + url = "https://github.com/HorizonUnix/UXTU4Unix/releases/latest/download/macOS.zip" script_dir = os.path.dirname(os.path.realpath(__file__)) current_dir = os.path.dirname(os.path.dirname(script_dir)) current_folder = os.path.join(current_dir, "UXTU4Unix") diff --git a/macOS/UXTU4Unix.py b/macOS/UXTU4Unix.py index b4c7f72..0d07c1b 100644 --- a/macOS/UXTU4Unix.py +++ b/macOS/UXTU4Unix.py @@ -2,9 +2,9 @@ import urllib.request, plistlib, base64, json, select, signal from configparser import ConfigParser -LOCAL_VERSION = "0.3.01" -LATEST_VERSION_URL = "https://github.com/AppleOSX/UXTU4Unix/releases/latest" -GITHUB_API_URL = "https://api.github.com/repos/AppleOSX/UXTU4Unix/releases/latest" +LOCAL_VERSION = "0.3.02" +LATEST_VERSION_URL = "https://github.com/HorizonUnix/UXTU4Unix/releases/latest" +GITHUB_API_URL = "https://api.github.com/repos/HorizonUnix/UXTU4Unix/releases/latest" current_dir = os.path.dirname(os.path.realpath(__file__)) command_file = os.path.join(current_dir, 'UXTU4Unix.command') command_file_name = os.path.basename(command_file) @@ -61,7 +61,7 @@ def clear(): logging.info(f' {cpu} ({family})') if cfg.get('Settings', 'Debug', fallback='0') == '1': logging.info(f" Loaded: {cfg.get('User', 'Preset',fallback = '')}") - logging.info(f" Version: {LOCAL_VERSION} by AppleOSX (macOS Edition)") + logging.info(f" Version: {LOCAL_VERSION} by HorizonUnix (macOS Edition)") logging.info("") def get_hardware_info(command, use_sudo=False): @@ -806,7 +806,7 @@ def check_updates(): def about(): options = { - "1": lambda: webbrowser.open("https://www.github.com/AppleOSX/UXTU4Unix"), + "1": lambda: webbrowser.open("https://www.github.com/HorizonUnix/UXTU4Unix"), "f": updater, "b": "break", }