Remove sun-java and flash plugins update check

This commit is contained in:
Silvan Calarco 2021-09-19 11:04:44 +02:00
parent dceafaa52c
commit 8879cd3695

View File

@ -1,6 +1,6 @@
#!/usr/bin/python3 #!/usr/bin/python3
# mambatray 2 # mambatray 2
# Copyright (C) 2011-2020 by Silvan Calarco # Copyright (C) 2011-2021 by Silvan Calarco
# Copyright (C) 2011 by michiamophil # Copyright (C) 2011 by michiamophil
# Distributed under the terms of the GPL version 3 FLOSS License # Distributed under the terms of the GPL version 3 FLOSS License
# #
@ -25,9 +25,8 @@ class SystemTrayIcon(QSystemTrayIcon):
global w, contatore, srpm, lista, NetsrpmsArg, nOre, desktop_session global w, contatore, srpm, lista, NetsrpmsArg, nOre, desktop_session
nOre = 2 nOre = 2
srpm = [ srpm = [
"skype", "flashplugin", "win32codecs", "msttcorefonts", "b43-firmware", "skype", "win32codecs", "msttcorefonts", "b43-firmware",
"sun-java", "virtualbox-extension-pack", "chromium-pepper-flash", "virtualbox-extension-pack", "chromium-widevine", "spotify"
"chromium-widevine", "spotify"
] ]
NetsrpmsArg = "-c" NetsrpmsArg = "-c"
lista = [] lista = []
@ -143,7 +142,7 @@ class SystemTrayIcon(QSystemTrayIcon):
version = _("Error: Unable to find /etc/openmamba-release") version = _("Error: Unable to find /etc/openmamba-release")
QMessageBox.about(self.menu, _("About"), QMessageBox.about(self.menu, _("About"),
"<center><b>"+_("openmamba control center")+"</b>" "<center><b>"+_("openmamba control center")+"</b>"
"<br><br>Copyright(c) 2011-2020 by Silvan Calarco" "<br><br>Copyright(c) 2011-2021 by Silvan Calarco"
"<br>Copyright(c) 2011 by michiamophil" "<br>Copyright(c) 2011 by michiamophil"
"<br><br><b>"+_("System info:")+"</b></center>" "<br><br><b>"+_("System info:")+"</b></center>"
""+_(version)+"<center><a href=\"https://openmamba.org\">https://openmamba.org</a></center>") ""+_(version)+"<center><a href=\"https://openmamba.org\">https://openmamba.org</a></center>")