From c2104c3a72b819114a26cda8ac1fa956e1594969 Mon Sep 17 00:00:00 2001 From: Andrew Date: Fri, 31 Oct 2025 01:48:29 +0300 Subject: [PATCH] only offline method is now available --- src/config.py | 4 ++-- src/mainwindow.py | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/config.py b/src/config.py index 132d257..7217ba3 100644 --- a/src/config.py +++ b/src/config.py @@ -17,8 +17,8 @@ MSXML_ZIP = BASE_DIR + '/assets/msxml3.zip' WINE_STYLE_REG = STYLES_PATH + '/wine_dark_theme.reg' -AE_DOWNLOAD_URL = 'https://huggingface.co/cutefishae/AeNux-model/resolve/main/2024.zip' -AE_PLUGINS_URL = 'https://huggingface.co/cutefishae/AeNux-model/resolve/main/aenux-require-plugin.zip' +AE_DOWNLOAD_URL = 'i dont support piracy' +AE_PLUGINS_URL = 'i dont support piracy either' AE_FILENAME = '/tmp/ae2024.zip' diff --git a/src/mainwindow.py b/src/mainwindow.py index bb0cde9..244ffb4 100644 --- a/src/mainwindow.py +++ b/src/mainwindow.py @@ -87,7 +87,9 @@ class MainWindow(MainWindowUI): @Slot() def install_button_clicked(self): - method = show_download_method_dialog(gls('installation_method_title'), gls('installation_method_text')) + # method = show_download_method_dialog(gls('installation_method_title'), gls('installation_method_text')) + + method = DownloadMethod.OFFLINE if method == DownloadMethod.CANCEL: return