AUTHORS        |   93 -
 CMakeLists.txt |   40 
 ChangeLog      | 4088 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 NEWS           |   28 
 VERSION        |    2 
 ccm/Window.py  |    4 
 6 files changed, 4182 insertions(+), 73 deletions(-)

New commits:
commit c3a3864d0d05ce3660f9adc6ab1ad7c30b5d8612
Author: Janos Guljas <[email protected]>
Date:   Tue Aug 2 04:02:20 2011 +0200

    Imported Upstream version 0.9.5.0

diff --git a/AUTHORS b/AUTHORS
index 670cb0d..b1360c0 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,46 +1,47 @@
-Lead Developers:
---------------------------------------------
-       
-       Patrick Niklaus <[email protected]>
-       Quinnstorm <[email protected]>
-
-
-Contributors:
---------------------------------------------
-       Andrew Wedderburn(artwork) <[email protected]>
-       CCSM icon set is based on the Gnome Icon Set from current SVN. Thanks a 
lot to them. Keep on the great work. :-)
-       Guillaume Seguin <[email protected]>
-       Michael Vogt <[email protected]>
-       Dennis Kasprzyk <[email protected]>
-
-Translators:
---------------------------------------------
-       de      Patrick Niklaus <[email protected]>, Danny Baumann 
<[email protected]>, Nick Bauermeister <[email protected]>, Thorsten Sperber 
<[email protected]>,  Markus Latarius <[email protected]>, Johannes Engel 
<[email protected]>
-       el      Δημήτρης (djdoo) <[email protected]>, Βασίλης (Aneurysm) 
<[email protected]>, Κώστας (diafanos) <[email protected]>, Thodo Mitch 
(Teddy) <[email protected]>, Dimman Ramone (dimmanramone) 
<[email protected]>
-       fr      iXce - Guillaume Seguin <[email protected]>, Sylvain Debray 
(syldeb35) <[email protected]>, xsnake - Carl Garand 
<[email protected]>
-       gu      Ankit Patel <[email protected]>
-       it      Marco Trevisan (Treviño) <[email protected]>, Fabio Fiorentini 
(Ahren / FaBBio) <[email protected]>, Andrea De Iacovo 
(Firstbit)<[email protected]>, Emiliano Perulli 
<[email protected]>
-       pl      Karol Sikora (elektrrrus) <elektrrrus at gmail dot com>, Adam 
Kremienowski (kremien) <akremien at gmail dot com>, Jakub Chromiak 
(silverado)<[email protected]>, Mariusz Fik (fisiu) <[email protected]> 
-       pt      Nicolau Goncalves (Excentrik) <[email protected]>
-       sv      Daniel Nylander <[email protected]>, Erik Eloff (Loffe) 
<[email protected]>
-       zh      Thruth Wang <[email protected]>
-
-Note: 
--------------------------------------------------------------------------------
-If you have contributed something significant to ccsm 
-and your name is missing here, please email the lead developers 
-with your Full name, email address, country and a brief 
-reminder of what you have done.
-
-Format :
--------------------------------------------------------------------------------
-In order to parse AUTHORS files some rules must be followed :
-
-1 - Each first chapter line must end by ':'
-The recognized chapter names are :
-"Developer:", "Developers:", "Contributors:", Note:", "Website:", 
"Documenters:"
-and "Translators:".
-
-2 - Each item of the "Translators" chapter must begin by the locale keyword.
-This keyword must be followed by a space.
-        
+Alex Heck <[email protected]>
+Andrew Riedi <[email protected]>
+Andrew Wedderburn <[email protected]>
+Artur Flina <[email protected]>
+C-F Language team <[email protected]>
+C-F language team <[email protected]>
+Christopher Williams <[email protected]>
+Christopher Williams <[email protected]>
+Compiz Fusion l10n team <[email protected]>
+Danny Baumann <[email protected]>
+Danny Baumann <[email protected]>
+Dennis Kasprzyk <[email protected]>
+Dennis Kasprzyk <[email protected]>
+Didier Roche <[email protected]>
+Dominique Leuenberger <[email protected]>
+Dominique Leuenberger <[email protected]>
+Eren Türkay <[email protected]>
+Erkin Bahceci <[email protected]>
+Guillaume Seguin <[email protected]>
+Jigish Gohil <[email protected]>
+Jigish Gohil <cyberorg@prime.(none)>
+Jigish Gohil <[email protected]>
+Joe Rusbasan <[email protected]>
+Masaaki KANEMOTO <[email protected]>
+Michael Monreal <[email protected]>
+Michael Vogt <[email protected]>
+Milo Casagrande <[email protected]>
+Nicolau Gonçalves <[email protected]>
+Patrick Niklaus <[email protected]>
+Patrick Niklaus <[email protected]>
+Quinn Storm <quinn@darter.(none)>
+Quinn Storm <[email protected]>
+Sam Spilsbury <[email protected]>
+Sam Spilsbury <[email protected]>
+Sam Spilsbury <smspillaz@XPS-FEDORA.(none)>
+Sam Spilsbury <[email protected]>
+Scott Moreau <[email protected]>
+Silvia Dobrota <[email protected]>
+Sylvain Debray <[email protected]>
+Travis Watkins <[email protected]>
+Treviño - 3v1n0 <[email protected]>
+compiz <[email protected]>
+language team <[email protected]>
+marex <[email protected]>
+quinn <[email protected]>
+root <[email protected]>
+Δημήτρης (djdoo) <[email protected]>
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..1fd971d
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,40 @@
+find_package (CompizConfig REQUIRED)
+include (LibCompizConfigCommon)
+
+# Hack
+set (CMAKE_PROJECT_NAME ccsm)
+
+file (READ ${CMAKE_SOURCE_DIR}/VERSION COMPIZ_RELEASE_VERSION LIMIT 12 OFFSET 
0)
+string (STRIP ${COMPIZ_RELEASE_VERSION} COMPIZ_RELEASE_VERSION)
+
+set (VERSION ${COMPIZ_RELEASE_VERSION})
+
+add_custom_target (python ALL
+                   COMMAND python setup.py build
+                   WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
+                   COMMENT "Generating Python Bytecode")
+
+add_custom_target (install
+                  COMMAND python setup.py install 
--prefix=${CMAKE_INSTALL_PREFIX}
+                  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
+                  COMMENT "Installing Python Files")
+
+add_custom_target (clean
+                  COMMAND python setup.py clean
+                  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
+                  COMMENT "Cleaning Python Files")
+
+add_custom_target (uninstall
+                  COMMAND python setup.py uninstall
+                  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
+                  COMMENT "Uninstalling Python Files")
+
+compiz_print_configure_header ("CompizConfig Settings Manager")
+compiz_print_configure_footer ()
+
+compiz_add_git_dist ()
+compiz_add_distcheck ()
+compiz_add_release ()
+compiz_add_release_signoff ()
+
+
diff --git a/ChangeLog b/ChangeLog
index e69de29..54d7863 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -0,0 +1,4088 @@
+Sam Spilsbury <[email protected]>    2011-07-08
+
+    Add hack to make distcheck work, project () only works on C/CXX projects
+    but not for python ones
+
+Sam Spilsbury <[email protected]>    2011-07-07
+
+    Add CMake wrapper buildsystem
+
+Scott Moreau <[email protected]>        2011-05-13
+
+    * Bump version to 0.9.5
+
+Didier Roche <[email protected]>     2011-03-17
+
+    Fix a crash with the -p and -C options
+
+Sam Spilsbury <[email protected]>    2011-03-07
+
+    "Bump VERSION to 0.9.4"
+
+Sam Spilsbury <[email protected]>    2011-03-07
+
+    "Update news for 0.9.4 release"
+
+Silvia Dobrota <[email protected]>       2011-02-24
+
+    [PATCH] Focus filter entry on return to main page
+
+Sam Spilsbury <[email protected]>    2011-02-23
+
+    Explcitly convert list items to str for now
+
+Joe Rusbasan <[email protected]>   2011-02-22
+
+    Fix typo
+
+Patrick Niklaus <[email protected]>      2011-02-12
+
+    Replaced libsexy code with gtk entry
+
+Patrick Niklaus <[email protected]>      2011-02-12
+
+    Removed the libsexy import
+
+Patrick Niklaus <[email protected]>      2011-02-12
+
+    Python 3 syntax and minor cleanup
+    
+    Removed functions that are deprecated in python 3.x,
+    renamed variables to not overwrite buildin functions,
+    removed libsexy code and some other minor cleanups.
+
+Sam Spilsbury <[email protected]>    2010-11-06
+
+    Update NEWS for 0.9.2.1 Release
+
+Sam Spilsbury <[email protected]>    2010-11-06
+
+    Update to 0.9.2.1
+
+Sam Spilsbury <[email protected]>    2010-10-24
+
+    Fix date on NEWS
+
+Sam Spilsbury <[email protected]>    2010-10-24
+
+    Update NEWS for 0.9.2
+
+Sam Spilsbury <[email protected]>    2010-10-24
+
+    0.9.2 icons refresh
+
+Sam Spilsbury <[email protected]>    2010-07-04
+
+    Update NEWS for a 0.9.0 release
+
+Sam Spilsbury <[email protected]>    2010-07-04
+
+    Update package info
+
+Sam Spilsbury <[email protected]>    2010-07-04
+
+    Bump version
+
+Sam Spilsbury <[email protected]>    2010-07-04
+
+    Icon refresh for tango icon set
+
+Merge: 0365dd8 d251e44
+Sam Spilsbury <[email protected]>    2010-06-06
+
+    Merge branch 'master' of 
git+ssh://git.compiz.org/git/compiz/compizconfig/ccsm
+
+Dominique Leuenberger <[email protected]>      2010-06-06
+
+    Force a .profile extension
+
+Dominique Leuenberger <[email protected]>      2010-06-02
+
+    A shebang is confusing in those files: they are a) installed -x, and as 
such the shebang is useless b) installed in a folder that is out of $PATH c) 
not meant to be started on their own. They are import(ed) by others.
+
+Christopher Williams <[email protected]> 2010-05-06
+
+    Don't destroy match dialog before reading contents
+    
+    That was never correct, but it worked in previous versions of gtk+ because 
a
+    reference to the Entry was held. Gtk+-2.20 stores the text in an 
EntryBuffer
+    object, which was getting unreffed and collected before ccsm could read the
+    text.
+
+Sam Spilsbury <smspillaz@XPS-FEDORA.(none)>    2010-05-06
+
+    Added 0.9.0's copytex plugin icon
+
+Merge: 7178dce 241e687
+Sam Spilsbury <smspillaz@XPS-FEDORA.(none)>    2010-05-05
+
+    Merge branch 'master' of 
git+ssh://git.compiz.org/git/compiz/compizconfig/ccsm
+
+Sam Spilsbury <smspillaz@XPS-FEDORA.(none)>    2010-05-05
+
+    Add icons for new plugins in the 0.9.x series
+
+Scott Moreau <[email protected]>        2010-04-02
+
+    Rename icons to reflect plugin changes.
+
+Scott Moreau <[email protected]>        2010-02-14
+
+    Increase max buttons to 20.
+
+Guillaume Seguin <[email protected]>   2009-10-14
+
+    Fix charsets
+    (cherry picked from commit 0ff1b0a890ec9b817beaaad23d66b85a892a0bf3)
+
+Guillaume Seguin <[email protected]>   2009-10-13
+
+    Update translations
+
+Erkin Bahceci <[email protected]>     2009-09-24
+
+    Fix missing parameter in ImportProfileAs.
+
+Sam Spilsbury <smspillaz@XPS-FEDORA.(none)>    2009-08-29
+
+    Fix decoration plugin icon
+
+Erkin Bahceci <[email protected]>     2009-08-26
+
+    Fix opening preferences page.
+
+Erkin Bahceci <[email protected]>     2009-08-21
+
+    Fix typos.
+
+Erkin Bahceci <[email protected]>     2009-03-29
+
+    Track compizconfig changes.
+
+C-F Language team <[email protected]>   2009-03-24
+
+    l10n updates
+
+Guillaume Seguin <[email protected]>   2009-03-09
+
+    * Bump version to 0.8.3
+
+Guillaume Seguin <[email protected]>   2009-03-09
+
+    * Bump version to 0.8.2
+
+Patrick Niklaus <[email protected]>    2009-02-24
+
+    Revert "Remove zoom plugin icon"
+    
+    This reverts commit d7b7e5f2fd5c34e110a63a744995a0de3722177c.
+
+Patrick Niklaus <[email protected]>    2009-02-24
+
+    Added new plugin icons
+    
+    * Commands plugin
+    * Gnome-Compatibility plugin
+
+Patrick Niklaus <[email protected]>    2009-02-23
+
+    Change integrated setting style from blue text color to italic
+
+C-F Language team <[email protected]>   2009-02-06
+
+    l10n updates
+
+C-F Language team <[email protected]>   2008-12-26
+
+    l10n updates
+
+Patrick Niklaus <[email protected]>    2008-12-19
+
+    Remove zoom plugin icon
+
+Jigish Gohil <[email protected]>   2008-12-17
+
+    enable hu in LINGUAS
+
+C-F Language team <[email protected]>   2008-12-15
+
+    l10n updates
+
+Erkin Bahceci <[email protected]>     2008-11-11
+
+    Fix background icon loading when plugins are filtered early.
+    
+    This fixes the background loading of plugin icons when the user
+    types something in the filter box right after launching ccsm
+    before icon loading is finished.
+
+C-F Language team <[email protected]>   2008-11-04
+
+    re-add zh_CN
+
+C-F Language team <[email protected]>   2008-11-04
+
+    l10n updates
+
+Christopher Williams <[email protected]> 2008-10-22
+
+    Remove conditional expression for python 2.4 compatibility
+
+Erkin Bahceci <[email protected]>     2008-10-18
+
+    Speed up startup by loading icons in the background.
+    
+    Plugin icons for all categories except the topmost three
+    will be loaded in the background.
+
+C-F Language team <[email protected]>   2008-10-14
+
+    l10n updates
+
+Patrick Niklaus <[email protected]>    2008-10-08
+
+    Fix text color for NewHumanTheme, closes bug 1025.
+
+Patrick Niklaus <[email protected]>    2008-10-06
+
+    Right, plane was also removed.
+
+Patrick Niklaus <[email protected]>    2008-10-06
+
+    Remove obsolete icons.
+
+Guillaume Seguin <[email protected]>   2008-09-23
+
+    * Bump version to 0.7.9
+
+Guillaume Seguin <[email protected]>   2008-09-23
+
+    * Bump version to 0.7.8
+
+Christopher Williams <[email protected]> 2008-09-17
+
+    Attempt to support dbus-python 0.80.0 and up for single-instance support
+
+C-F Language team <[email protected]>   2008-09-15
+
+    l10n updates
+
+Christopher Williams <[email protected]> 2008-09-12
+
+    Use correct boolean value ('true') in desktop file
+
+Christopher Williams <[email protected]> 2008-09-10
+
+    Only use gtk.Window.present() if the new window has no startup
+    notification id
+
+Merge: a48de2b 674e2c0
+Christopher Williams <[email protected]> 2008-09-10
+
+    Merge branch 'master' of 
git+ssh://[email protected]/git/fusion/compizconfig/ccsm
+
+Erkin Bahceci <[email protected]>     2008-09-09
+
+    Use metadata order for groups/subgroups instead of sorting them.
+
+Christopher Williams <[email protected]> 2008-09-08
+
+    Add startup notification and optional dbus single-instance support
+
+Christopher Williams <[email protected]> 2008-09-03
+
+    Use the pango.WrapMode enum instead of gtk.WrapMode for the gtk.Label
+    wrap-mode property.
+    
+    This fixes enumeration type errors with recent pygobject.
+
+Patrick Niklaus <[email protected]>    2008-09-03
+
+    Added option name to setting tooltip
+
+Patrick Niklaus <[email protected]>    2008-09-03
+
+    Make use of the new tooltip system introduced in GTK 2.12
+
+Patrick Niklaus <[email protected]>    2008-09-03
+
+    Do not allow empty values for matches, fixes bug 1043
+
+Patrick Niklaus <[email protected]>    2008-09-01
+
+    Added icon for animation addon plugin.
+
+Merge: 4e0f518 84a66c7
+Erkin Bahceci <[email protected]>     2008-08-30
+
+    Merge branch 'master' of 
git+ssh://[email protected]/git/fusion/compizconfig/ccsm
+
+Erkin Bahceci <[email protected]>     2008-08-30
+
+    Fix crash when New button is pressed in restricted string lists.
+
+C-F Language team <[email protected]>   2008-08-30
+
+    l10n updates
+
+Erkin Bahceci <[email protected]>     2008-08-29
+
+    Postpone page refresh on initializing extension plugin.
+    
+    Postpone refreshing current page on initializing an extension plugin
+    until any open dialog is closed.
+
+Merge: 76399da 0e81d3a
+Erkin Bahceci <[email protected]>     2008-08-29
+
+    Merge branch 'master' of 
git+ssh://[email protected]/git/fusion/compizconfig/ccsm
+
+Erkin Bahceci <[email protected]>     2008-08-29
+
+    Fix crash when initializing an extension plugin while in prefs page.
+    
+    Also destroy open dialogs when current plugin page is refreshed on 
initializing
+    an extension plugin.
+
+Danny Baumann <[email protected]>    2008-08-29
+
+    Translate N/A string.
+
+Erkin Bahceci <[email protected]>     2008-08-29
+
+    Handle invalid value in restricted string flag options.
+    
+    If a value is selected in restricted string flag option (single list
+    of restr. strings) that is not currently provided by any extension
+    plugin, then ignore those values.
+
+Erkin Bahceci <[email protected]>     2008-08-28
+
+    Show N/A for invalid restricted string value.
+    
+    This might happen when the currently selected value is provided by an
+    extension plugin but that plugin is not currently loaded.
+
+Erkin Bahceci <[email protected]>     2008-08-28
+
+    Fix setting current page when extension plugin is initialized.
+
+Erkin Bahceci <[email protected]>     2008-08-27
+
+    Add support for restricted string options and extensions.
+
+Erkin Bahceci <[email protected]>     2008-08-26
+
+    Pass on AutoResolve during recursion in PluginConflict.
+
+Patrick Niklaus <[email protected]>    2008-08-13
+
+    A little bit extra padding for the category header
+
+Patrick Niklaus <[email protected]>    2008-08-13
+
+    Translate category names in main view. Fixes bug 1026.
+
+C-F Language team <[email protected]>   2008-08-07
+
+    l10n updates
+
+Patrick Niklaus <[email protected]>    2008-07-31
+
+    Added icon for obs, removed icon for bs.
+
+C-F Language team <[email protected]>   2008-07-09
+
+    new translations and updates
+
+Patrick Niklaus <[email protected]>    2008-06-24
+
+    Do not crash in the about dialog when no icon for ccsm is present
+
+Patrick Niklaus <[email protected]>    2008-06-20
+
+    Do not show popup windows in the taskbar
+
+Patrick Niklaus <[email protected]>    2008-06-19
+
+    Added new icon for plugin stackswitch
+
+Christopher Williams <[email protected]> 2008-06-17
+
+    Escape markup in all conflict dialog messages.
+    
+    This fixes broken dialogs when setting or plugin ShortDescs contain
+    ampersands.
+
+C-F Language team <[email protected]>   2008-06-16
+
+    remove zh_CN for now as it has 0 translated strings
+
+C-F Language team <[email protected]>   2008-06-16
+
+    new translations and updates
+
+Patrick Niklaus <[email protected]>    2008-06-08
+
+    Added icon for static switcher
+
+Guillaume Seguin <[email protected]>   2008-05-31
+
+    * Bump version to 0.7.7
+
+Guillaume Seguin <[email protected]>   2008-05-31
+
+    * Bump version to 0.7.6
+
+C-F Language team <[email protected]>   2008-05-24
+
+    translation updates
+
+Patrick Niklaus <[email protected]>    2008-05-22
+
+    Added bicubic filtering icon
+
+Patrick Niklaus <[email protected]>    2008-05-12
+
+    Added new cubeaddon icon, removed cubereflex and cubecaps
+
+Patrick Niklaus <[email protected]>    2008-05-11
+
+    Check info lenght before trying to access one if its items
+
+Patrick Niklaus <[email protected]>    2008-05-10
+
+    New 32x32 category icons
+
+Patrick Niklaus <[email protected]>    2008-05-10
+
+    Revert "use background color for viewport background instead of base 
color, fixes dark themes"
+    
+    This reverts commit 2470bbdb573ab6c896c5cd7fd5b7a02f6e3e3c04, which broke 
the background color for all themes.
+
+Patrick Niklaus <[email protected]>    2008-05-10
+
+    Fixed translation for desktop file, thanks to Milo Casagrande
+
+Travis Watkins <[email protected]>   2008-05-08
+
+    use background color for viewport background instead of base color, fixes 
dark themes
+
+Guillaume Seguin <[email protected]>   2008-05-08
+
+    Fix French translation
+
+Guillaume Seguin <[email protected]>   2008-05-06
+
+    Correctly filter uncategorized plugins using categories list on the left
+
+C-F Language team <[email protected]>   2008-05-02
+
+    translation updates
+
+Christopher Williams <[email protected]> 2008-04-27
+
+    Improve internal action conflict logic.
+    
+    Conflicts with internal actions are now checked when setting global
+    actions. Only internal actions in different plugins can coexist with the
+    same values.
+
+Christopher Williams <[email protected]> 2008-04-26
+
+    Don't lower edge values in edge conflict handling to unbreak the 'disable 
conflict' resolution choice
+
+Christopher Williams <[email protected]> 2008-04-26
+
+    Flip plugin and setting names in UpdateSetting so that it will actually 
find setting widgets
+
+Christopher Williams <[email protected]> 2008-04-26
+
+    Add support for internal actions to action conflict-handling code
+
+Patrick Niklaus <[email protected]>    2008-04-26
+
+    Removed dummy and added new icon for 24x24
+
+Patrick Niklaus <[email protected]>    2008-04-26
+
+    Disable check for action conflicts when enabling a plugin, if the plugin 
conflict is auto resolved
+
+Christopher Williams <[email protected]> 2008-04-24
+
+    Remove popup dialogs when checking for action conflicts since conflict
+    checking is fast enough not to need them
+
+Christopher Williams <[email protected]> 2008-04-24
+
+    Clean up Conflict and Plugin filter code and ensure that the main plugin
+    view updates on all plugin changes
+
+Patrick Niklaus <[email protected]>    2008-04-21
+
+    Added some table padding to the category boxes
+
+Patrick Niklaus <[email protected]>    2008-04-21
+
+    Refactored MainWin code into MainPage, PluginButton, PluginWindow and 
CategoryBox
+
+Patrick Niklaus <[email protected]>    2008-04-14
+
+    Added Christopher Williams to the authors
+
+Danny Baumann <[email protected]>    2008-04-14
+
+    Fix typos and keep lines shorter than 80 characters.
+
+Danny Baumann <[email protected]>    2008-04-14
+
+    Fix typos.
+
+Patrick Niklaus <[email protected]>    2008-04-13
+
+    Minor coding style fix
+
+Patrick Niklaus <[email protected]>    2008-04-13
+
+    Check for action conflicts when enabling a plugin
+
+Patrick Niklaus <[email protected]>    2008-04-13
+
+    Split ActionConflict code into 3 child classes
+
+Patrick Niklaus <[email protected]>    2008-04-06
+
+    Set the none value of number settings always to the minum value
+
+Guillaume Seguin <[email protected]>   2008-04-04
+
+    * Bump version to 0.7.5
+
+Guillaume Seguin <[email protected]>   2008-04-04
+
+    * Bump version to 0.7.4
+
+Patrick Niklaus <[email protected]>    2008-04-04
+
+    Gray out ReadOnly settings
+
+Christopher Williams <[email protected]>        2008-04-03
+
+    Fix UpdateSettings method
+
+Merge: b8ecfc6 e2ce3fa
+Christopher Williams <[email protected]>        2008-04-03
+
+    Merge branch 'master' of 
git+ssh://[email protected]/git/fusion/compizconfig/ccsm
+
+Christopher Williams <[email protected]>        2008-04-03
+
+    Add accidentally removed UpdateSetting method to Updater
+
+Danny Baumann <[email protected]>    2008-04-03
+
+    Fix charset.
+
+Danny Baumann <[email protected]>    2008-04-03
+
+    translation updates
+
+C-F Language team <[email protected]>   2008-04-03
+
+    translation updates
+
+Danny Baumann <[email protected]>    2008-04-03
+
+    Update German translation.
+
+Christopher Williams <[email protected]>        2008-04-02
+
+    Fix going backward with the selector buttons in Advanced Search
+
+Christopher Williams <[email protected]>        2008-04-02
+
+    Use a regular dict with the setdefault method to support python 2.4
+
+Christopher Williams <[email protected]>        2008-04-02
+
+    Remove List row on Delete key press
+
+Christopher Williams <[email protected]>        2008-04-02
+
+    Always call modify_fg and modify_bg in in callbacks to the "style-set" 
signal so that the color updates on theme changes. Also use base instead of 
light for the color on the main background so that the right color is used with 
dark themes.
+
+Merge: d35e3e4 3e68e7a
+Christopher Williams <[email protected]>        2008-04-02
+
+    Merge branch 'master' of 
git+ssh://[email protected]/git/fusion/compizconfig/ccsm
+
+Christopher Williams <[email protected]>        2008-04-02
+
+    Update plugin buttons whenever a change is made on the Preferences page 
that could affect them
+
+Christopher Williams <[email protected]>        2008-04-02
+
+    Advanced Search rewrite
+
+Guillaume Seguin <[email protected]>   2008-04-02
+
+    * Add --version/-v command line switch
+
+Guillaume Seguin <[email protected]>   2008-04-02
+
+    * Coding style (try to avoid going over 80 columns whenever possible)
+
+Christopher Williams <[email protected]>        2008-04-01
+
+    Unbreak error box on plugin table
+
+Christopher Williams <[email protected]>        2008-04-01
+
+    Hide main widgets when showing a secondary page instead of removing them 
and set the default icon name
+
+Christopher Williams <[email protected]>        2008-03-29
+
+    Reuse main window page when returning from plugin pages, and try to ensure 
that the left pane's size does not change
+
+Christopher Williams <[email protected]>        2008-03-28
+
+    Reorganise and optimise setting filter code
+
+Christopher Williams <[email protected]>        2008-03-27
+
+    Increase the default size of the list edit dialog to 500 and add some 
padding
+
+Christopher Williams <[email protected]>        2008-03-27
+
+    Allow line wrapping on the labels for Bool and Action settings
+
+Christopher Williams <[email protected]>        2008-03-27
+
+    Fix image mimetype plugin loader in FileButton
+
+Patrick Niklaus <[email protected]>    2008-03-27
+
+    Replaced timout hacks with gtk_process_events
+
+Patrick Niklaus <[email protected]>    2008-03-27
+
+    Small code cleanups
+
+Patrick Niklaus <[email protected]>    2008-03-27
+
+    Replaced has_key with in
+
+Guillaume Seguin <[email protected]>   2008-03-27
+
+    Typo
+
+Guillaume Seguin <[email protected]>   2008-03-27
+
+    Support pygobject < 2.13.0: use gobject.set_property instead of 
.set_properties
+
+Patrick Niklaus <[email protected]>    2008-03-27
+
+    Disable combobox cellrenderer for now.
+    
+    This causes a more common behaviour on double click. Other suggestions 
welcome.
+
+Patrick Niklaus <[email protected]>    2008-03-27
+
+    Make settings labels also centered when used in lists
+
+Christopher Williams <[email protected]>        2008-03-26
+
+    Make MatchButton and FileButton widgets directly manipulate and activate 
the StringSetting's Entry
+
+Merge: 8d46409 d117a2c
+Christopher Williams <[email protected]>        2008-03-26
+
+    Merge branch 'master' of 
git+ssh://[email protected]/git/fusion/compizconfig/ccsm
+
+Christopher Williams <[email protected]>        2008-03-26
+
+    Unify list settings with regular settings
+    
+    All Setting classes now support being used with lists of their setting 
type, so the normal setting widgets are added to the list edit dialog and told 
which row is being edited.
+
+Patrick Niklaus <[email protected]>    2008-03-25
+
+    Yay! Sharp plugin icons.
+    
+    Changed the native resolution of the svg icons to 32x32 to fit ccsm's 
needs.
+
+Dennis Kasprzyk <[email protected]> 2008-03-25
+
+    Make opaque black the default color for new multilist settings.
+
+Christopher Williams <[email protected]>        2008-03-19
+
+    Fix typo in multilist file hints
+
+Patrick Niklaus <[email protected]>    2008-03-18
+
+    Added support for file hints in MultiListSetting
+
+Patrick Niklaus <[email protected]>    2008-03-18
+
+    Moved FileSetting code to FileButton
+
+Patrick Niklaus <[email protected]>    2008-03-18
+
+    Fixed IntDescList
+
+Merge: ea6d56d a8dc3dc
+Christopher Williams <[email protected]>        2008-03-16
+
+    Merge branch 'master' of 
git+ssh://[email protected]/git/fusion/compizconfig/ccsm
+
+Christopher Williams <[email protected]>        2008-03-16
+
+    Change the layout of setting widgets to use HBoxes, and minor code cleanup
+    
+    Long Description tooltips now work across the entire area of of the 
setting, including blank space between the label and the setting widget. 
Additionally, the background of the setting pages now correctly inherits the 
background color from the notebook widget (fixing a color mismatch problem with 
the clearlooks engine).
+
+C-F Language team <[email protected]>   2008-03-15
+
+    emerald translation updates
+
+Christopher Williams <[email protected]>        2008-03-15
+
+    Remove unnecessary Style object
+
+Christopher Williams <[email protected]>        2008-03-15
+
+    Correct a bug in the about dialog and make some minor internal changes to 
the plugin lists
+
+Christopher Williams <[email protected]>        2008-03-14
+
+    Fix a few bugs in the Profiles page
+
+Patrick Niklaus <[email protected]>    2008-03-11
+
+    It should better start couting at 1.
+
+Patrick Niklaus <[email protected]>    2008-03-11
+
+    Fixed conflict autoResolve
+
+Patrick Niklaus <[email protected]>    2008-03-11
+
+    Added 'None' entry to global edge selector
+
+Patrick Niklaus <[email protected]>    2008-03-10
+
+    Replaced the menu of the global edge selector with a 'floating' combobox
+
+Patrick Niklaus <[email protected]>    2008-03-10
+
+    Improved look of edge and button selector
+
+Patrick Niklaus <[email protected]>    2008-03-07
+
+    Update to showmouse icon
+
+Guillaume Seguin <[email protected]>   2008-03-06
+
+    * Bump version to 0.7.3
+
+Guillaume Seguin <[email protected]>   2008-03-06
+
+    * Bump version to 0.7.2
+
+Patrick Niklaus <[email protected]>    2008-03-03
+
+    Added longDesc tooltip to match settings
+
+Merge: 83ac00a 947568f
+Patrick Niklaus <[email protected]>    2008-03-01
+
+    Merge branch 'master' of 
git+ssh://[email protected]/git/fusion/compizconfig/ccsm
+
+Patrick Niklaus <[email protected]>    2008-03-01
+
+    Updated extra category icon
+
+Patrick Niklaus <[email protected]>    2008-03-01
+
+    Update to debug plugin icon
+
+Christopher Williams <[email protected]>        2008-02-27
+
+    Protect pango markup when updating the NotFoundBox too
+
+Patrick Niklaus <[email protected]>    2008-02-25
+
+    Changed button border from 10px to 5px
+
+Patrick Niklaus <[email protected]>    2008-02-24
+
+    Added 32x32 icon and SVGs for small sizes
+
+C-F Language team <[email protected]>   2008-02-23
+
+    translation update
+
+Patrick Niklaus <[email protected]>    2008-02-16
+
+    Added icon for session management. Thanks to Amaranth
+
+Patrick Niklaus <[email protected]>    2008-02-16
+
+    Updated decoration icon, mostely just snapping to the grid
+
+Patrick Niklaus <[email protected]>    2008-02-16
+
+    Added icon for mousepoll plugin


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: http://lists.debian.org/[email protected]

Reply via email to