Compare commits

..

No commits in common. "0ea29235cb8b91f397ccc3ec2ea46d187da39e89" and "566095978d88643d7036dbee0a10d1444cf077af" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@
Picodulce is a feature-rich launcher for Minecraft, developed using Qt5. It serves as a graphical user interface (GUI) for the picomc project, providing users with a seamless experience in managing and launching game versions. Picodulce is a feature-rich launcher for Minecraft, developed using Qt5. It serves as a graphical user interface (GUI) for the picomc project, providing users with a seamless experience in managing and launching game versions.
![imagen](https://github.com/user-attachments/assets/115b39be-47d3-4ac7-893a-5849c1e4570c) ![image](https://github.com/nixietab/picodulce/assets/75538775/808ac50b-96e6-4bc1-b7fd-a14f9ce5f064)
## Key Features ## Key Features

View File

@ -33,7 +33,7 @@ class PicomcVersionSelector(QWidget):
def init_ui(self): def init_ui(self):
self.setWindowTitle('PicoDulce Launcher') # Change window title self.setWindowTitle('PicoDulce Launcher') # Change window title
current_date = datetime.now() current_date = datetime.now()
if (current_date.month == 12 and current_date.day >= 8) or (current_date.month == 1 and current_date.day <= 1): if (current_date.month == 12 and current_date.day >= 18) or (current_date.month == 1 and current_date.day <= 1):
self.setWindowIcon(QIcon('holiday.ico')) # Set holiday icon self.setWindowIcon(QIcon('holiday.ico')) # Set holiday icon
else: else:
self.setWindowIcon(QIcon('launcher_icon.ico')) # Set regular icon self.setWindowIcon(QIcon('launcher_icon.ico')) # Set regular icon
@ -1112,7 +1112,7 @@ if __name__ == '__main__':
current_date = datetime.now() current_date = datetime.now()
# Set the application icon based on the date # Set the application icon based on the date
if (current_date.month == 12 and current_date.day >= 8) or (current_date.month == 1 and current_date.day <= 1): if (current_date.month == 12 and current_date.day >= 18) or (current_date.month == 1 and current_date.day <= 1):
app.setWindowIcon(QIcon('holiday.ico')) # Set holiday icon app.setWindowIcon(QIcon('holiday.ico')) # Set holiday icon
else: else:
app.setWindowIcon(QIcon('launcher_icon.ico')) # Set regular icon app.setWindowIcon(QIcon('launcher_icon.ico')) # Set regular icon