[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

libcompizconfig: Changes to 'refs/tags/0.9.0'



Tag '0.9.0' created by Guillaume Seguin <guillaume@segu.in> at 2010-07-04 08:36 +0000

Compiz 0.9.0 release
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAkwwSCUACgkQFGCg8MK49G56lQCdEt97go4xcqRLb0zwASkKuZDz
vyIAoJR2ttV+n4FulGIAp+OR33/4Zw12
=1ku1
-----END PGP SIGNATURE-----

Changes since 0.7.8:
Danny Baumann (6):
      Link against libX11 because we need it for XStringToKeysym.
      Fix memory leak.
      Sanity check input values of ccsFindSetting.
      Mem leak fixes and minor cleanup.
      Revert accidential change.
      Fix precedence order of LC_* environment variables.

Dennis Kasprzyk (2):
      Initial compiz++ changes.
      Track core changes.

Dominique Leuenberger (1):
      Better control of destination folders by introducing the same variables as in core

Erkin Bahceci (28):
      Ignore extensions & string restrictions at compiz startup.
      Remove global metadata.
      Speed up metadata parsing via protocol buffers.
      Disable protobuf automatically if not installed.
      Clean up whitespace.
      Add compizconfig.proto to dist. Simplify Makefile.am.
      Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/fusion/compizconfig/libcompizconfig
      Add source URL to protobuf warning message.
      Fix circular dependency error (bug 1061).
      Use $XDG_CACHE_HOME/compizconfig/ as protobuf cache directory.
      Disable protobuf if cache dir cannot be created.
      Create protobuf cache dir recursively.
      Merge branch 'master' of git+ssh://cornelius@git.opencompositing.org/git/fusion/compizconfig/libcompizconfig
      Don't write .pb for ini, gconf, ccp, kconfig.
      Track core changes.
      Update .pb when an older .xml is used, too.
      Remove display-related stuff.
      Remove more display-related stuff.
      Remove display and multi-screen stuff.
      Compare string find result with npos.
      Fix shadowing issues.
      Fix memory leaks.
      Fix memory leaks.
      Avoid allocating 0-size memory. Fix memory leak.
      Fix encoding of corner followed by adjacent edge case.
      Fix crash when LANG has no value.
      Fix checking of libprotobuf version >= 2.1.
      Fix compiler warnings.

Guillaume Seguin (1):
      * Bump version to 0.7.9

Live session user (2):
      Include CompizPackage cmake header too
      Merge branch 'master' of git://anongit.compiz.org/compiz/compizconfig/libcompizconfig

Lubos Lunak (1):
      Fix copy'n'paste mistakes in allocation size.

Sam Spilsbury (34):
      Added support for POSIX 2008's definition of scandir ()
      Added merged autoreconf/cmake buildsystem.
      * Fix incorrect pkgconfig installaton
      Remove debug message
      Fix internal build
      Actually fix internal build
      Remove autotools builsystem
      Remove unnecessary debug message
      Use libcompizconfig: label for errors rather than libccs:
      Merge branch 'master' of git+ssh://git.compiz.org/git/compiz/compizconfig/libcompizconfig
      Install plugin globally
      Added ALL_LIGUAS support and tidy up buildsystem
      Add git-dist target and uninstall target (a bit of a hack though...)
      Make backend buildsystem more modular and similar to compiz_plugin function
      Ensure the package is found before continuing
      Fix ini build
      Adapt for buildsystem changes
      Track core buildsystem changes
      Remove some rpath usage
      Added optional building with rpath
      Merge branch 'master' of git+ssh://git.compiz.org/git/compiz/compizconfig/libcompizconfig
      Add COMPIZ_DESTDIR support to libcompizconfig
      Use the COMPIZ_BUILD_WITH_RPATH option to disable setting an rpath on
      Store files in the compiz-1 dir and drop the ++ extension
      Add proper COMPIZ_DESTDIR support to findcompizconfig_install
      Merge branch 'master' of git+ssh://git.compiz.org/git/compiz/compizconfig/libcompizconfig
      Fix backends build
      Merge branch 'master' of git+ssh://git.compiz.org/git/compiz/compizconfig/libcompizconfig
      Don't install FindCompizConfig.cmake to ${prefix}/share/compiz/cmake
      Add a COMPIZ_PACKAGING_ENABLED option for packagers to tweak libdir, et.
      Save protobuf files in XDG_CACHE_DIR/compizconfig-1 to prevent conflicts where 0.8 protobuf files might be loaded into 0.9 and vice versa
      Load files from .compiz-1
      Bump version
      Update NEWS for 0.9.0 release

Travis Watkins (2):
      don't change default backend when it fails to load
      add so versioning to libcompizconfig.so

---
 CMakeLists.txt                    |  194 ++
 Makefile.am                       |   25 
 NEWS                              |    8 
 VERSION                           |    2 
 autogen.sh                        |   16 
 backend/CMakeLists.txt            |    5 
 backend/Makefile.am               |   18 
 backend/ini.c                     |  718 --------
 backend/src/ini.c                 |  721 ++++++++
 cmake/CMakeLists.txt              |    8 
 cmake/FindCompizConfig.cmake      |   86 +
 cmake/LibCompizConfigCommon.cmake |  121 +
 config.h.in                       |    5 
 config/Makefile.am                |    6 
 configure.ac                      |  134 -
 include/CMakeLists.txt            |    9 
 include/Makefile.am               |    3 
 include/ccs.h                     |   41 
 libcompizconfig.pc.in             |    2 
 metadata/Makefile.am              |   10 
 metadata/ccp.xml                  |    7 
 metadata/global.xml               |  417 -----
 plugin/CMakeLists.txt             |    6 
 plugin/Makefile.am                |   15 
 plugin/ccp.c                      |  844 ----------
 plugin/ccp.xml                    |    7 
 plugin/ccp/CMakeLists.txt         |   16 
 plugin/ccp/ccp.xml.in             |    7 
 plugin/ccp/src/ccp.cpp            |  532 ++++++
 plugin/ccp/src/ccp.cpp~           |  536 ++++++
 plugin/ccp/src/ccp.h              |   73 
 po/POTFILES.in                    |    2 
 src/CMakeLists.txt                |   79 
 src/Makefile.am                   |   28 
 src/bindings.c                    |   14 
 src/ccs-private.h                 |    3 
 src/compiz.c                      | 1755 ---------------------
 src/compiz.cpp                    | 3083 ++++++++++++++++++++++++++++++++++++++
 src/compizconfig.proto            |  163 ++
 src/config.c                      |    2 
 src/ini.c                         |    2 
 src/lists.c                       |    4 
 src/main.c                        |  104 -
 43 files changed, 5738 insertions(+), 4093 deletions(-)
---


Reply to: