You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
label= (QLabel("<p style='font-size: 25pt;font-weight: bold;'>"+_("Welcome to WingetUI")+"</p><p style='font-size: 17pt;font-weight: bold;'>"+_("You may now choose your weapons")+"</p>"))
238
-
label.setAlignment(Qt.AlignmentFlag.AlignCenter)
239
-
label.setWordWrap(True)
240
-
mainLayout.addWidget(label)
241
-
label= (QLabel(_("WingetUI is based on package managers. They are the engines used to load, install update and remove software from your computer. Please select the desired package managers and hit \"Apply\" to continue. The default ones are Winget and Chocolatey")))
242
-
label.setAlignment(Qt.AlignmentFlag.AlignCenter)
243
-
label.setWordWrap(True)
244
-
mainLayout.addWidget(label)
245
-
246
-
winget=WelcomeWizardPackageManager(_("Enable {pm}").format(pm="Winget"), _("Microsoft's official package manager. It contains well known software such as browsers, PDF readers, windows add-ons and other utilities, as well as other less-known but useful software, such as Microsoft Visual C++ Redistributables. Packages from Winget have been carefully validated"), getMedia("winget"))
247
-
winget.setChecked(True)
248
-
scoop=WelcomeWizardPackageManager(_("Enable {pm}").format(pm="Scoop"), _("From scoop you will be able to download utilities that might not be suitable for everybody. Install CLI utilities such as nano, sudo or nmap for Windows. And with the ability to add custom buckets, you will be able to download unlimited amounts of different utilities, apps, fonts, games, and any other thing you can dream of."), getMedia("scoop"))
249
-
scoop.setChecked(False)
250
-
if (getSettings("ScoopAlreadySetup") orgetSettings("ScoopEnabledByAssistant")) andnotgetSettings("DisableScoop"):
251
-
scoop.setChecked(True)
252
-
choco=WelcomeWizardPackageManager(_("Enable {pm}").format(pm="Chocolatey"), _("The package manager for Windows by default. With more than {0} packages on their repositories, you will find anything you want to install. From Firefox to Sysinternals, almost every package is available to download from Chocolatey servers").format("9500"), getMedia("choco"))
0 commit comments