Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Release 0.98.1HEADv0.98.1masterSimon Schampijer2013-02-151-1/+1
|
* ToggleToolbutton: do hide the tooltip when clicked or touchedSimon Schampijer2013-02-151-0/+4
| | | | | | | | | This is the same behaviour as for the RadioToolButton and the ToolButton. See 344c72a3beb599b76f3ac806c34b7727a258530b where we did the same for the RadioToolbutton. Signed-off-by: Simon Schampijer <simon@laptop.org> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Release 0.98.0v0.98.0Simon Schampijer2012-11-291-1/+1
|
* Release 0.97.2v0.97.2Simon Schampijer2012-11-271-1/+1
|
* RadioToolButton: hide tooltip on click #4268Simon Schampijer2012-11-271-0/+4
| | | | | | | This is the same behaviour as with the ToolButton. Signed-off-by: Simon Schampijer <simon@laptop.org> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Release 0.97.1v0.97.1Simon Schampijer2012-10-051-1/+1
|
* Backport add launch-times info to metadataGonzalo Odiard2012-10-041-0/+8
| | | | | Signed-off-by: Walter Bender <walter.bender@gmail.com> Tested-by: Gonzalo Odiard <gonzalo@laptop.org>
* Bundlebuilder: don't fail to package if git is not installed, OLPC #11341Simon Schampijer2012-08-231-2/+12
| | | | | | | | | | | | | | | When git is installed, it will return non-zero if it gets asked to list the files in a non-git-repository. The subprocess.Popen instantiation is successful in this case and the returncode attribute will contain the error code from git. The current code handles this fine and does fall back to our own source file listing facility. If git isn't installed, however, trying to instantiate subprocess.Popen will fail with OSError. We need to catch this and fall back to our own source file listing facility like we do for the non-repository case. Signed-off-by: Simon Schampijer <simon@laptop.org> Reviewed-by: Gonzalo Odiard <gonzalo@laptop.org>
* Release 0.97.0v0.97.0Simon Schampijer2012-08-161-1/+1
|
* Use json as included in Python SL #3142Simon Schampijer2012-08-081-3/+3
| | | | | | | | | We use json as included in Python. This will make Sugar dependent on Python 2.6 and Python 2.7 to have the highest JSON performance. The same patch landed in toolkit-gtk3 already. Signed-off-by: Simon Schampijer <simon@laptop.org> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Allow to build outside source directoryDaniel Narvaez2012-08-071-1/+10
| | | | | Reviewed-by: James Cameron <quozl@laptop.org> Acked-by: Simon Schampijer <simon@schampijer.de>
* presence: use RoomConfig1 to configure channel properties (#3629)Daniel Drake2012-07-031-8/+53
| | | | | | | | | | | | | | | | | | | | | | This code was still using regular Telepathy properties to set important configuration such as Anonymous=False. However, as of Telepathy specification 0.24.0, these properties have gone away. http://telepathy.freedesktop.org/spec/Channel_Type_Text.html Changed in 0.24.0. This interface used to have a bunch of clunky Telepathy.Properties. They have been removed in favour of D-Bus properties on the Room2, Subject2 and RoomConfig1 interfaces. Switch to using RoomConfig1 (where available) to set this configuration. The invite-restricted flag is no longer available and actually seems to have been removed a long while back. Fixes sharing of activities over gabble on new platforms such as Fedora 17. Signed-off-by: Daniel Drake <dsd@laptop.org>
*