Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSoaS user <liveuser@localhost.localdomain>2010-06-27 17:37:45 (GMT)
committer SoaS user <liveuser@localhost.localdomain>2010-06-27 17:37:45 (GMT)
commit7d524a64a163197a6954da5b5a1f430a50250586 (patch)
tree99faa2ac011a1c1a23249bdabc3d679ac4127cd3
parentd3f13b941ac97695fdf83efb272f41f468c88bf7 (diff)
Update README.txt, bump version number.v1.1
-rw-r--r--README.txt11
-rw-r--r--sugargame/__init__.py2
2 files changed, 11 insertions, 2 deletions
diff --git a/README.txt b/README.txt
index e14842f..c0ac366 100644
--- a/README.txt
+++ b/README.txt
@@ -4,6 +4,8 @@ Sugargame is a Python package which allows [http://www.pygame.org/ Pygame]
programs to run well under Sugar.
It is fork of the olcpgames framework, which is no longer maintained.
+http://git.sugarlabs.org/projects/sugargame
+
What it does:
* Wraps a Sugar activity around an existing Pygame program with few changes
@@ -99,6 +101,9 @@ main loop, remember to dispatch GTK messages using gtk.main_iteration().
elif event.type == pygame.VIDEORESIZE:
pygame.display.set_mode(event.size, pygame.RESIZABLE)
+ # Check the mouse position
+ x, y = pygame.mouse.get_pos()
+
# Clear Display
screen.fill((255,255,255)) #255 for white
@@ -124,5 +129,9 @@ the One Laptop Per Child project.
=== Changelog ===
+====v1.1====
+* Fix bugs in event handling. (Pablo Moleri)
+* Remove reference to gtk.Socket.get_window() method, which is missing in older versions of PyGTK.
+
====v1.0====
-Initial version of Sugargame
+* Initial version of Sugargame
diff --git a/sugargame/__init__.py b/sugargame/__init__.py
index 7e49527..439eb0c 100644
--- a/sugargame/__init__.py
+++ b/sugargame/__init__.py
@@ -1 +1 @@
-__version__ = '1.0'
+__version__ = '1.1'