@@ -573,13 +573,14 @@
 # Auxiliary window: about dialog
 #
 class AboutStreamtuner2(AuxiliaryWindow):
     def __init__(self, parent):
         a = gtk.AboutDialog()
-        a.set_version(parent.__version__)
-        a.set_name("streamtuner2")
-        a.set_license("Public Domain\n\nNo Strings Attached.\nUnrestricted distribution,\nmodification, use.")
-        a.set_authors(["Mario Salzer <http://mario.include-once.org/>\n\nConcept based on streamtuner 0."+"99."+"99 from\nJean-Yves Lefort, of which some code remains\nin the Google stations plugin.\n<http://www.nongnu.org/streamtuner/>\n\nMyOggRadio plugin based on cooperation\nwith Christian Ehm. <http://ehm-edv.de/>"])
-        a.set_website("http://milki.include-once.org/streamtuner2/")
+        a.set_name(parent.meta["id"])
+        a.set_version(parent.meta["version"])
+        a.set_license(parent.meta["license"])
+        a.set_authors(parent.meta["author"].split(","))
+        #["Mario Salzer <http://mario.include-once.org/>\n\nConcept based on streamtuner 0."+"99."+"99 from\nJean-Yves Lefort, of which some code remains\nin the Google stations plugin.\n<http://www.nongnu.org/streamtuner/>\n\nMyOggRadio plugin based on cooperation\nwith Christian Ehm. <http://ehm-edv.de/>"])
+        a.set_website(parent.meta["url"])
         a.connect("response", lambda a, ok: ( a.hide(), a.destroy() ) )
         a.show()