commit 2bbfd9bf7ac807072d2b9c7030e837e1c4432f7f
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Thu Jan 14 18:01:04 2010 +0000

    Release babl-0.1.2

 AUTHORS      |    7 +++++++
 NEWS         |    4 ++++
 configure.ac |    2 +-
 3 files changed, 12 insertions(+), 1 deletions(-)

commit 225d70ba0d3a191be46bf671afc351f1fd8b4f27
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Sun Nov 29 15:42:05 2009 +0000

    Only initialize test buffers once

    Also made the test buffer static inline for individual conversions
    like
    it already was for fish paths.

    Note, this relies on none of the tested conversions by accident
    being buggy enough to modify their source data, adding a sanity
    function that compares the buffers with the correct values could
    perhaps be useful.

 babl/babl-conversion.c |   14 +++++++++-----
 babl/babl-fish-path.c  |    5 +++++
 2 files changed, 14 insertions(+), 5 deletions(-)

commit 5af15f8d386a86a0236a8c9e6e118f62fa57f9f7
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Thu Nov 26 18:45:41 2009 +0000

    made babl_list_size babl_list_get_first and babl_list_get_last macros.

    Thereby forcing inlining to gain performance critical code where the
    overhead of additional function calls matter.

 babl/babl-list.c |   26 --------------------------
 babl/babl-list.h |    8 +++-----
 2 files changed, 3 insertions(+), 31 deletions(-)

commit 19a3f6996761e54b73d6a8637e8a9433e347ef88
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Tue Nov 24 01:18:57 2009 +0000

    Fix logic for type detection in babl_fish_process

 babl/babl-fish-path.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 4a086b35c00492da544ebe0851ac12c85461bfd7
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Tue Nov 24 01:04:38 2009 +0000

    Removed two function calls in common path

    Re-arranged code making babl_process and babl_fish_process reside
    in babl-path-fish.c, where babl_fish_process and
    babl_fish_path_process
    can be inlined with babl_process().

 babl/babl-fish-path.c |   88
 +++++++++++++++++++++++++++++++++++++++++++++----
 babl/babl-fish.c      |   47 --------------------------
 babl/babl-internal.c  |   35 -------------------
 babl/babl-internal.h  |    8 ----
 4 files changed, 81 insertions(+), 97 deletions(-)

commit c4e39a47fee21083a4fac85f001c2aeae5f1c078
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Tue Nov 24 00:56:56 2009 +0000

    Removed instrumentation from babl_process.

    This is part of the inner babl processing and should be as slim as
    posisble.

 babl/babl-fish-path.c  |    1 -
 babl/babl-fish-stats.c |    3 ---
 babl/babl-internal.c   |   12 +-----------
 3 files changed, 1 insertions(+), 15 deletions(-)

commit bcf2290ac56567902ff2b4e19726667c26c651ac
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Sun Nov 22 18:28:23 2009 +0000

    Remove use of static buffer to build the name for format.

 babl/babl-format.c |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

commit 3f026e3f4ba70c09db5f67c60ba2fdeeae3d02dd
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Sun Nov 22 17:44:52 2009 +0000

    Make the initial list size in all databases 512 long.

    Like the previous commit.

 babl/babl-db.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 4f50e171a08a39b2b3db5e50960a1525870a1797
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Sun Nov 22 17:10:39 2009 +0000

    Increase the default size of hash tables to 512 entries.

    This avoids resizing of the hash tables for all typical usage
    scenarios
    and thus avoids a potential race condition in unlocked lookups.

 babl/babl-hash-table.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit d8e9feea97521ab11259ca4b3c205d3ac5751ccd
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Sat Nov 21 18:31:50 2009 +0000

    Fix accidental use of the format mutex instead of the debug mutex.

    The memory statistics book-keeping was reusing the BablFormat
    flag mutex
    thus deadlocking with pthreads mutexes since they are not recursive by
    default.

 babl/babl-memory.c |   28 ++++++++++++++--------------
 1 files changed, 14 insertions(+), 14 deletions(-)

commit 9347aed4d3d5cacc7bffe4bcdf487a37cd4ed588
Author: Michael Schumacher <schumaml@gmx.de>
Date:   Sat Nov 21 18:11:23 2009 +0100

    CriticalSection does not exist, it is CRITICAL_SECTION

 babl/babl-mutex.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit c000b0a87a3002480c5588eb98db219be42054c8
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Sat Nov 21 16:47:24 2009 +0000

    Made BablFishPath thread safe.

    Refactored static variables away and added a lock to protect state
    keeping inside the individual BablFormat when permutating possible
    conversion paths.

 babl/babl-fish-path.c |  101
 +++++++++++++++++++++++++++++--------------------
 babl/babl-internal.c  |    3 +
 babl/babl-internal.h  |    1 +
 3 files changed, 64 insertions(+), 41 deletions(-)

commit d582327a632077fa6fcc7849caea67fa515b3b48
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Sat Nov 21 16:42:43 2009 +0000

    Added a mutex to memory sanity counters.

    Also added a BABL_DEBUG_MEM define which is set to 1 in
    babl-internal.h
    that can be used to disable these locks which only are nedded when
    debugging.

 babl/babl-internal.c |   14 +++++++++++++-
 babl/babl-internal.h |    5 +++++
 babl/babl-memory.c   |   34 ++++++++++++++++++++++++++++++++++
 babl/babl.c          |    2 ++
 4 files changed, 54 insertions(+), 1 deletions(-)

commit 9ff8a844d24e080040ccbf272000261a35515832
Author: Daniel Paredes García <danipga@gmail.com>
Date:   Wed Jul 8 16:58:45 2009 +0200

    First aproximation to a thread-safe version of babl.

 babl/babl-fish-path.c |  174
 ++++++++++++++++++++++++++-----------------------
 1 files changed, 92 insertions(+), 82 deletions(-)

commit 2405f947c0b4ebfa7c1474113fb8e2cae25c4b4c
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Sat Nov 21 16:15:04 2009 +0000

    Made the each babl type db in babl have a mutex.

    We lock only on mutations of the databases, when reading from them no
    locks are needed.

 babl/babl-db.c |   12 ++++++------
 babl/babl-db.h |    3 +++
 2 files changed, 9 insertions(+), 6 deletions(-)

commit 3021d2da521884e9753a8e84d31ed61d994a8ea6
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Sat Nov 21 16:05:00 2009 +0000

    Made babl_hash_table_find thread safe by making find_func an argument.

 babl/babl-db.c         |   27 +++++++++++++++++++--------
 babl/babl-fish.c       |    6 ++----
 babl/babl-hash-table.c |   14 ++++++++++----
 babl/babl-hash-table.h |    7 ++++---
 4 files changed, 35 insertions(+), 19 deletions(-)

commit 78b93e2c04ad92e52fe0b7e9ef19caacb55c95a6
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Sat Nov 21 15:55:11 2009 +0000

    Added a BablMutex type.

    Mutex abstraction for internal use pthreads by default and critical
    sections on win32.

 babl/Makefile.am     |    2 +
 babl/babl-internal.h |    1 +
 babl/babl-mutex.c    |   67
 ++++++++++++++++++++++++++++++++++++++++++++++++++
 babl/babl-mutex.h    |   40 +++++++++++++++++++++++++++++
 4 files changed, 110 insertions(+), 0 deletions(-)

commit 97950348d062ea9afdc8701df56798bf41fb856a
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Sat Nov 21 15:50:41 2009 +0000

    Make babl_ticks() thread safe.

    Made a static variable a temporary variable in the only function using
    it.

 babl/babl-util.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 539bfd1487015c50f5ab90f4bcc48ee0a2363039
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Thu Nov 19 19:59:10 2009 +0100

    tests: Add pthread based concurrency stress test for babl_fish()

    Add a test that runs a bunch of pthread threads, all trying to use
    babl_fish() at the same time. This test currently fails and it is the
    goal of bug 587675 to make it pass.

    The cause of the failure is the static variables in babl-fish-path.c.
    In particular 'current_path' clearly needs to be moved to some
    instance variable.

 tests/.gitignore                |    1 +
 tests/Makefile.am               |    4 +-
 tests/concurrency-stress-test.c |   82
 +++++++++++++++++++++++++++++++++++++++
 3 files changed, 86 insertions(+), 1 deletions(-)

commit b6aa1794754ee32fb2e3412528a8f6eb96596042
Author: Øyvind Kolås <pippin@gimp.org>
Date:   Thu Nov 12 19:32:39 2009 +0000

    Added direct code paths for RGB u8 and RGBA u8 to RaGaBaA float

 extensions/gimp-8bit.c |   45
 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 45 insertions(+), 0 deletions(-)

commit ee8a51aefda36402d7a74db969757bc9fde824d2
Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Date:   Fri Oct 9 01:33:26 2009 +0200

    Bug 562741 -  babl Cygwin patch : PLATFORM_WIN32 patch

 babl/Makefile.am       |    2 +-
 extensions/Makefile.am |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit b8dcdb7ad8987c57f291ce3bc96f01cbfc01e1cd
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Fri Aug 7 21:47:00 2009 +0200

    Update .gitignore for win32

 .gitignore       |    1 +
 tests/.gitignore |   31 +++++++++++++++----------------
 2 files changed, 16 insertions(+), 16 deletions(-)

commit c99da5ee5d5409364a1685cf8c47eb71b57224e5
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Fri Aug 7 21:17:35 2009 +0200

    Add $(EXEEXT) to tools in Makefile.ams to fix win32 compilation

 docs/Makefile.am |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

commit 9291ef860a19cdc7ed0367d25cf984a1e31a6d1f
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Tue Aug 4 21:01:20 2009 +0200

    babl: Fix compiler warnings

    Avoid redefinition and implicit casts

 babl/babl-extension.c |   15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)

commit 12d5cc4c1bcfbf02c2b7d7f53270976df6102093
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Sun Aug 2 10:57:37 2009 +0200

    extensions: Add "CIE LCH(ab) [alpha] float"

    Add "CIE LCH(ab) float" and "CIE LCH(ab) alpha float" as babl formats
    and implement conversions from/to RGBA float.

 extensions/CIE.c |  209
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 209 insertions(+), 0 deletions(-)

commit 32d774759afaafb4d37ea262de57513e0f0932b0
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Sat Aug 1 23:42:10 2009 +0200

    extensions: Remove disabled gamma related code in CIE.c

    Remove disabled gamma related code in CIE.c, no point in keeping it
    around, it only complicates the code.

 extensions/CIE.c |  100
 ++---------------------------------------------------
 1 files changed, 4 insertions(+), 96 deletions(-)

commit b943ccd1463a562b57d53c92dd569af54f931868
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Sat Aug 1 21:43:38 2009 +0200

    extensions: Rename CIE-Lab.c to CIE.c

    Rename CIE-Lab.c to CIE.c so that we can keep more CIE color spaces in
    a single file. It would be overkill to separate the common code for
    other color spaces into shared files.

 extensions/CIE-Lab.c   | 1255
 ------------------------------------------------
 extensions/CIE.c       | 1255
 ++++++++++++++++++++++++++++++++++++++++++++++++
 extensions/Makefile.am |    4 +-
 3 files changed, 1257 insertions(+), 1257 deletions(-)

commit da4da8fbe0abfcb994a4d0fd2c93e6093daf457f
Author: Danny Robson <danny@blubinc.net>
Date:   Sun Jul 19 22:50:37 2009 +1000

    Change occurences of assert (0) into babl_fatal()

    babl_fatal() is the more appropriate method to die upon failure, so
    all instances of assert (0) have been changed into babl_fatal() with
    some attempt of an error message.

    In this process, the babl_fish_process() method was refactored into
    using the existing case statement.

    Bug #589027.

 babl/babl-fish-stats.c |    2 +-
 babl/babl-fish.c       |   44
 ++++++++++++++++++++------------------------
 2 files changed, 21 insertions(+), 25 deletions(-)

commit 79a4a198fe1a201be8d84186717964c26763e1ac
Author: Danny Robson <danny@blubinc.net>
Date:   Sun Jul 19 21:35:40 2009 +1000

    Change sprintf() to babl_strcat() in model create_name()

    babl/babl-model.c create_name uses an unsafe incantation of sprintf
    to build names from concatenated components which should ideally use a
    "%s" format specifier preceding the instance name.

    Instead of fixing this, we replace it with a babl_strcat() based
    alternative which allows us to remove the thread-unsafe static
    character
    buffer at the cost of a few mallocs and a free.

    Also do some cleanups, mainly to avoid two exit points from the
    function, that increases readability and warns if a model with the
    same name is registered twice.

    This is bug #589021.

 babl/babl-model.c |   58
 +++++++++++++++++++++++++---------------------------
 1 files changed, 28 insertions(+), 30 deletions(-)

commit 13541095db663c954cc068872eb97edfc5fbdb32
Author: Danny Robson <danny@blubinc.net>
Date:   Sun Jul 19 19:31:47 2009 +1000

    Make use of system return value to avoid warnings

    Make (minimal) use of system's return value to avoid gcc complaining,
    as
    it's declared using the warn_unused_result attribute.

 babl/babl-internal.c |    4 ++--
 babl/babl-internal.h |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 5bca0ac9fec91233f15298cf2bfa9eebb5502f7b
Author: Danny Robson <danny@blubinc.net>
Date:   Sun Jul 19 19:24:54 2009 +1000

    Use pointer integer types for comparisons

    Convert all occurences of pointer arithmetic using integral types
    to use
    the standard ptrdiff_t and intptr_t types. Fixes some build warnings.

 babl/babl-fish.c        |    3 ++-
 babl/babl-memory.c      |    3 ++-
 extensions/sse-fixups.c |    5 +++--
 3 files changed, 7 insertions(+), 4 deletions(-)

commit 07095a0435f629a114ccf3be1dae2f07141f7c96
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Fri Jul 17 20:19:38 2009 +0200

    Incorporate minor version in soname

    Incorporate minor version in soname. We do this to compensate for the
    immaturity of the API and future ABI/API breakage.

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 94e0745b0c524101b1c6730feee38bf932e33990
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Tue Jul 14 20:06:27 2009 +0200

    Enable automake silent-rules by default

    Enable silent build rules by default, requires at least
    Automake-1.11. Disable by either passing --disable-silent-rules to
    configure or passing V=1 to make.

 configure.ac |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

commit c8529148809c6e57cb36d478fe7a6a836d7415fc
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Tue Jul 14 19:55:20 2009 +0200

    Generate ChangeLog from git log

    Add rule to generate ChangeLog from git log, copied from pango and
    Behdad Esfahbod. Also disable the rss generation in docs since the rss
    tool can't handle the git log format.

 ChangeLog         | 3356
 -----------------------------------------------------
 ChangeLog.pre-0-1 | 3346
 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 Makefile.am       |   23 +
 docs/Makefile.am  |   10 +-
 4 files changed, 3370 insertions(+), 3365 deletions(-)

commit 31ca01958b26cc3c3ab437dc3d37cb0b88fbd9f9
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Tue Jul 14 19:40:16 2009 +0200

    Update .gitignore

 .gitignore |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 deletions(-)

commit b785747260c8c6cd233222ba6227f5e99e129b01
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Tue Jul 14 19:39:59 2009 +0200

    extensions: Explicitly specify sources

    Explicitly specify extension sources since there seems to be some
    problem with AM_DEFAULT_SOURCE_EXT with automake-1.11.

 extensions/Makefile.am |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

commit 8c9bfc3e708799b5e752c7aecf21e12ec51c0fb1
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Tue Jul 14 19:33:56 2009 +0200

    babl: Don't declare functions with external linkage as inline

    Don't declare functions with external linkage as inline. The way we
    did it is forbidden in C99 and causes compilation problems on other
    platforms. See bug #572154.

 babl/babl-hash-table.c |    6 +++---
 babl/babl-hash-table.h |    6 +++---
 babl/babl-list.c       |   10 +++++-----
 babl/babl-list.h       |   10 +++++-----
 4 files changed, 16 insertions(+), 16 deletions(-)

commit 7087a284fe70ef27eae59ee4ddbdb31acf609b92
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Tue Jun 23 06:28:17 2009 +0200

    Update SVN reference to git

 autogen.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 40f8ebc300537706cb214780cfa0234214082085
Author: Sven Neumann <s.neumann@raumfeld.com>
Date:   Fri Jul 3 21:04:58 2009 +0200

    require automake >= 1.9.6 and libtool >= 1.5

 autogen.sh |   24 +++++-------------------
 1 files changed, 5 insertions(+), 19 deletions(-)

commit 3d829407123d54a4f0a632d137c00f6988c7febb
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Sat May 23 13:41:20 2009 +0200

    Add babl.doap

 babl.doap |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

commit a7614da76c130f12e80fd0d5de1e9c0f83ff64af
Author: Fryderyk Dziarmagowski <freetz@gmx.net>
Date:   Sat May 23 12:55:39 2009 +0200

    Bug 583565 – babl 0.1.0 build fixes

    Don't apply dynamic library versioning to the babl extensions.

 extensions/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit cfebbba04be6c16456aa08f99d880b32cd96f37e
Author: Fryderyk Dziarmagowski <freetz@gmx.net>
Date:   Sat May 23 12:49:25 2009 +0200

    Bug 583565 – babl 0.1.0 build fixes

    The DESTDIR variable should not be used in a Makefile.am.

 extensions/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit bee9f09cab452c2c94421dffec0823d68abbf338
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Thu May 21 01:44:31 2009 +0200

    Obsolete the ChangeLog file

 ChangeLog |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

commit 497a7ddde97a57aa6ff6e8ecda3f9264c2c2d7d3
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Thu May 21 01:44:18 2009 +0200

    Bump version to 0.1.1

 configure.ac |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit 4d207d4c586bb17c9f8342f4f47941fc03eae024
Author: Martin Nordholts <martinn@src.gnome.org>
Date:   Tue May 19 20:30:50 2009 +0200

    0.1.0 released

 ChangeLog |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
