Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activity/activity.info1
-rw-r--r--pippy_app.py6
2 files changed, 6 insertions, 1 deletions
diff --git a/activity/activity.info b/activity/activity.info
index 537a6d0..012a970 100644
--- a/activity/activity.info
+++ b/activity/activity.info
@@ -7,5 +7,6 @@ icon = activity-icon
activity_version = 29
mime_types = text/x-python
show_launcher = yes
+
license = GPLv2+
update_url = http://wiki.laptop.org/go/Activities/G1G1
diff --git a/pippy_app.py b/pippy_app.py
index 73b8cd1..290af5f 100644
--- a/pippy_app.py
+++ b/pippy_app.py
@@ -624,7 +624,7 @@ PIPPY_DEFAULT_ICON = \
def pippy_activity_version():
"""Returns the version number of the generated activity bundle."""
- return 14
+ return 29
def pippy_activity_extra_files():
"""Returns a map of 'extra' files which should be included in the
generated activity bundle."""
@@ -654,6 +654,10 @@ def pippy_activity_bundle_id():
def pippy_activity_mime_types():
"""Return the mime types handled by the generated activity, as a list."""
return 'text/x-python'
+def pippy_activity_extra_info():
+ return """
+license = GPLv2+
+update_url = http://wiki.laptop.org/go/Activities/G1G1"""
################# ACTIVITY BUNDLER ################