Skip to content

Commit 715c873

Browse files
committed
HorizonUnix
1 parent 713e6ad commit 715c873

5 files changed

Lines changed: 15 additions & 12 deletions

File tree

Changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [0.3.02]
2+
3+
- Moved from `AppleOSX` to @HorizonUnix
14
## [0.3.01]
25

36
## General

Linux/Assets/SU.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os, urllib.request, zipfile, shutil, subprocess
22

33
def update():
4-
url = "https://github.com/AppleOSX/UXTU4Unix/releases/latest/download/Linux.zip"
4+
url = "https://github.com/HorizonUnix/UXTU4Unix/releases/latest/download/Linux.zip"
55
script_dir = os.path.dirname(os.path.realpath(__file__))
66
current_dir = os.path.dirname(os.path.dirname(script_dir))
77
current_folder = os.path.join(current_dir, "UXTU4Unix")

Linux/UXTU4Unix.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
import urllib.request, json, select
33
from configparser import ConfigParser
44

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"
88
current_dir = os.path.dirname(os.path.realpath(__file__))
99
os.makedirs(f'{current_dir}/Logs', exist_ok=True)
1010
logging.basicConfig(filename=f'{current_dir}/Logs/UXTU4Unix.log', filemode='w', encoding='utf-8',
@@ -59,7 +59,7 @@ def clear():
5959
logging.info(f' {cpu} ({family})')
6060
if cfg.get('Settings', 'Debug', fallback='0') == '1':
6161
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)")
6363
logging.info("")
6464

6565
def get_hardware_info(command, use_sudo=False):
@@ -644,7 +644,7 @@ def check_updates():
644644

645645
def about():
646646
options = {
647-
"1": lambda: webbrowser.open("https://www.github.com/AppleOSX/UXTU4Unix"),
647+
"1": lambda: webbrowser.open("https://www.github.com/HorizonUnix/UXTU4Unix"),
648648
"f": updater,
649649
"b": "break",
650650
}

macOS/Assets/SU.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os, urllib.request, zipfile, shutil, subprocess
22

33
def update():
4-
url = "https://github.com/AppleOSX/UXTU4Unix/releases/latest/download/macOS.zip"
4+
url = "https://github.com/HorizonUnix/UXTU4Unix/releases/latest/download/macOS.zip"
55
script_dir = os.path.dirname(os.path.realpath(__file__))
66
current_dir = os.path.dirname(os.path.dirname(script_dir))
77
current_folder = os.path.join(current_dir, "UXTU4Unix")

macOS/UXTU4Unix.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
import urllib.request, plistlib, base64, json, select, signal
33
from configparser import ConfigParser
44

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"
88
current_dir = os.path.dirname(os.path.realpath(__file__))
99
command_file = os.path.join(current_dir, 'UXTU4Unix.command')
1010
command_file_name = os.path.basename(command_file)
@@ -61,7 +61,7 @@ def clear():
6161
logging.info(f' {cpu} ({family})')
6262
if cfg.get('Settings', 'Debug', fallback='0') == '1':
6363
logging.info(f" Loaded: {cfg.get('User', 'Preset',fallback = '')}")
64-
logging.info(f" Version: {LOCAL_VERSION} by AppleOSX (macOS Edition)")
64+
logging.info(f" Version: {LOCAL_VERSION} by HorizonUnix (macOS Edition)")
6565
logging.info("")
6666

6767
def get_hardware_info(command, use_sudo=False):
@@ -806,7 +806,7 @@ def check_updates():
806806

807807
def about():
808808
options = {
809-
"1": lambda: webbrowser.open("https://www.github.com/AppleOSX/UXTU4Unix"),
809+
"1": lambda: webbrowser.open("https://www.github.com/HorizonUnix/UXTU4Unix"),
810810
"f": updater,
811811
"b": "break",
812812
}

0 commit comments

Comments
 (0)