Skip to content

Releases: thegoodduck/Dillusion

Dillusion

14 Jun 20:22
Compare
Choose a tag to compare

Here we have an updated revamped menu using for example this styles here: self.setStyleSheet(""" QMainWindow { background-color: #F5F5F5; } QToolBar { background: #FFFFFF; padding: 5px; border: none; } QTabWidget::pane { border-top: 2px solid #C2C7CB; position: absolute; top: -0.5em; background: #FFFFFF; } QTabWidget::tab-bar { alignment: center; } QTabBar::tab { background: #E0E0E0; border: 1px solid #C4C4C3; padding: 10px; border-radius: 5px; } QTabBar::tab:selected, QTabBar::tab:hover { background: #FFFFFF; } QLineEdit { border: 1px solid #C4C4C3; border-radius: 5px; padding: 5px; } QStatusBar { background: #FFFFFF; padding: 3px; } QToolButton { border: none; background: transparent; } QToolButton:hover { background: #E0E0E0; border-radius: 5px; } """) print("[DEBUG] Styles applied") we added a loading progress bar at class LoadingBar class LoadingProgressBar(QProgressBar): def __init__(self, *args, **kwargs): super(LoadingProgressBar, self).__init__(*args, **kwargs) self.setStyleSheet(""" QProgressBar { border: 2px solid grey; border-radius: 5px; text-align: center; } QProgressBar::chunk { background-color: #1E90FF; /* Blue color */ width: 10px; } """) self.setMaximum(100) self.setValue(0) self.setFormat("%v%") # Display the progress value self.setAlignment(Qt.AlignCenter) def set_download_speed(self, speed): self.setFormat(f"{self.value()}% - {speed} Mbps") we also added primitive undetectable adblocking but whitout removing elements in js if someone could do it it would be cool we dont know how to do that yet.

v.1.1.1

20 May 19:09
5d73b9b
Compare
Choose a tag to compare
v.1.1.1 Pre-release
Pre-release

Full Changelog: https://github.com/thegoodduck/Dillusion/commits/v.1.1.1
We are thrilled to anounce our first release!!!