User talk:Lucks: Difference between revisions

From OLPC
Jump to navigation Jump to search
(Fix for usage with OLPCGames 1.6)
Line 13: Line 13:
This patch allows KuKu to work with OLPCGames 1.6 on sugar-jhbuild as of this afternoon:
This patch allows KuKu to work with OLPCGames 1.6 on sugar-jhbuild as of this afternoon:


diff --git a/activity.py b/activity.py
<nowiki>diff --git a/activity.py b/activity.py
index c768154..9fa5cd5 100644
index c768154..9fa5cd5 100644
--- a/activity.py
--- a/activity.py
Line 30: Line 30:
\ No newline at end of file
\ No newline at end of file
+ game_size = (1200,825)
+ game_size = (1200,825)
</nowiki>

--[[User:Mcfletch|Mcfletch]] 20:00, 9 March 2008 (EDT)

Revision as of 00:00, 10 March 2008

localization

Hi! After the announcement in the sugar list about the Activity Translations page I decided to test the process... with kuku. So I grabbed the Kuku/Localization#es - kuku.po and did the Trac thing, resulting in the http://dev.laptop.org/ticket/1847

Marco apparently got confused and left some notices for you in http://dev.laptop.org/ticket/1849. --Xavi 17:30, 28 June 2007 (EDT)

kuku testing

Two review squad kids, dadoggiedude and rootbeer got stuck getting kuku to work (runs great on my machine) - totally not your fault at all; they were struggling with how to install Python and Pygame by themselves, and I couldn't help them out too much over chat. Dadoggiedude was one of the testers at the original Game Jam and really enjoyed the game, wants to try making levels - will be local to Boston in a few days, so I'll visit in person and we'll try again. Just wanted to keep you updated. Mchua 20:44, 15 July 2007 (EDT)

Fix for usage with OLPCGames 1.6

This patch allows KuKu to work with OLPCGames 1.6 on sugar-jhbuild as of this afternoon:

diff --git a/activity.py b/activity.py index c768154..9fa5cd5 100644 --- a/activity.py +++ b/activity.py @@ -1,8 +1,8 @@ -import olpcgames +from olpcgames import activity -class KukuActivity(olpcgames.activity.PyGameActivity): +class KukuActivity(activity.PygameActivity): """The classic (and boring game) as a Sugar activity.""" game_name = 'kuku' game_title = 'Kuku Anakula' - game_size = (1200,825) \ No newline at end of file + game_size = (1200,825)

--Mcfletch 20:00, 9 March 2008 (EDT)