From: Ed Page Date: Fri, 24 Sep 2010 02:30:12 +0000 (-0500) Subject: Clarifying affiliation and updating dependencies X-Git-Url: http://git.maemo.org/git/?p=watersofshiloah;a=commitdiff_plain;h=8751944890714ed35b90b83ec1f555270ff79892;ds=sidebyside Clarifying affiliation and updating dependencies --- diff --git a/src/windows/_base.py b/src/windows/_base.py index 6983439..2efba0b 100644 --- a/src/windows/_base.py +++ b/src/windows/_base.py @@ -636,7 +636,7 @@ class AboutWindow(BasicWindow): self._titleLabel = gtk.Label() self._titleLabel.set_markup(""" -Mormon Channel +Waters of Shiloahl Maemo Edition Version %s """ % (constants.__version__, )) @@ -644,19 +644,30 @@ Version %s self._copyLabel = gtk.Label() self._copyLabel.set_markup(""" -(c) 2010 Intellectual Reserve, Inc. -All rights reserved. +Developed by: Ed Page +Images by: Various Sources, See COPYING for author and license information (mix of various CC licenses, commercial, and non-commercial +This application nor various images are not endorsed by The Church of Jesus Christ of Latter-day Saints """) self._copyLabel.set_property("justify", gtk.JUSTIFY_CENTER) - self._linkButton = gtk.LinkButton("http://www.lds.org") - self._linkButton.set_label("LDS.org") + self._linkButton = gtk.LinkButton("http://watersofshiloah.garage.maemo.org") + self._linkButton.set_label("Waters of Shiloah") self._linkButton.connect("clicked", self._on_website) + self._radioLinkButton = gtk.LinkButton("http://radio.lds.org") + self._radioLinkButton.set_label("Mormon Channel") + self._radioLinkButton.connect("clicked", self._on_website) + + self._ldsLinkButton = gtk.LinkButton("http://www.lds.org") + self._ldsLinkButton.set_label("LDS.org") + self._ldsLinkButton.connect("clicked", self._on_website) + self._spacedLayout = gtk.VBox(True) self._spacedLayout.pack_start(self._titleLabel, False, False) self._spacedLayout.pack_start(self._copyLabel, False, False) self._spacedLayout.pack_start(self._linkButton, False, False) + self._spacedLayout.pack_start(self._radioLinkButton, False, False) + self._spacedLayout.pack_start(self._ldsLinkButton, False, False) self._separator = gtk.HSeparator() self._presenter = presenter.NavControl(self._player, self._store) diff --git a/support/builddeb.py b/support/builddeb.py index fa86426..a99e14c 100755 --- a/support/builddeb.py +++ b/support/builddeb.py @@ -12,13 +12,15 @@ import constants __appname__ = constants.__app_name__ -__description__ = """Player for inspirational streaming radio and audiobooks including the KJV Bible +__description__ = """Streaming media player for inspirational streaming radio and audiobooks including the KJV Bible Supports streaming: * "Mormon Channel" inspirational radio station * Conference precedings and magazines from The Church of Jesus Christ of Latter-day Saints * Scriptures, including King James Version of the Bible and the Book of Mormon . -Homepage: +.This application is not endorsed by The Church of Jesus Christ of Latter-day Saints +. +Homepage: http://watersofshiloah.garage.maemo.org """ __author__ = "Ed Page" __email__ = "eopage@byu.net" @@ -79,9 +81,9 @@ def build_package(distribution): ]) maemoSpecificDepends = ", python-osso | python2.5-osso, python-hildon | python2.5-hildon" p.depends += { - "debian": ", python-glade2", - "diablo": maemoSpecificDepends + "", - "fremantle": maemoSpecificDepends + ", python-glade2", + "debian": "", + "diablo": maemoSpecificDepends, + "fremantle": maemoSpecificDepends, }[distribution] p.recommends = ", ".join([ ])