Compare commits

..

No commits in common. "58e2b018d8727c6af58aad620d05cee7d4737f4f" and "b7c099c0d95f5a47ac9fa67629610a64de0454d3" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View File

@ -36,8 +36,8 @@
- **Version Management**: Picodulce is designed to download and launch all available game versions, ensuring users have easy access to the latest updates as well as older versions.
- **Offline and Online Support**: Whether you're connected to Microsoft or not, Picodulce ensures you can still enjoy your game by supporting both offline and online modes.
- **Integrated Mod Manager**: Includes the [Marroc Mod Manager](https://github.com/nixietab/marroc), enabling users to effortlessly manage and customize their game with mods and texturepacks.
- **Custom Theme Support**: Create and apply personalized themes with ease. A dedicated repository and guide are [available to help you get started.](https://github.com/nixietab/picodulce-themes)
- **Integrated Mod Manager**: The latest update includes the [Marroc Mod Manager](https://github.com/nixietab/marroc), enabling users to effortlessly manage and customize their game with mods.
### About the name

View File

@ -352,7 +352,7 @@ class PicomcVersionSelector(QWidget):
title_label.setFont(QFont("Arial", 14))
# Create checkboxes for settings tab
discord_rcp_checkbox = QCheckBox('Discord Rich Presence')
discord_rcp_checkbox = QCheckBox('Discord RPC')
discord_rcp_checkbox.setChecked(self.config.get("IsRCPenabled", False))
check_updates_checkbox = QCheckBox('Check Updates on Start')
@ -391,7 +391,7 @@ class PicomcVersionSelector(QWidget):
current_theme_label = QLabel(f"Current Theme: {theme_filename}")
# QListWidget to display available themes
json_files_label = QLabel('Installed Themes:')
json_files_label = QLabel('Available Themes:')
json_files_list_widget = QListWidget()
# Track selected theme
@ -440,7 +440,7 @@ class PicomcVersionSelector(QWidget):
customization_layout.addWidget(json_files_list_widget)
# Button to download themes
download_themes_button = QPushButton("Download More Themes")
download_themes_button = QPushButton("Download Themes")
download_themes_button.clicked.connect(self.download_themes_window)
customization_layout.addWidget(download_themes_button)