Check-in [2040a91410]
Overview
| Comment: | Use plugin meta data for about dialog. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
2040a91410e956a51402f04e64727696 |
| User & Date: | mario on 2015-03-30 17:40:28 |
| Other Links: | manifest | tags |
Context
|
2015-03-30
| ||
| 17:40 | Load main module meta data. check-in: a678391248 user: mario tags: trunk | |
| 17:40 | Use plugin meta data for about dialog. check-in: 2040a91410 user: mario tags: trunk | |
|
2015-03-29
| ||
| 16:41 | Use __future__ print_function for file=sys.stderr descriptor usage. check-in: 109e332311 user: mario tags: trunk | |
Changes
Modified uikit.py from [9c82dd0573] to [b71d7199bb].
| ︙ | ︙ | |||
571 572 573 574 575 576 577 |
# Auxiliary window: about dialog
#
class AboutStreamtuner2(AuxiliaryWindow):
def __init__(self, parent):
a = gtk.AboutDialog()
| > | < | > | | | 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 |
# Auxiliary window: about dialog
#
class AboutStreamtuner2(AuxiliaryWindow):
def __init__(self, parent):
a = gtk.AboutDialog()
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()
|