Compare commits

...

2 Commits

Author SHA1 Message Date
Nix
58e2b018d8
Update picodulce.py 2024-12-21 21:21:44 -03:00
Nix
3ee4348dfe
Update README.md 2024-12-21 21:15:35 -03:00
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**: The latest update includes the [Marroc Mod Manager](https://github.com/nixietab/marroc), enabling users to effortlessly manage and customize their game with mods.
- **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)
### 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 RPC')
discord_rcp_checkbox = QCheckBox('Discord Rich Presence')
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('Available Themes:')
json_files_label = QLabel('Installed 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 Themes")
download_themes_button = QPushButton("Download More Themes")
download_themes_button.clicked.connect(self.download_themes_window)
customization_layout.addWidget(download_themes_button)