1
0
mirror of https://github.com/Escartem/AnimeWwise.git synced 2026-06-04 23:40:25 +08:00

Run exe files via wine

This commit is contained in:
Ethan O'Brien
2024-10-02 22:02:16 -05:00
parent e756ee2a58
commit 1687d81240
2 changed files with 14 additions and 1 deletions

5
app.py
View File

@@ -3,6 +3,7 @@ import sys
import json
import math
import extract
import platform
from PyQt5 import uic
from requests import get
from PyQt5.QtGui import QTextCursor
@@ -169,7 +170,9 @@ class AnimeWwise(QMainWindow):
self.tabs.setTabEnabled(2, True)
self.tabs.setCurrentIndex(2)
print("Finished extracting everything !")
os.startfile(self.folders["output"])
if platform.system() == "Windows":
os.startfile(self.folders["output"])
# page 1 - config
def loadFiles(self):