Activities/XoEditor: Difference between revisions
| Line 45: | Line 45: | ||
== Where to report problems == | == Where to report problems == | ||
You can report bugs and make feature requests [https://bugs.sugarlabs.org/newticket?component=Portfolio on our bug-tracking system] (You need to create an account first). To list all open tickets of XOEditor you can use [https://bugs.sugarlabs.org/query?status=accepted&status=assigned&status=new&status=reopened&component=Xoeditor query component=Xoeditor]. You are also welcome to leave comments/suggestions on the [[Talk:Activities/XoEditor]] page. | You can report bugs and make feature requests [https://bugs.sugarlabs.org/newticket?component=Portfolio on our bug-tracking system] (You need to create an account first). To list all open tickets of XOEditor you can use [https://bugs.sugarlabs.org/query?status=accepted&status=assigned&status=new&status=reopened&component=Xoeditor query component=Xoeditor]. You are also welcome to leave comments/suggestions on the [[Talk:Activities/XoEditor]] page. | ||
== A word to developers == | |||
The [http://activities.sugarlabs.org/en-US/sugar/addons/versions/4085#version-2 original version of XOEditor] was written in Javascript and bundled into an instance of Browse. The original [[File:XOEditor.xml|XML file]] is in the wiki. As of Version 3, XOEditor has been rebased to Python. | |||
The XO colors are stored using gconf. | |||
client = gconf.client_get_default() | |||
client.set_string('/desktop/sugar/user/color', '%s,%s' % ( | |||
self._game.colors[0], self._game.colors[1])) | |||
== Credits == | |||
XOEditor was written and is maintained by [[User:Walter]]. | |||