diff --git a/wireguide/logo.png b/wireguide/logo.png deleted file mode 100644 index 9ada82d..0000000 Binary files a/wireguide/logo.png and /dev/null differ diff --git a/wireguide/wireguide b/wireguide/wireguide index 34d14d6..22f6381 100755 --- a/wireguide/wireguide +++ b/wireguide/wireguide @@ -23,7 +23,7 @@ class WireFrame(wx.Frame): # pylint: disable=too-many-ancestors,too-many-instan """ def __init__(self, *args, **kw): super().__init__(*args, **kw) - + self.SetIcon(wx.Icon(get_logo_path())) self.version = "0.0.5" # Get active conns from NetworkManager @@ -71,7 +71,12 @@ class WireFrame(wx.Frame): # pylint: disable=too-many-ancestors,too-many-instan GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program. If not, see .""" + along with this program. If not, see . + ... + + Wireguard ICON by CoreUI is licensed under CC-BY 4.0. + + """ #wx.MessageBox(about, "About WireGUIde" ,wx.OK | wx.ICON_INFORMATION) info = wx.adv.AboutDialogInfo() logo = get_logo_path() @@ -85,7 +90,7 @@ class WireFrame(wx.Frame): # pylint: disable=too-many-ancestors,too-many-instan info.SetLicence(lic_text) info.AddDeveloper('Mikael Nordin') info.AddDocWriter('Mikael Nordin') - info.AddArtist('Mikael Nordin') + info.AddArtist('CoreUI') wx.adv.AboutBox(info)