mirror of
https://github.com/nixietab/picodulce.git
synced 2025-04-04 07:28:56 +01:00
Update picodulce.py
This commit is contained in:
parent
5661627c9d
commit
c7b9dde2cc
47
picodulce.py
47
picodulce.py
@ -1168,7 +1168,7 @@ class PicomcVersionSelector(QWidget):
|
|||||||
).format(version_number)
|
).format(version_number)
|
||||||
|
|
||||||
QMessageBox.about(self, self.tr("About"), about_message)
|
QMessageBox.about(self, self.tr("About"), about_message)
|
||||||
|
|
||||||
def check_for_update_start(self):
|
def check_for_update_start(self):
|
||||||
try:
|
try:
|
||||||
with open("version.json") as f:
|
with open("version.json") as f:
|
||||||
@ -1278,21 +1278,48 @@ class PicomcVersionSelector(QWidget):
|
|||||||
update_folder = "update"
|
update_folder = "update"
|
||||||
if not os.path.exists(update_folder):
|
if not os.path.exists(update_folder):
|
||||||
os.makedirs(update_folder)
|
os.makedirs(update_folder)
|
||||||
|
|
||||||
for link in version_info.get("links", []):
|
for link in version_info.get("links", []):
|
||||||
filename = os.path.basename(link)
|
# Get the relative path from the URL
|
||||||
|
parsed_url = urllib.parse.urlparse(link)
|
||||||
|
relative_path = parsed_url.path.lstrip('/')
|
||||||
|
# Remove any repository specific parts if present
|
||||||
|
parts = relative_path.split('/', 3)
|
||||||
|
if len(parts) > 3: # If URL contains owner/repo/branch/path format
|
||||||
|
relative_path = parts[3]
|
||||||
|
|
||||||
|
# Create the full path in the update folder
|
||||||
|
full_path = os.path.join(update_folder, relative_path)
|
||||||
|
# Create the directory structure
|
||||||
|
os.makedirs(os.path.dirname(full_path), exist_ok=True)
|
||||||
|
|
||||||
|
# Download the file
|
||||||
response = requests.get(link, stream=True)
|
response = requests.get(link, stream=True)
|
||||||
if response.status_code == 200:
|
if response.status_code == 200:
|
||||||
with open(os.path.join(update_folder, filename), 'wb') as f:
|
with open(full_path, 'wb') as f:
|
||||||
for chunk in response.iter_content(chunk_size=1024):
|
for chunk in response.iter_content(chunk_size=1024):
|
||||||
f.write(chunk)
|
f.write(chunk)
|
||||||
|
logging.info(f"Successfully downloaded: {relative_path}")
|
||||||
else:
|
else:
|
||||||
QMessageBox.critical(self, "Error", f"Failed to download update file: {filename}")
|
QMessageBox.critical(self, "Error", f"Failed to download update file: {relative_path}")
|
||||||
|
raise Exception(f"Failed to download {relative_path}")
|
||||||
|
|
||||||
# Move downloaded files one directory up
|
# Move downloaded files while preserving directory structure
|
||||||
for file in os.listdir(update_folder):
|
def copy_tree_up(src, dst_parent):
|
||||||
src = os.path.join(update_folder, file)
|
for item in os.listdir(src):
|
||||||
dst = os.path.join(os.path.dirname(update_folder), file)
|
s = os.path.join(src, item)
|
||||||
shutil.move(src, dst)
|
d = os.path.join(dst_parent, item)
|
||||||
|
if os.path.isdir(s):
|
||||||
|
if not os.path.exists(d):
|
||||||
|
os.makedirs(d)
|
||||||
|
copy_tree_up(s, dst_parent)
|
||||||
|
else:
|
||||||
|
if os.path.exists(d):
|
||||||
|
os.remove(d) # Remove existing file if it exists
|
||||||
|
shutil.move(s, d)
|
||||||
|
|
||||||
|
# Move files one directory up while preserving structure
|
||||||
|
copy_tree_up(update_folder, os.path.dirname(update_folder))
|
||||||
|
|
||||||
# Remove the update folder
|
# Remove the update folder
|
||||||
shutil.rmtree(update_folder)
|
shutil.rmtree(update_folder)
|
||||||
@ -1301,7 +1328,7 @@ class PicomcVersionSelector(QWidget):
|
|||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.error("Error downloading updates: %s", str(e))
|
logging.error("Error downloading updates: %s", str(e))
|
||||||
QMessageBox.critical(self, "Error", "Failed to download updates.")
|
QMessageBox.critical(self, "Error", "Failed to download updates.")
|
||||||
|
|
||||||
def start_discord_rcp(self):
|
def start_discord_rcp(self):
|
||||||
from pypresence import Presence
|
from pypresence import Presence
|
||||||
import time
|
import time
|
||||||
|
Loading…
Reference in New Issue
Block a user