[Sugar-devel] [ASLO] Release GCompris-15

2011-01-25 Thread Sugar Labs Activities
Activity Homepage: http://activities.sugarlabs.org/addon/4313 Sugar Platform: 0.84 - 0.88 Download Now: http://activities.sugarlabs.org/downloads/file/26968/gcompris-15.xo Release notes: * For anim activity, net.gcompris.animActivity bundle id was changed to net.gcompris.anim * Full featured

[Sugar-devel] [ASLO] Release -1

2011-01-25 Thread Sugar Labs Activities
Activity Homepage: http://activities.sugarlabs.org/addon/4297 Sugar Platform: 0.82 - 0.88 Download Now: http://activities.sugarlabs.org/downloads/file/26879/super_tux-1.xo Release notes: Sugar Labs Activities http://activities.sugarlabs.org ___

Re: [Sugar-devel] [ASLO] Release -1

2011-01-25 Thread Kevin Mauricio Benavides Castro
2011/1/25 Sugar Labs Activities activit...@sugarlabs.org Activity Homepage: http://activities.sugarlabs.org/addon/4297 Sugar Platform: 0.82 - 0.88 Download Now: http://activities.sugarlabs.org/downloads/file/26879/super_tux-1.xo Release notes: Sugar Labs Activities

[Sugar-devel] [ASLO] Release Wine-23

2011-01-25 Thread Sugar Labs Activities
Activity Homepage: http://activities.sugarlabs.org/addon/4296 Sugar Platform: 0.82 - 0.88 Download Now: http://activities.sugarlabs.org/downloads/file/26869/wine-23.xo Release notes: Sugar Labs Activities http://activities.sugarlabs.org ___

[Sugar-devel] Help Request - Python Timer

2011-01-25 Thread Art Hunkins
I'd like help to create a timer in my activity. The following code works fine. A callback button alternately selects START and STOP options in playcsd() (only crucial lines of code are included): import csndsugui from timeit import Timer self.p = False def playcsd(self, widget): if self.p

Re: [Sugar-devel] Help Request - Python Timer

2011-01-25 Thread Walter Bender
On Tue, Jan 25, 2011 at 8:58 PM, Art Hunkins abhun...@uncg.edu wrote: I'd like help to create a timer in my activity. The following code works fine. A callback button alternately selects START and STOP options in playcsd() (only crucial lines of code are included): import csndsugui from

Re: [Sugar-devel] [PATCH sugar v2] Add cpu and memory resource indicator to frame

2011-01-25 Thread Anish Mangal
pushed to dx/mainline [1] [1] http://git.sugarlabs.org/dextrose/mainline/commit/1cd4c31cd474bb84985fff97ac5f5b9e693469db On Sat, Jan 22, 2011 at 09:38, Sascha Silbe sascha-...@silbe.org wrote: From: anishmangal2002 anishmangal2...@gmail.com This patch adds an icon to the frame, whose palette

Re: [Sugar-devel] Help Request - Python Timer

2011-01-25 Thread James Cameron
G'day Art, I would not use Timer for that. Instead, I would call gobject.timeout_add(3, playcsd) As a result, the playcsd function will be called after 30 seconds, and if it returns True it will be called in another 30 seconds. Your playcsd function currently does not return True, so it