From 7d524a64a163197a6954da5b5a1f430a50250586 Mon Sep 17 00:00:00 2001 From: SoaS user Date: Sun, 27 Jun 2010 17:37:45 +0000 Subject: Update README.txt, bump version number. --- 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' -- cgit v0.9.1