Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ This is very much a quick and dirty implementation and you should expect some da

Requires Python to be installed on your computer.

Install Python requirements:
`pip install -r requirements.txt`

Converting a 3DS save file into Wii U format:
`python convert_to_wiiu.py path_to_3ds_user1 output_wii_u_user1`

Expand Down
8 changes: 7 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from os import path, access, W_OK
from converter.converter_3ds import Converter3DS
from converter.converter_wiiu import ConverterWiiU
from PyQt5.QtWidgets import QApplication, QWidget, QPushButton, QFormLayout, QFileDialog, QTextEdit, QMessageBox
from PyQt5.QtWidgets import QApplication, QWidget, QPushButton, QFormLayout, QFileDialog, QTextEdit, QMessageBox, QLabel

class App():
def start(self):
Expand All @@ -13,6 +13,9 @@ def start(self):
self.window.setWindowTitle('MH3U Save Converter')
layout = QFormLayout()

disclaimerLabel = QLabel("<b>Not perfect, backup you savefiles first!</b>")
layout.addRow(disclaimerLabel)

loadSrcButton = QPushButton('Load save file')
loadSrcButton.clicked.connect(self.loadSrc)
self.srcPath = QTextEdit(self.window)
Expand All @@ -23,6 +26,9 @@ def start(self):
self.dstPath = QTextEdit(self.window)
self.dstPath.setFixedHeight(24)

disclaimerLabel = QLabel("Automatically detect if input file is 3DS or Wii U")
layout.addRow(disclaimerLabel)

convertButton = QPushButton('Convert')
convertButton.clicked.connect(self.convert)

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
PyQt5-sip==12.11.0