Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Lee <joe@jotaro.com>2008-07-18 04:09:44 (GMT)
committer Joe Lee <joe@jotaro.com>2008-07-18 04:09:44 (GMT)
commite4c5b59550608cdf8fa41a12278cdd280ad11221 (patch)
treeaba26230688b9a2414b3dc06c4b850dbf2f75c86
parent8924a050740da54d7d652048532f8552047c3807 (diff)
Release version 4.
-rw-r--r--MANIFEST1
-rw-r--r--NEWS6
-rw-r--r--activity/activity.info2
-rw-r--r--implodeactivity.py4
-rw-r--r--setup.py2
5 files changed, 10 insertions, 5 deletions
diff --git a/MANIFEST b/MANIFEST
index e50be7d..f4978a0 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -16,5 +16,4 @@ implodegame.py
po/Implode.pot
po/ar.po
setup.py
-MANIFEST
NEWS
diff --git a/NEWS b/NEWS
index 5f76380..0444a52 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+4
+
2007/08/09 - Version 1 released.
@@ -29,6 +31,10 @@
- Added Journal suspend/resume.
- Version 3 released.
+2008/07/17
+
+ - Updated to run with new version of Sugar API.
+
TODO:
- The game could detect a loss and display a "Try again" graphic?
- Rectangle invalidation could be improved.
diff --git a/activity/activity.info b/activity/activity.info
index 7b98f50..690ff16 100644
--- a/activity/activity.info
+++ b/activity/activity.info
@@ -1,6 +1,6 @@
[Activity]
name = Implode
-activity_version = 3
+activity_version = 4
service_name = com.jotaro.ImplodeActivity
icon = activity-implode
class = implodeactivity.ImplodeActivity
diff --git a/implodeactivity.py b/implodeactivity.py
index 2141309..7dbd963 100644
--- a/implodeactivity.py
+++ b/implodeactivity.py
@@ -136,9 +136,9 @@ class _Toolbox(ActivityToolbox):
levels = []
def add_level_button(icon_name, tooltip, signal_name):
if levels:
- button = RadioToolButton(icon_name, levels[0])
+ button = RadioToolButton(named_icon=icon_name, group=levels[0])
else:
- button = RadioToolButton(icon_name)
+ button = RadioToolButton(named_icon=icon_name)
levels.append(button)
toolbar.add(button)
diff --git a/setup.py b/setup.py
index cbaf2c9..211f104 100644
--- a/setup.py
+++ b/setup.py
@@ -2,4 +2,4 @@
from sugar.activity import bundlebuilder
if __name__ == "__main__":
- bundlebuilder.start('Implode')
+ bundlebuilder.start()