mirror of
https://github.com/nixietab/picodulce.git
synced 2025-04-10 10:28:56 +01:00
Update picodulce.py
This commit is contained in:
parent
45883d4483
commit
d477e98bd9
19
picodulce.py
19
picodulce.py
@ -622,11 +622,24 @@ class PicomcVersionSelector(QWidget):
|
|||||||
QMessageBox.critical(self, "Error", error_message)
|
QMessageBox.critical(self, "Error", error_message)
|
||||||
|
|
||||||
def show_about_dialog(self):
|
def show_about_dialog(self):
|
||||||
about_message = "PicoDulce Launcher\n\nA simple Minecraft launcher built using Qt, based on the picomc project.\n\nCredits:\nNixietab: Code and UI design\nWabaano: Graphic design\nOlinad: Christmas!!!!"
|
# Load the version number from version.json
|
||||||
|
try:
|
||||||
|
with open('version.json', 'r') as version_file:
|
||||||
|
version_data = json.load(version_file)
|
||||||
|
version_number = version_data.get('version', 'unknown version')
|
||||||
|
except (FileNotFoundError, json.JSONDecodeError):
|
||||||
|
version_number = 'unknown version'
|
||||||
|
|
||||||
|
about_message = (
|
||||||
|
f"PicoDulce Launcher (v{version_number})\n\n"
|
||||||
|
"A simple Minecraft launcher built using Qt, based on the picomc project.\n\n"
|
||||||
|
"Credits:\n"
|
||||||
|
"Nixietab: Code and UI design\n"
|
||||||
|
"Wabaano: Graphic design\n"
|
||||||
|
"Olinad: Christmas!!!!"
|
||||||
|
)
|
||||||
QMessageBox.about(self, "About", about_message)
|
QMessageBox.about(self, "About", about_message)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def create_dark_palette(self):
|
def create_dark_palette(self):
|
||||||
palette = QPalette()
|
palette = QPalette()
|
||||||
palette.setColor(QPalette.Window, QColor(53, 53, 53))
|
palette.setColor(QPalette.Window, QColor(53, 53, 53))
|
||||||
|
Loading…
Reference in New Issue
Block a user