commit 4a995762ac51971d6699774dff8e4fc1eb811818
Author: David King <amigadave@amigadave.com>
Date:   Sun Feb 21 23:18:23 2016 +0000

    Update NEWS for 2.4.2 release

M	NEWS
M	SOURCES
M	configure.ac

commit d081c73f8d72155f6f0cde1b6e06ddf3ebcafba7
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 21 22:43:44 2016 +0000

    Mark files with old Vorbis tag comments as changed

    If a Vorbis comment has a COMMENT field, mark the file as modified,
    so that it
    is converted to a DESCRIPTION field during saving.

M	src/tags/flac_tag.c
M	src/tags/ogg_tag.c

commit eb8dd2121558eda3fb78b675388ad715ad500fc6
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 18 20:44:14 2016 +0000

    Remove setlocale() calls around tag reading

    It is unsafe to call setlocale() in a multi-threaded program (and
    EasyTAG is,
    because GLib creates a worker thread for handling D-Bus
    calls). Additionally,
    it is no longer necessary to change the locale when reading files,
    as all
    locale-sensitive tag reading code has been converted to be insensitive
    to the
    current locale.

M	src/file_list.c

commit 70d69bc61f0ab1cf39f0270f56114efb0ae7ba67
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 18 21:20:42 2016 +0000

    Use g_ascii_strcasecmp() for ID3v2.4 field names

    As ID3v2 field names use ASCII, use the locale-insensitive
    g_ascii_strncasecmp() instead of strncasecmp().

M	src/tags/id3v24_tag.c

commit ff8eaf91dbf17a2a4d662db9a94bc5e10b815a16
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 18 21:19:22 2016 +0000

    Use strncmp() when case is not a factor

    When comparing strings while looking for the multi-field separator
    (always
    " - " in EasyTAG), use strncmp() rather than strcasecmp().

M	src/tags/id3v24_tag.c

commit 030a3dd196e166bd6a061d23033ccc723118bcc1
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 18 20:39:25 2016 +0000

    Avoid locale-sensitive field name reading for Ogg

    Avoid calling strncasecmp() when searching for tag field names
    in Vorbis
    comments while reading Ogg (Vorbis and Opus) files. The same function
    is called
    internally by libvorbis when searching for tags, and it is dependent
    on the
    current locale, so it fails with Turkish and the lower-case 'i' being
    transformed to the dotted upper-case version. As Vorbis comment
    field names are
    only permitted to be ASCII, with some further restrictions, use
    g_ascii_strup()
    to convert them all to upper-case before comparing them.

    As an additional optimization, insert the tag key/value pairs in a
    hash table
    during reading. The avoids the behaviour of searching through all
    the comments
    in the file when loading data for each UI field (as well as a second
    time, when
    populating the list of unsupported fields). instead, only a single
    lookup per
    tag is required.

    https://trac.xiph.org/ticket/2079

M	src/tags/ogg_tag.c

commit 84e99bba9f8f54d347169d5232ed69ca7c159a4f
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 12 21:21:43 2016 +0000

    Avoid locale-sensitive field name reading for FLAC

    Avoid calling strncasecmp() when searching for tag field names
    in Vorbis
    comments while reading FLAC files. The same function is called
    internally by
    libFLAC when searching for tags, and it is dependent on the current
    locale, so
    it fails with Turkish and the lower-case 'i' being transformed to
    the dotted
    upper-case version. As Vorbis comment field names are only permitted
    to be
    ASCII, with some further restrictions, use g_ascii_strup() to
    convert them
    all to upper-case before comparing them.

    As an additional optimization, insert the tag key/value pairs in a
    hash table
    during reading. This avoids the behaviour of searching through all
    the comments
    in the file when loading data for each UI field (as well as a second
    time, when
    populating the list of unsupported fields). Instead, only a single
    lookup per
    tag is required.

    https://sourceforge.net/p/flac/bugs/417/

M	src/tags/flac_tag.c

commit f3d1d976b798a0ef9d2a9356f4ca702ee6bf0aad
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 11 22:33:32 2016 +0000

    Make the Vorbis comment field names into defines

    Unify the Vorbis comment field names into a set of defines, and move
    them to
    vcedit.h.

M	src/tags/flac_tag.c
M	src/tags/ogg_tag.c
M	src/tags/vcedit.h

commit 3bd9455ed0aa194554d4983bc46798b8b0075649
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 11 21:54:21 2016 +0000

    Remove et_ogg_write_tag()

    Use vorbis_comment_add_tag() instead.

M	src/tags/ogg_tag.c

commit 224f3c84627d7f3727e8b929a2cfc6f92eae7421
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 11 16:09:14 2016 +0000

    Simplify FLAC tag field setting

    Use FLAC__metadata_object_vorbiscomment_entry_from_name_value_pair()
    to avoid
    duplicating two strings per tag field written. Simplify handling
    of unsupported
    tags with a new vc_block_append_other_tag() function.

M	src/tags/flac_tag.c

commit 0c0f46b9232b4e02ece2ac1872eeb10609e150ee
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 18 16:48:51 2016 +0000

    Fix a crash when renaming directories

    Pass a gchar *, not a gchar, to g_strconcat().

    https://retrace.fedoraproject.org/faf/problems/bthash/?bth=5c2ad6c23b746b3d63a4ccc895e6f228e24293e5&bth=ce2762c57443a7c42472884bd3c9fcbef3755982
    https://retrace.fedoraproject.org/faf/problems/bthash/?bth=e5ff843b726a5ae24324a402c656c3da412adf05

M	src/browser.c

commit 30e2c672106ec5177f421cc577214bc562610517
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 14 09:40:07 2016 +0000

    Only install the metainfo file if requested

    Only install the AppData metainfo file for the Nautilus extension
    if the
    extension is enabled.

    https://bugzilla.gnome.org/show_bug.cgi?id=761996

M	Makefile.am

commit ce3b73dcbf93e2476db101f9a9403a3a302bdbb4
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 9 21:06:36 2016 +0000

    Update British English translation

M	po/en_GB.po

commit 338f3da0a9fcdcc940aa53431aafc0edc47a680a
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 28 22:45:23 2016 +0100

    Port Musepack header reading to use GFile

M	src/tags/libapetag/info_mpc.c
M	src/tags/libapetag/info_mpc.h
M	src/tags/musepack_header.c

commit 54ebb531c6e91ae745e0526ef9a61dacb46eb132
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 28 21:30:17 2016 +0100

    Port Monkey's Audio header reading to GFile

M	src/tags/libapetag/info_mac.c
M	src/tags/libapetag/info_mac.h
M	src/tags/monkeyaudio_header.c

commit a733b5d9ecbe90a6b3c10ae1fbfc491456ba2a26
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 26 11:50:21 2016 +0000

    Use _chsize() on Windows

    Avoid the internal ftruncate() wrapper, which was only used in
    a single
    location.

M	configure.ac
M	src/tags/libapetag/apetaglib.c
M	src/win32/win32dep.c
M	src/win32/win32dep.h

commit 138993f16795097c5bcaffd23599319dc8fc8212
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 9 19:45:11 2016 +0000

    Correctly display the Monkey's Audio file type

    The descriptive string for the Monkey's Audio file type was
    accidentally
    removed when the file area was moved into a discrete object in commit
    594e9575eaddc1b70b7bf6510802b27b6b8e6828. Add it back, and reinstate
    all
    available translated versions.

M	po/cs.po
M	po/de.po
M	po/el.po
M	po/en_GB.po
M	po/es.po
M	po/fr.po
M	po/he.po
M	po/hu.po
M	po/it.po
M	po/ja.po
M	po/ko.po
M	po/lt.po
M	po/nb.po
M	po/nl.po
M	po/pl.po
M	po/pt_BR.po
M	po/ro.po
M	po/ru.po
M	po/sl.po
M	po/sr.po
M	po/sr@latin.po
M	po/sv.po
M	po/te.po
M	po/tr.po
M	po/uk.po
M	po/zh_CN.po
M	po/zh_TW.po
M	src/tags/monkeyaudio_header.c

commit 1cc311cfd40fbda1c88b009ee6d80c563fdff7d6
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 9 18:08:18 2016 +0000

    Avoid UTF-8 warnings during APE tag reading

    Avoid passing a NULL pointer to Try_To_Validate_Utf8_String(). Factor
    out the common File_Tag field setting code into a new
    set_string_field()
    function.

M	src/tags/ape_tag.c

commit 7d71b3fe1cd593a9dd825155d26bc493b734687a
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 5 18:06:56 2016 +0000

    Refactor Search_File()

    Use GSettings rather than examining the state of UI elements. Ensure
    that UTF-8 strings are normalized before searching within. Use C89
    comments. Rename several variable.

M	src/search_dialog.c

commit 8306f396f122f8dda95a7babf757ae9e877c90fe
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 4 16:47:16 2016 +0000

    Refactor Add_Row_To_Search_Result_List()

    Avoid duplicating strings unnecessarily. Shorten and simplify several
    variable names. Normalize the UTF-8 strings before comparing them with
    strstr(). Use C89 comments.

M	src/search_dialog.c

commit a098fcf018aff2f6771e886a99a565965fad7cc7
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 2 21:51:35 2016 +0000

    Factor out common string sorting code

    Add a new et_file_list_sort_string() function, and use it where
    possible
    to simplify the file list sorting.

M	src/file.c

commit db48df50bbb2558ff1e7a38c2add5b8a8346c427
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 2 21:19:00 2016 +0000

    Handle UTF-8 strings when sorting the file list

    Use et_normalized_strcmp0() and et_normalized_strcasecmp0() when
    sorting
    the file list.

M	src/file.c

commit cc971b1552f5a2aaa0c620df4e933e194c8f69d5
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 1 22:47:08 2016 +0000

    Enable case-sensitive sorting of artist/album list

    Use et_normalized_strcmp0() when comparing.

M	src/file_list.c

commit 4d333b7650ced3c20e563fc771cc3dcfafaf01db
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 1 22:36:59 2016 +0000

    Add simple tests for et_normalized_strcasecmp0()

    Additionally, add a further test for et_normalized_strcmp0() to
    show how
    it differs.

M	tests/test-misc.c

commit 6163e087b015bad9af6e9be1b2d445110f7a0c4b
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 1 22:01:21 2016 +0000

    Add a case-insensitive UTF-8 string comparison

    Add et_normalized_strcasecmp0(), a function much like strcasecmp(),
    but
    that handles UTF-8 text by normalizing it, casefolding it and then
    comparing with g_utf8_collate(). Use the new function when sorting the
    album/artist list.

M	src/file_list.c
M	src/misc.c
M	src/misc.h

commit 257e13b1b3309919e73cf6f3014a77f5f82e87f8
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 28 21:51:44 2016 +0100

    Add static to is_tag_ape2long()

M	src/tags/libapetag/is_tag.c

commit 02650510e0c3f3dcf73544bc9379ce4306fb96c8
Author: David King <amigadave@amigadave.com>
Date:	Wed Jan 27 00:06:17 2016 +0100

    Fix input of filenames in the file area

    When showing the edit name in the file area, show the new
    (as-yet-unsaved) filename, rather than using the old name.

M	src/file_area.c

commit 36ab772953dc328b7f73e615fa67e63c15cf965b
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 26 14:58:16 2016 +0000

    Avoid use of g_dir_open()

    Use g_file_test() to check if a path is a directory instead.

M	src/browser.c
M	src/playlist_dialog.c

commit 074348e9c0e3f3db597e3e3e3a94666bb17ea9d0
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 25 23:01:06 2016 +0000

    Update NEWS for 2.4.1 release

M	AUTHORS
M	NEWS
M	SOURCES
M	configure.ac

commit 4fa035d37dd545f4492ce8380b237a67551aa0ff
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 25 21:14:36 2016 +0000

    Refactor directory renaming

    Renaming directories broke when porting to use GFile for the current
    path. Fix this by refactoring the functions involved to use
    g_build_filename() and semantically-useful variable names.

M	src/browser.c

commit d58e1e2f86589616ad4ce6a218f53ca25e97f079
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 25 19:17:03 2016 +0000

    Only show a locale log message if it is useful

    On Windows, check that the LANG environment variable is set before
    displaying its value in a log message.

M	src/application.c

commit fabaccb3c1d0fa3a18641c7f1290ba982d106363
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 25 18:54:25 2016 +0000

    Use g_mkstemp() instead of mkstemp()

    As filenames are always in the GLib filename encoding, make sure
    to use
    the appropriate GLib function.

M	TODO
M	configure.ac
M	src/browser.c
M	src/misc.c
M	src/win32/win32dep.c
M	src/win32/win32dep.h

commit 9e9b60157f9c4515fe5be1b72e24f63899ee8d8b
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 25 17:10:06 2016 +0000

    Fix CDDB dialog flag controls

    Since commit bbf918f8427950734d0101ef2744fff57eaa4b7b,
    et_settings_flags_toggle_get() and et_settings_flags_toggle_set()
    expect
    widgets passed to them to have a "flags-key" data item to be set
    to the
    name of the appropriate setting. Make this so for the search
    fields and
    categories widgets.

    https://bugzilla.gnome.org/show_bug.cgi?id=761018

M	src/cddb_dialog.c

commit fa014e50ecdbd546f3b1a0e125f119ce8a60fce8
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 25 17:05:56 2016 +0000

    Remove some unwanted elements from the AppData

    Remove the donation and project group links, and reindent the file.

M	data/easytag.appdata.xml.in

commit 9592ca3dc23e625df0435681c9b0b8ff31499a8b
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 22 16:02:51 2016 +0000

    Avoid an unnecessary NULL check

    Found with Coverity (CID 1295129).

M	src/scan_dialog.c

commit 59496c7e81894941f16dcf00e1bdcc4ebf519155
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 21 19:23:06 2016 +0000

    Test EtPicture comparisons in the FileTag tests

M	tests/test-file_tag.c

commit 8d57f897546da32429b3311fd07efb229cd7fbb2
Author: David King <amigadave@amigadave.com>
Date:	Wed Jan 20 17:32:41 2016 +0000

    Refactor Browser_Tree_Handle_Rename()

    Avoid a bogus use of UTF-8 functions with strings in the GLib filename
    encoding.

M	src/browser.c

commit a67fba24b9679429e08353fc1c1cf0b5f0aa7279
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 19 16:52:21 2016 +0000

    Convert Windows filename encoding for id3lib

    As id3lib does not use the wide character API on Windows, it expects
    filenames to be in the system codepage. Convert the GLib encoding
    to the
    system codepage before passing it to id3lib.

M	src/tags/id3_tag.c
M	src/tags/libapetag/id3v2_read.c
M	src/tags/mpeg_header.c
M	src/tags/opus_header.c

commit 98001302f40c640446845e5334a7880eda6bb443
Author: Richard Hughes <richard@hughsie.com>
Date:	Mon Jan 25 15:42:32 2016 +0000

    Add a missing tag to the AppData file

M	data/easytag.appdata.xml.in

commit 0a8d3554172f44d35024df75e672121435974b07
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date:	Sun Jan 24 17:22:28 2016 +0100

    Updated German doc translation

M	help/de/de.po

commit 6e1558aabece4d5c688e1e27c584812a557fc80e
Author: Aurimas Černius <aurisc4@gmail.com>
Date:	Sat Jan 23 17:41:34 2016 +0200

    Updated Lithuanian translation

M	po/lt.po

commit eae0cc672db9f058e2af873cf7f5e0c14eb27dbf
Author: Richard Hughes <richard@hughsie.com>
Date:	Fri Jan 22 19:37:29 2016 +0000

    Update the AppData file to spec version 0.7+

M	data/easytag.appdata.xml.in

commit e80ec2317bcb63cd468c55774fa145e6397a11ca
Author: Mario Blättermann <mario.blaettermann@gmail.com>
Date:	Thu Jan 21 21:34:47 2016 +0100

    Updated German doc translation

M	help/de/de.po

commit 1ec85412c79601db4606cfa799883ebe96575f6c
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 19 19:03:13 2016 +0000

    Fix compiler warning in tests

    Pass a GError ** to g_close().

M	tests/test-misc.c

commit 5e74546aec8ce4721d52480b1c55bd231e2bc39f
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 19 16:49:57 2016 +0000

    Use g_open() instead of open()

    Ensure that filenames are kept in the GLib filename encoding.
    Additionally, use id3_file_fdopen() rather than id3_file_open() to
    ensure that the GLib filename encoding is used when reading ID3 tags.

M	src/tags/id3v24_tag.c
M	src/tags/libapetag/info_mac.c
M	src/tags/libapetag/info_mpc.c
M	src/win32/win32dep.c

commit 99890b917c6ce9814cdc7361d3ad951fc3216973
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 19 16:48:10 2016 +0000

    Use g_close() instead of close()

    Available since GLib 2.36, g_close() provides a portable wrapper
    around
    close().

M	src/browser.c
M	src/misc.c
M	tests/test-misc.c

commit 238b1e3da15de8acd4ebad4749feb6751371b11c
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 17 19:35:05 2016 +0000

    Fix typo in ID3v2.4 code comment

M	src/tags/id3v24_tag.c

commit 21c01d25d067afcc32876fb545ceea834ef912be
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 16 00:14:30 2016 +0000

    Replace g_utf8_str[r]chr() usage with str[r]chr()

    If looking for an ASCII character, it is simpler to use the string
    functions from the C library.

M	src/cddb_dialog.c
M	src/file_area.c
M	src/misc.c
M	src/scan.c
M	src/tag_area.c
M	src/tags/ape_tag.c
M	src/tags/flac_tag.c
M	src/tags/id3v24_tag.c
M	src/tags/ogg_tag.c
M	src/tags/wavpack_tag.c

commit 063dbf2346aac6aa4aa29deb0f73bce0490f17ff
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 15 23:43:16 2016 +0000

    Use the GFile edit name in the file area entry

    Avoid the situation that, when the encoding conversion fails, an
    explanatory string is added to the filename for display by using the
    edit name in the GtkEntry where the user can enter a new filename.

M	src/file_area.c

commit 2b3adb11b8ab8028b000851f8d8c9b741c6c6b4a
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 15 22:29:02 2016 +0000

    Solve a FIXME when changing file extension case

    As the source strings are is ASCII, use g_ascii_strdown() and
    g_ascii_strup() rather than the UTF-8 equivalents.

M	src/file.c

commit 9a2c766e9c27467c8a2607635674fee021ca9db1
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 15 20:26:00 2016 +0000

    Remove unused Windows backslash removal function

    As GFile does trivial canonicalization of paths, such as removing a
    trailing slash, there is no reason to handle a path from a GFile
    specially under Windows.

M	src/browser.c
M	src/win32/win32dep.c
M	src/win32/win32dep.h

commit 2609e840ffe09291d158c0425c07d103dfbfcf56
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 31 22:10:55 2015 +0000

    Use GFile for current browser path

M	src/application_window.c
M	src/application_window.h
M	src/browser.c
M	src/browser.h
M	src/load_files_dialog.c
M	src/playlist_dialog.c

commit 8ea193faa73d4edbc6915e1c342f1d04be2ea314
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 31 19:35:45 2015 +0000

    Use GFile in et_browser_select_dir()

M	src/application.c
M	src/application_window.c
M	src/application_window.h
M	src/browser.c
M	src/browser.h

commit f0019adf81e120f6b8d8d85902e9ecb8215b8c56
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 31 09:47:33 2015 +0000

    Use the GFile parse name in the browser entry

    This should make it easier for users to enter and modify paths
    which are
    not in UTF-8 encoding.

M	src/browser.c

commit 92118a38e385e4f3192de804c926b629d7a31fe1
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 1 10:13:34 2016 +0000

    Simplify et_browser_show_rename_directory_dialog()

    Use g_filename_display_basename() to simplify the logic to extract the
    basename and convert to UTF-8 for display.

M	src/browser.c

commit 7454529fa6b346237552d93d443e4821bc505b5a
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 14 18:27:02 2016 +0000

    Use et_str_empty() in another place

M	src/application_window.c

commit 87dbe2d2210059d3fc7643cd614c90de752001fd
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 14 18:07:57 2016 +0000

    Remove old EASYTAGLANG handling

    A separate environment variable for setting the locale of EasyTAG on
    Windows has not been used for some time.

M	src/application.c

commit d52f1b41b5cfb3c884c18b5b4afb57cbd0880ae3
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 14 16:55:36 2016 +0000

    Refactor Try_To_Validate_Utf8_String()

    Avoid leaking a GError if encoding conversion fails.

M	src/charset.c

commit 345f9d93d7ff33f6750ba2f2a0d7e688f96b96fb
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 14 16:13:09 2016 +0000

    Remove a redundant comparison

M	src/charset.c

commit b22f0a517dcb5b2a6b19c86ad3dc946a617cbf3c
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 12 23:08:39 2016 +0000

    Refactor get_encoding_from_locale()

    Use g_get_locale_variants() when looking up the non-Unicode character
    encoding for a locale, to ensure that variants are checked (such
    as when
    checking "en_GB", so that "en" is checked). Additionally, treat "utf8"
    as synonymous with "UTF-8" as per locale(7). As a fallback, return
    UTF-8.

M	src/charset.c

commit b23a3bb3fcb612b86c1c40372db6bc9125037a01
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 12 17:34:44 2016 +0000

    Refactor filename_from_display()

    Validate that the supplied string is UTF-8 with
    g_return_val_if_fail().
    Use g_filename_from_utf8() before attempting any other conversions.
    Avoid leaking a GError if there are conversion failures. Use
    g_get_filename_charsets() to query the filename encoding.

M	src/charset.c

commit 75cc59afd0b934271ab5a93329dfe433153bf47b
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 31 17:37:31 2015 +0000

    Use et_str_empty() in et_browser_select_dir()

M	src/browser.c

commit 0a1898a445be88842a834b19ee8a458d6a1fb704
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 10 00:27:46 2015 +0000

    Avoid using internal filename_to_display()

    Use the GLib functions for converting filenames from the GLib file
    encoding to UTF-8 for display. Avoid trying to guess the encoding, and
    only pay attention to the G_FILENAME_ENCODING environment variable
    as an
    override.

M	src/application.c
M	src/browser.c
M	src/charset.c
M	src/charset.h
M	src/easytag.c
M	src/file_list.c
M	src/file_name.c
M	src/load_files_dialog.c
M	src/playlist_dialog.c
M	src/scan_dialog.c
M	src/tags/id3_tag.c
M	src/tags/ogg_tag.c
M	src/win32/win32dep.c
M	src/win32/win32dep.h

commit 84bb35464dec34870e38d1f7f08ca8d0282340b7
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 8 08:49:43 2016 +0000

    Use full path when converting name for display

    Previously, the full path of a directory was converted to UTF-8 for
    display in the UI. Commit 9d23932754a9b82db0b1be3ac02df04717e99a6c
    changed the behaviour to use the display name from GFileInfo,
    which only
    contains the basename of the file and not the complete path. Use the
    full path, and convert it for display using g_filename_display_name().

M	src/easytag.c

commit 567cc99b03d8e35945a6bd851e05dc2c3eaed3a1
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 8 08:12:04 2016 +0000

    Use g_file_enumerator_get_child() in expand_cb()

M	src/browser.c

commit 9d23932754a9b82db0b1be3ac02df04717e99a6c
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 7 22:08:59 2016 +0000

    Use display name when reading directory

    When formatting an error message for display in the UI, use the
    display
    name of the file.

M	src/easytag.c

commit bc9f1cde9cb01040db73d1749b44ed8b010c89ab
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 7 21:33:45 2016 +0000

    Use g_file_enumerator_get_child()

    Resolve a TODO in read_directory_recursively().

M	src/easytag.c

commit 5b4f7f58c2cf4932d67f787c8c26f328494dbb89
Author: Marcus Gisslén <marcus.gisslen@gmail.com>
Date:	Wed Jan 6 01:49:55 2016 +0100

    Add Swedish help translation

M	help/Makefile.am
A	help/sv/sv.po

commit 4aecce9397f6ca42cef7974163110e319c163e37
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Thu Jan 7 23:07:38 2016 +0100

    Updated Spanish translation

M	po/es.po

commit a21d043d7d63bf773be4bf6420d6f321f293c681
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 7 17:09:26 2016 +0000

    Use GLib POSIX wrapper functions consistently

    As EasyTAG only handles filenames being in the GLib filename encoding,
    be careful to use functions which accept that encoding.

M	src/browser.c
M	src/cddb_dialog.c
M	src/file.c
M	src/file_list.c
M	src/tags/ape_tag.c
M	src/tags/libapetag/apetaglib.c
M	src/tags/libapetag/apetaglib.h

commit 595d8554ffeae1e2e65827dfb72506d7af56fc2b
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 7 16:39:53 2016 +0000

    Remove some unneeded Windows compat code

M	src/win32/win32dep.c
M	src/win32/win32dep.h

commit fc09649854a3b4c759770e56100189d1c0b10f3a
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 7 08:58:04 2016 +0000

    Depend on at least libnautilus-extension 3.0

    Ensure that the Nautilus dependency is on a version that requires GTK+
    3.0 or above for gdk_display_get_app_launch_context().

M	configure.ac

commit 8afecf0a6573b6db93d91fd4e87e996301c4d495
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 5 16:02:40 2016 +0000

    Replace filename characters after substitutions

    Ensure that scanner options do not override whether illegal characters
    should be replaced in filenames, by doing the replacement after the
    substitutions. This has the effect that if underscores are to
    be replaced
    by spaces, and the filename has a trailing underscore, the end result
    will be a filename with an underscore.

    https://bugzilla.gnome.org/show_bug.cgi?id=760155

M	src/scan_dialog.c

commit b3504c69bb11cfd800993a443d0c1be1124c2966
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 5 16:00:29 2016 +0000

    Replace illegal characters at end of filename

    On FAT filesystems, filenames should avoid ending with ' ' or '.':

    https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247%28v=vs.85%29.aspx#naming_conventions

    Handle this in et_filename_prepare(), when the option to replace
    illegal
    characters in filenames is enabled, and add new test cases.

    https://bugzilla.gnome.org/show_bug.cgi?id=760155

M	src/misc.c
M	tests/test-misc.c

commit 3749d91f306adb9d73bbce39ce6bf621025f7441
Author: Josef Andersson <josef.andersson@gmail.com>
Date:	Sun Jan 3 16:09:50 2016 +0000

    Updated Swedish translation

M	po/sv.po

commit 8f1620b5d192f177ea206b085d336cc3f2eda624
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 1 11:03:47 2016 +0000

    Fix memory leak in open directory with dialog

    Use g_object_set_data_full() to free the current directory path when
    destroying the dialog.

M	src/browser.c

commit c177c1da3f04e8891bd95edba6f275ee8e585572
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 1 10:56:54 2016 +0000

    Simplify rename directory dialog destruction

    Use g_object_set_data_full() to automatically free the parent and
    current directory paths when the dialog is destroyed.

M	src/browser.c

commit 8e343337a81227314760370c4fbcd48a0da42d67
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 30 20:44:02 2015 +0000

    Remove last remnants of GTK+ usage from tag code

    Rather than opening a GTK+ dialog from the ID3 writing code when
    detecting a buggy implementation, simply return a new
    ET_ID3_ERROR_BUGGY_ID3LIB error. Handle the error and show the
    dialog in
    the UI code.

M	src/easytag.c
M	src/tags/id3_tag.c
M	src/tags/id3_tag.h

commit d3d41072a3ff3802341d96145e5ea87e1508005a
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 31 00:04:42 2015 +0000

    Resolve a FIXME when saving config files

    Convert the list store file path encoding for display using
    g_filename_display_name().

M	src/setting.c

commit df18c025151951cc2ec386855ddda9c8fffd1520
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 30 17:29:17 2015 +0000

    Ensure ID3v2.4 tag fields use the correct encoding

    Fix the check for whether Unicode should be used when writing ID3v2.4
    tag fields.

    https://bugzilla.gnome.org/show_bug.cgi?id=758090

M	src/tags/id3v24_tag.c

commit acc554b2825abd84554b9f3a18edfb0887686d5c
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Tue Dec 29 09:29:34 2015 +0100

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit a74f0d280ed522e69ba91c0126a41466db266b61
Author: Jordi Mas <jmas@softcatala.org>
Date:	Sat Dec 5 23:02:11 2015 +0100

    Update Catalan translation

M	po/ca.po

commit c91fecb5d09f68864522fde00f18c7aed845ea8f
Author: Marcus Gisslén <marcus.gisslen@gmail.com>
Date:	Wed Dec 2 14:06:54 2015 +0000

    Updated Swedish translation

M	po/sv.po

commit bbf918f8427950734d0101ef2744fff57eaa4b7b
Author: Dennis Björklund <db@zigo.dhs.org>
Date:	Sun Nov 29 18:30:29 2015 +0000

    Fix selection of CDDB fields to fill

    https://bugzilla.gnome.org/show_bug.cgi?id=754901

M	src/cddb_dialog.c
M	src/scan_dialog.c
M	src/setting.c

commit 9adaa19236a14206c05c24b957c765833a79d834
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 13 19:00:28 2015 +0000

    Synchronize ETFileList pointer

    Ensure that sorting ETCore->ETFileDisplayedList, and possibly changing
    the head pointer, results in the ETCore->ETFileList pointer being
    updated to the head of the list.

    https://bugzilla.gnome.org/show_bug.cgi?id=755069

M	src/file_list.c

commit f18a548b5ae0f705a82db1b4da690fb6566191ba
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 13 18:59:35 2015 +0000

    Simplify invariant checks with et_str_empty()

M	src/file_list.c

commit 89f11ef54025dbe83a8bfedf760dc47850ec3653
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 13 18:58:21 2015 +0000

    Simplify ET_Displayed_File_List_By_Etfile()

    Use g_list_find() rather than a custom list search implementation.

M	src/file_list.c

commit 367e0b25f79a2e4cd8fa1a592f7093c13c6b748a
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 5 08:51:24 2015 +0000

    Handle FLAC files with an invalid sample rate

    Avoid dividing by zero when encountering FLAC files with a (invalid,
    according to the FLAC specification) sample rate of zero.

    https://bugzilla.gnome.org/show_bug.cgi?id=757547

M	src/tags/flac_header.c

commit 52a31751c5b05606a9701ecf9dbcd039fb474ef4
Author: Seong-ho Cho <shcho@gnome.org>
Date:	Thu Nov 5 00:39:15 2015 +0000

    Updated Korean translation

M	po/ko.po

commit a51e87c194da60aab1827ff1fe3aa5558c901347
Author: Marek Černocký <marek@manet.cz>
Date:	Mon Oct 12 00:06:28 2015 +0200

    Updated Czech translation

M	help/cs/cs.po

commit 32f3bdeb01b1a0f5a9ce724c83a21afbcc62e659
Author: Anders Jonsson <anders.jonsson@norsjovallen.se>
Date:	Mon Oct 5 22:33:58 2015 +0200

    Fix verb form in help file

M	help/C/tag-capitalization.page

commit b2cb380bca6d4ee17faa4aed075df32a8d3faf74
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Mon Oct 5 14:48:38 2015 +0000

    Updated Spanish translation

M	po/es.po

commit 75798b76b0bbc6992485f762cbdc31969957c243
Author: David King <amigadave@amigadave.com>
Date:	Wed Sep 9 19:52:01 2015 +0100

    Add additional autoconf-archive bootstrap macros

A	m4/ax_append_link_flags.m4
A	m4/ax_check_link_flag.m4

commit 7c440592e4ff95f3c8cec438019d270ca784b3d8
Author: James Cowgill <james410@cowgill.org.uk>
Date:	Tue Sep 8 17:49:13 2015 +0100

    Fix crash when writing playlists

    The error was caused by reading the 'rename-convert-spaces'
    setting with
    g_settings_get_flags() instead of g_settings_get_enum().

    https://bugzilla.gnome.org/show_bug.cgi?id=754742

M	src/playlist_dialog.c

commit de19a1705a03753eb130ad9e9336e5ad5b42dc9b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:	Mon Sep 7 22:24:48 2015 +0200

    Updated Norwegian bokmål translation from Åka Sikrom.

M	po/nb.po

commit a31b38c1c0fa9603ecf67b47ea622c59cf9eb2f5
Author: James Cowgill <james410@cowgill.org.uk>
Date:	Mon Sep 7 15:43:11 2015 +0100

    Add missing case when calling opus_tags_parse()

    The case for a "successful" return value was missing so saving an opus
    file was always causing easytag to abort at the assertion in the
    default
    case block.

    https://bugzilla.gnome.org/show_bug.cgi?id=754685

M	src/tags/vcedit.c

commit 84069f14c8c2006555e397ae5acdc7fc40917f7b
Author: David King <amigadave@amigadave.com>
Date:	Mon Sep 7 10:19:13 2015 +0100

    Fix a linking error on Mac OS X

    Update autoconf-archive M4 macros (especially
    AX_COMPILER_FLAGS_LDFLAGS)
    to ensure that linker flags are checked with the linker, not the
    compiler.

    https://bugzilla.gnome.org/show_bug.cgi?id=750981

M	m4/ax_compiler_flags.m4
M	m4/ax_compiler_flags_cflags.m4
M	m4/ax_compiler_flags_cxxflags.m4
M	m4/ax_compiler_flags_gir.m4
M	m4/ax_compiler_flags_ldflags.m4

commit c46c1312329dacf53544c82280898de36a2551ed
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Wed Sep 2 21:34:45 2015 +0200

    Updated Polish translation

M	po/pl.po

commit 3e63f54fa35b6d908be7c2baaeafa29fb6743163
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 29 10:56:14 2015 +0100

    Update NEWS for 2.4.0 release

M	NEWS
M	SOURCES
M	configure.ac

commit b43b26c5fa1c3f6278002d78639cc03c683805a6
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 29 10:53:34 2015 +0100

    Update British English translation

M	po/en_GB.po

commit ed08d1e203907c335680ccb72bed5328994bf138
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 29 09:21:46 2015 +0100

    Link to help.gnome.org on Windows

M	src/application.c

commit 75dd55b74c34a6ff7db950333551ce060b4237bf
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 29 09:17:34 2015 +0100

    Update locale list in Windows installer

M	easytag-win32-installer.nsi.in

commit 7aa6796774db9762a651cc0e47fca99d3614b829
Author: Pedro Albuquerque <palbuquerque73@gmail.com>
Date:	Thu Aug 27 08:49:31 2015 +0000

    Added Portuguese translation

M	po/LINGUAS
A	po/pt.po

commit 2831b9d38469efca5c3ce2acb68801e7adb3ed42
Author: David King <amigadave@amigadave.com>
Date:	Tue Aug 25 10:48:45 2015 +0100

    Remove extra terminating semicolons

M	src/file_list.c
M	src/file_name.c
M	src/scan_dialog.c

commit 00b2d93082e779121c16bf7d634497027128d919
Author: David King <amigadave@amigadave.com>
Date:	Mon Aug 24 21:59:21 2015 +0100

    Avoid a crash when deleting files

    Fix GList usage in ET_Remove_File_From_File_List(), which was
    broken in
    commit 6e7d4ab8dd2a0a96f320f9581f2df129c8324d5c, by passing the data
    pointer (not the GList pointer) to g_list_remove(). Additionally, drop
    some bogus g_list_free() calls left over from the old commit.

    https://bugzilla.redhat.com/show_bug.cgi?id=1252925

M	src/file_list.c

commit dfc61ce2bdde7204d869dc07e3b2bb1a90865753
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Tue Aug 11 00:26:19 2015 +0200

    Fix previous commit

M	po/bs.po
M	po/cs.po
M	po/de.po
M	po/es.po
M	po/fr.po
M	po/pl.po
M	po/pt_BR.po
M	po/sr.po
M	po/sr@latin.po
M	po/tr.po

commit 949327a16f29fccc9004c456c019177fb0c0d149
Author: David King <amigadave@amigadave.com>
Date:	Mon Aug 10 14:37:54 2015 +0100

    Fix disc number format specifier

    https://mail.gnome.org/archives/easytag-list/2015-August/msg00006.html

M	data/scan_dialog.ui
M	po/bs.po
M	po/ca.po
M	po/cs.po
M	po/de.po
M	po/en_GB.po
M	po/es.po
M	po/fr.po
M	po/hu.po
M	po/nb.po
M	po/pl.po
M	po/pt_BR.po
M	po/sr.po
M	po/sr@latin.po
M	po/tr.po

commit 7f26078fc55d9dde8c9ccd0cad7d3210a8390bf4
Author: David King <amigadave@amigadave.com>
Date:	Thu Jul 30 08:57:51 2015 +0100

    Improve handling of empty images within tags

    Skip over empty images when displaying them in the image tree view, to
    avoid a crash when trying to load a pixbuf from an empty buffer.

    https://bugzilla.redhat.com/show_bug.cgi?id=1248194

M	src/tag_area.c

commit 0d265c866d29c541e4c1d3c32e3995503a72c0a2
Author: David King <amigadave@amigadave.com>
Date:	Wed Jul 29 23:39:36 2015 +0100

    Improve handling of empty image files

    Raise an error, avoiding a crash, when an image file is empty.

    https://bugzilla.redhat.com/show_bug.cgi?id=1248194

M	src/picture.c

commit c0f62085e14f8f1cb9c96d1a87a02c48dd62e044
Author: Wolfgang Stöggl <c72578@yahoo.de>
Date:	Fri Jul 24 18:40:54 2015 +0000

    Updated German translation

M	po/de.po

commit e62dab45b8070dc5461fa7b23d2c457fb01bd21b
Author: David King <amigadave@amigadave.com>
Date:	Fri Jul 17 17:55:20 2015 +0100

    Allow the CDDB search entry to expand horizontally

M	data/cddb_dialog.ui

commit 37d5a1d95ea63687b75fbfd6b78504ffcb042ea8
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Wed Jul 15 17:42:33 2015 +0200

    Updated Spanish translation

M	po/es.po

commit 0e3a7f56989e9d20298cd1e82f26dd30e0a587a7
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 12 09:24:45 2015 +0100

    Do not pile up GError in ID3 tag writer

M	src/tags/id3_tag.c

commit 63068da2b97fc7f38b4b317bc4fd13995d5aee19
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 12 09:04:58 2015 +0100

    Remove a dialog in the ID3 tag writer

    Return the error to the calling code instead, removing a FIXME in the
    process.

M	src/tags/id3_tag.c

commit 3a8dac6eb061d77b2d6d48ab24ae895773c351f1
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 12 09:02:56 2015 +0100

    Remove some unnecessary include directives

M	src/browser.c
M	src/picture.c
M	src/tags/ape_tag.c
M	src/tags/flac_tag.c
M	src/tags/id3v24_tag.c
M	src/tags/ogg_tag.c
M	src/tags/opus_header.c
M	src/tags/opus_tag.c
M	src/tags/wavpack_header.c
M	src/tags/wavpack_tag.c

commit aeda2dfb6a2cad51fca83bbf6d4e51f8a764100c
Author: David King <amigadave@amigadave.com>
Date:	Thu Jul 9 09:32:48 2015 +0100

    Fix unused variable warning in CDDB dialog

    https://mail.gnome.org/archives/easytag-list/2015-July/msg00000.html

M	src/cddb_dialog.c

commit 4b840f34ae5e05a479d5d3664e87057564584113
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:	Mon Jul 6 06:53:25 2015 +0200

    Initial Hungarian help translation added

A	help/hu/hu.po

commit 01568516a3ee14430512b0adef2b1880a95c6381
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:	Mon Jul 6 06:52:30 2015 +0200

    Added hu to HELP_LINGUAS

M	help/Makefile.am

commit 7624aea49ca94c2073858d74502fa88fb7ba6cb4
Author: Gábor Kelemen <kelemeng@openscope.org>
Date:	Fri Jul 3 08:07:55 2015 +0000

    Updated Hungarian translation

M	po/hu.po

commit 4f2daf8860378b2903d078d054adc452d516835c
Author: David King <amigadave@amigadave.com>
Date:	Wed Jul 1 09:20:04 2015 +0100

    Do not stop searching when closing the CDDB dialog

    When the close response is emitted on the CDDB dialog, a boolean
    flag is
    set to stop searching. However, if a search is not running, the next
    search is stopped, as is every subsequent search.

    Change the close response handling to leave the flag unchanged.

    https://bugzilla.redhat.com/show_bug.cgi?id=1238042

M	src/cddb_dialog.c

commit 89461056b03a384ce0d2d7eedcc85dcdeeaccf3d
Author: David King <amigadave@amigadave.com>
Date:	Tue Jun 30 17:53:52 2015 +0100

    Do not scroll the log if the message is visible

    Fix a TODO in Log_List_Set_Row_Visible().

M	src/log.c

commit 23ce98865177a48bc1578af878a718c07e4e2449
Author: David King <amigadave@amigadave.com>
Date:	Tue Jun 30 17:52:26 2015 +0100

    Add for loop condition to File_Tag check

    Avoid a crash when checking the difference between two files without
    images.

M	src/file_tag.c

commit ca5da8320ca5a6835a2fc3b95995df86999ae8c6
Author: David King <amigadave@amigadave.com>
Date:	Mon Jun 29 21:13:05 2015 +0100

    Add a test for et_picture_detect_difference()

M	tests/test-picture.c

commit 530058d4c56e688324f60349d28af4715dd63236
Author: David King <amigadave@amigadave.com>
Date:	Mon Jun 29 20:54:30 2015 +0100

    Use et_picture_detect_difference() in tests

M	Makefile.am
M	tests/test-picture.c

commit 7cafddad51ebe49ba893c69097ea53b8ebdc8c34
Author: David King <amigadave@amigadave.com>
Date:	Mon Jun 29 20:37:17 2015 +0100

    Factor out EtPicture comparison to new function

    Move the code to check for differences between two EtPicture instances
    into EtPicture from File_Tag.

M	src/file_tag.c
M	src/picture.c
M	src/picture.h

commit 5b8b18cec47adc98810cae4f709c496fe3449356
Author: David King <amigadave@amigadave.com>
Date:	Mon Jun 29 20:08:58 2015 +0100

    Remove obsolete GLib version check

    GTK+ 3.10 requires GLib 2.38, so a check for 2.35.1 is useless.

M	src/main.c

commit 645e2e14372c6b8f02f7510314e3b66e29977228
Author: David King <amigadave@amigadave.com>
Date:	Mon Jun 29 19:43:11 2015 +0100

    Remove obsolete FIXME in ET_Sort_File_List()

M	src/file_list.c

commit d3a1e8f68865e06025df7f4f4289352436b0892e
Author: David King <amigadave@amigadave.com>
Date:	Mon Jun 29 19:40:21 2015 +0100

    Slightly improve et_artist_album_list_add_file()

    Use g_list_insert_sorted() rather than an append followed by a sort.

M	src/file_list.c

commit 364ab39c9761989ee920b1fd0e439363b41bfcb8
Author: David King <amigadave@amigadave.com>
Date:	Mon Jun 29 19:14:02 2015 +0100

    Refactor Scan_Process_Fields_Functions()

    Remove a FIXME by using GSettings rather than relying on the state
    of UI
    elements.

M	src/scan_dialog.c

commit b9224a1d8775a8f5ebefb5b60a25270050909c6b
Author: David King <amigadave@amigadave.com>
Date:	Mon Jun 29 19:01:31 2015 +0100

    Check for an error when creating a temporary file

    Remove a FIXME in the TagLib GIO wrapper.

M	src/tags/gio_wrapper.cc

commit 3bd3305bb4dfa683b929e11b8cb75d3216fe1ff5
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 28 16:24:07 2015 +0100

    Store the main window horizontal paned position

    Track changes in the position of the horizontal paned which
    contains the
    browser and tag/file area. On application exit, save the position with
    reference to the unmaximized window state. Restore the paned
    position on
    startup.

    https://bugzilla.gnome.org/show_bug.cgi?id=739701

M	src/application_window.c

commit d02b53e6ff9addaa344053bd3925ba215101ec66
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 28 14:03:53 2015 +0100

    Fix memory leak when changing browser view mode

    A GVariant retrieved from an action group with
    g_action_group_get_action_state() must be unreffed.

M	src/application_window.c

commit 891b557f77f4285282babb6540f8d150f6b25883
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 28 14:00:40 2015 +0100

    Fix selection behaviour when saving files

    In file list view, when saving files, the selection was reset to the
    current file only. Fix this by bisecting the failure back to commit
    4d24235a57f68b619ed0a6f7933bf7b9f6306902. Reinstate the check in
    Save_List_Of_Files(), to only call
    et_application_window_browser_toggle_display_mode() if the current
    browser view mode is the album/artist view.

    https://bugzilla.gnome.org/show_bug.cgi?id=739758

M	src/easytag.c

commit 4414da092d64466c85240a6ba0a7f6df01df1254
Author: David King <amigadave@amigadave.com>
Date:	Wed Jun 24 16:27:40 2015 +0100

    Include missing scan dialog capitalize binding

    The option to capitalize the first letter of each word in a field was
    not bound to a GSetting.

    https://mail.gnome.org/archives/easytag-list/2015-June/msg00006.html

M	src/scan_dialog.c

commit 2330fa34ec0c6163aa8f47f5d75a36589234715b
Author: David King <amigadave@amigadave.com>
Date:	Mon Jun 15 05:51:25 2015 +0100

    Fix crash when failing to read FLAC headers

    Ensure that the GError passed to g_file_read() has been initialized.

    https://bugzilla.redhat.com/show_bug.cgi?id=1231502

M	src/tags/flac_header.c

commit 49b316aa6c8e91290f9188c88b22bacd630cdb6f
Author: David King <amigadave@amigadave.com>
Date:	Sat Jun 13 22:34:17 2015 +0100

    Revert "Use GtkBuilder action-widgets for template dialogs"

    This reverts commit fb1758a471a9612b6a61e79a2dc975ddd8658625.

    Unfortunately, action-widgets support in GtkBuilder was only added in
    GTK+ 3.14, not 3.10 (which is the oldest version that EasyTAG
    supports).

    https://mail.gnome.org/archives/easytag-list/2015-June/msg00004.html

M	data/load_files_dialog.ui
M	data/playlist_dialog.ui
M	data/preferences_dialog.ui
M	data/scan_dialog.ui
M	src/load_files_dialog.c
M	src/playlist_dialog.c
M	src/preferences_dialog.c
M	src/scan_dialog.c

commit 5a910bac36a3b964371f9abd9b6fa62974e16203
Author: Gábor Kelemen <kelemeng@openscope.org>
Date:	Fri Jun 12 22:04:48 2015 +0000

    Updated Hungarian translation

M	po/hu.po

commit 2953a215980c32cf74adbf14ebbdb812cbeeb07f
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Thu Jun 11 11:21:32 2015 +0000

    Updated Spanish translation

M	po/es.po

commit 95e54b98baee2f9bb663dfe0f1bb126f4c7ccc79
Author: Muhammet Kara <muhammetk@gmail.com>
Date:	Tue Jun 9 17:43:19 2015 +0000

    Updated Turkish translation

M	po/tr.po

commit 59b980e065c5810b1abf214e3441084fc1f5b533
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Tue Jun 9 12:11:26 2015 +0000

    Updated Spanish translation

M	po/es.po

commit d1ca2a10518efccbc4a1613adf053c2710ce9b26
Author: David King <amigadave@amigadave.com>
Date:	Mon Jun 1 17:16:32 2015 +0100

    Fix file description test with missing tag support

    If support for a particular tag type is disabled, test that the
    file/tag
    type is tested against the unsupported type.

    https://bugzilla.gnome.org/show_bug.cgi?id=749983

M	tests/test-file_description.c

commit 6246b05fb6c62f45e96953156a166778ae550e5c
Author: Marek Černocký <marek@manet.cz>
Date:	Mon Jun 1 15:41:25 2015 +0200

    Updated Czech translation

M	help/cs/cs.po

commit 321fa49bb6cb1b473bab9caaca854749d3718b6f
Author: Marek Černocký <marek@manet.cz>
Date:	Mon Jun 1 15:41:20 2015 +0200

    Updated Czech translation

M	po/cs.po

commit de4d83785968cd4c71f537bcf79c28bc30e75d17
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Mon Jun 1 15:00:10 2015 +0200

    Updated Polish translation

M	po/pl.po

commit aaee6b0b1ab12f309c958d8c03724a1b3256fc6b
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	Mon Jun 1 12:53:34 2015 +0000

    Updated French translation

M	po/fr.po

commit 14975ad4f7905d7d7f064fd6b7e4fcf8e0586ca7
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	Mon Jun 1 12:51:55 2015 +0000

    Updated French translation

M	help/fr/fr.po

commit 8d12d669faa1f22c2718fb92c55359902b994938
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	Mon Jun 1 14:50:10 2015 +0200

    Add missing period in docs

M	help/C/tag-capitalization.page

commit 7ea0facd92fc3ed5552e7c1b91e137a123763ae5
Author: David King <amigadave@amigadave.com>
Date:	Mon Jun 1 13:22:05 2015 +0100

    Remove leading spaces in two translatable strings

    As requested by Alexandre Franke.

M	data/preferences_dialog.ui
M	data/scan_dialog.ui

commit 1dbf92faf0cb1080041f1d46587c5ad60354df45
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	Mon Jun 1 11:54:28 2015 +0000

    Updated French translation

M	po/fr.po

commit 9371cdeab2a24c07a0572c9fda36babc9f8c7209
Author: David King <amigadave@amigadave.com>
Date:	Sun May 31 21:32:57 2015 +0100

    Fix crash when pressing a key to change directory

    Use the correct signal handler for key-press-event on the directory
    browser tree view.

    https://bugzilla.redhat.com/show_bug.cgi?id=1226671

M	data/browser.ui

commit 500ddd0a34a072a54b72ed484c888cecfa615f86
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Fri May 29 08:21:32 2015 +0000

    Updated Spanish translation

M	po/es.po

commit da8cc98bfd936a7264e845ca127867e2b28f7be6
Author: Marek Černocký <marek@manet.cz>
Date:	Sat May 23 19:05:15 2015 +0200

    Updated Czech translation

M	po/cs.po

commit 821114e6849f02a6aa5f4f7076767088b6625d54
Author: Jordi Mas <jmas@softcatala.org>
Date:	Mon May 18 20:19:32 2015 +0200

    Fixes to Catalan translation

M	help/ca/ca.po

commit 4b1ad66211e14effb989aa9a65e5d707ac7d37ed
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Mon May 18 17:23:04 2015 +0200

    Updated Polish translation

M	po/pl.po

commit cd8b8f3dcca8091d400820a64d0082f8cc5bf0a3
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun May 17 17:02:13 2015 +0200

    Updated Polish translation

M	po/pl.po

commit ed95422f96b0875fa272c4ede8f3dbd01a50c18b
Author: David King <amigadave@amigadave.com>
Date:	Sun May 17 11:04:02 2015 +0100

    Update NEWS for 2.3.7 release

M	NEWS
M	SOURCES
M	configure.ac

commit 25cab7dc17f3d725b7c5594c17ccd96acfb8ac6d
Author: David King <amigadave@amigadave.com>
Date:	Thu May 14 07:01:03 2015 +0200

    Use gtk_builder_new_from_resource()

M	src/application.c
M	src/application_window.c
M	src/browser.c
M	src/log.c
M	src/tag_area.c

commit fb1758a471a9612b6a61e79a2dc975ddd8658625
Author: David King <amigadave@amigadave.com>
Date:	Wed May 13 23:18:26 2015 +0700

    Use GtkBuilder action-widgets for template dialogs

M	data/load_files_dialog.ui
M	data/playlist_dialog.ui
M	data/preferences_dialog.ui
M	data/scan_dialog.ui
M	src/load_files_dialog.c
M	src/playlist_dialog.c
M	src/preferences_dialog.c
M	src/scan_dialog.c

commit 5f9e33e265083a604fad80717b3ee16adcde3488
Author: David King <amigadave@amigadave.com>
Date:	Wed May 13 20:00:20 2015 +0700

    Convert EtPreferencesDialog to a template widget

M	data/preferences_dialog.ui
M	src/preferences_dialog.c

commit ee5f5e207168b6170e35aaaea7c856a691467973
Author: David King <amigadave@amigadave.com>
Date:	Mon May 4 19:49:06 2015 +0100

    Convert EtScanDialog to a template widget

M	data/scan_dialog.ui
M	src/scan_dialog.c

commit 98cdc8d614aa8ac2a0e27dc968b7205dc27df621
Author: David King <amigadave@amigadave.com>
Date:	Sun May 3 22:05:19 2015 +0100

    Convert EtLoadFilesDialog to a template widget

M	data/load_files_dialog.ui
M	src/load_files_dialog.c

commit 1b03d98824602fb7845c10423afaa548725cd97d
Author: David King <amigadave@amigadave.com>
Date:	Sun May 3 17:27:31 2015 +0100

    Convert EtPlaylistDialog to a template widget

M	data/playlist_dialog.ui
M	src/playlist_dialog.c

commit 58c17a944041dadcc034c220cdb8c5fa652ab025
Author: David King <amigadave@amigadave.com>
Date:	Sun May 3 16:58:40 2015 +0100

    Convert EtSearchDialog to a template widget

M	data/search_dialog.ui
M	src/search_dialog.c

commit 90baa8c59ce4e32f0f0262a30c24876175e11f25
Author: David King <amigadave@amigadave.com>
Date:	Sun May 3 16:00:12 2015 +0100

    Convert EtCDDBDialog to a template widget

M	data/cddb_dialog.ui
M	src/cddb_dialog.c

commit d8bf7e596b396dbec7033cf5dddd068149d79ea3
Author: David King <amigadave@amigadave.com>
Date:	Sun May 3 13:22:10 2015 +0100

    Convert EtBrowser to a template widget

M	data/browser.ui
A	data/browser_dialogs.ui
M	data/org.gnome.EasyTAG.gresource.xml
M	po/POTFILES.in
M	src/browser.c

commit 5fe2d433a93a0408a552f1d96420ea10161887f0
Author: David King <amigadave@amigadave.com>
Date:	Sat May 2 11:36:59 2015 +0100

    Convert EtTagArea to a template widget

A	data/image_properties_dialog.ui
M	data/org.gnome.EasyTAG.gresource.xml
M	data/tag_area.ui
M	po/POTFILES.in
M	src/tag_area.c

commit d43940998e4e8fd1951c379d2ca80370ed24f04f
Author: David King <amigadave@amigadave.com>
Date:	Sat May 2 08:33:54 2015 +0100

    Convert EtFileArea to a template widget

M	data/file_area.ui
M	src/file_area.c

commit 6a55e5d6491b940994ae6daa29693a04b7eb1447
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 28 19:14:33 2015 +0100

    Convert EtLogArea to a template widget

M	data/log_area.ui
M	src/log.c

commit 1842c7870d4a98e4cf9419c629a6f72d05ff2151
Author: David King <amigadave@amigadave.com>
Date:	Thu May 14 07:16:30 2015 +0200

    Use gtk_application_get_active_window()

    Added in GTK+ 3.6.

M	src/application.c

commit b76913f322e4ade1321f0416247b1f6c970e5f7d
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 9 21:54:00 2015 +0000

    Use gtk_accel_label_set_accel()

    Added in GTK+ 3.6.

M	src/tag_area.c

commit f98eadbedf07e7da218da8cd847e6c3ea972532e
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 9 21:47:47 2015 +0000

    Use G_DEFINE_TYPE_WITH_PRIVATE

    Added in GLib 2.38.

M	README
M	configure.ac
M	src/application.c
M	src/application.h
M	src/application_window.c
M	src/application_window.h
M	src/browser.c
M	src/browser.h
M	src/cddb_dialog.c
M	src/cddb_dialog.h
M	src/file_area.c
M	src/file_area.h
M	src/load_files_dialog.c
M	src/load_files_dialog.h
M	src/log.c
M	src/log.h
M	src/playlist_dialog.c
M	src/playlist_dialog.h
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/scan_dialog.c
M	src/scan_dialog.h
M	src/search_dialog.c
M	src/search_dialog.h
M	src/status_bar.c
M	src/status_bar.h
M	src/tag_area.c
M	src/tag_area.h

commit 7cc3d40b1d52826d011cff0c5c062d6883fd92fe
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 9 20:33:08 2015 +0000

    Use gdk_pixbuf_loader_write_bytes()

    Added in GDK Pixbuf 2.30.

M	src/tag_area.c
M	src/tags/ogg_tag.c

commit 31854b89fa5b8f6c4185ff29b4057a42ce9a4935
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 9 20:12:30 2015 +0000

    Use g_memory_output_stream_steal_as_bytes()

    Added in GIO 2.34.

M	src/picture.c

commit 77b5ac6175e647d572c88e45ae8cd05d79691aff
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 9 20:09:58 2015 +0000

    Use resource property on GtkImage

    Added in GTK+ 3.8.

M	data/toolbar.ui
M	src/application_window.c

commit 2663ae95b6c6a8b3de3370ec3069f701301a91da
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 9 18:58:54 2015 +0000

    Handle UI scale factor in images tree view

M	README
M	configure.ac
M	data/tag_area.ui
M	src/tag_area.c

commit d121aec30a398296bbf0837b40024bda8a3d3056
Author: David King <amigadave@amigadave.com>
Date:	Thu May 14 08:17:52 2015 +0200

    Include libepoxy in Windows installer

    https://bugzilla.gnome.org/show_bug.cgi?id=748682

M	SOURCES
M	easytag-win32-installer.nsi.in

commit b399bbb4056d0cd0bfd929f3fd694d565811d749
Author: Marek Černocký <marek@manet.cz>
Date:	Thu May 14 22:17:07 2015 +0200

    Updated Czech translation

M	help/cs/cs.po

commit 39941bc9a5655d0889073b11736d123f580847de
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	Thu May 14 13:23:49 2015 +0000

    Updated French translation

M	help/fr/fr.po

commit 125c879b9c49c8da1e6ea84fbb8c71236517cde9
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	Thu May 14 15:05:35 2015 +0200

    Fix typo

M	help/C/problems-id3.page

commit 861a457aa1e9e084b32f33487dc8b12b48978d42
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun May 3 20:25:36 2015 +0200

    Updated Polish translation

M	po/pl.po

commit 6a950a2d35f3f558c68148b46029c45e9334c33a
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 19 23:08:54 2015 +0100

    Update NEWS for 2.3.6 release

M	NEWS
M	SOURCES
M	configure.ac

commit 2846af55d2144f099cb0bfa7a5dedd86a65f2e50
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 19 23:46:08 2015 +0100

    Update Windows locale path

M	easytag-win32-installer.nsi.in
M	src/win32/win32dep.c

commit 77977445a0b4b17b59d865d367a2707fa6d03f67
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Apr 19 22:45:53 2015 +0100

    Move symbolic icon to new location

M	Makefile.am
R100	data/icons/scalable/easytag-symbolic.svg
data/icons/symbolic/easytag-symbolic.svg

commit d9725ffc46f4c1f891b1c94cc5ceaea73bdac6dd
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 19 09:13:46 2015 +0100

    Fix French help translation

M	help/fr/fr.po

commit c251376180e00a0314981fb567db73610d7686a7
Author: David King <amigadave@amigadave.com>
Date:	Sat Dec 27 18:37:25 2014 +0000

    Add a simple test for et_rename_file()

M	tests/test-misc.c

commit 22547cbf8d92f50a4a083ca886a9674953d2a89b
Author: David King <amigadave@amigadave.com>
Date:	Sat Dec 27 16:50:45 2014 +0000

    Move et_rename_file() to misc.c

    This should make it easier to write a test.

M	src/easytag.c
M	src/misc.c
M	src/misc.h

commit 7cd402305b2a06c24a008c73970e98eaf71651c1
Author: Jordi Mas <jmas@softcatala.org>
Date:	Sat Apr 18 20:08:56 2015 +0200

    Fixes to Catalan translation

M	po/ca.po

commit 69d2edccde79e97d3f409c921872b905c9db5137
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	Sat Apr 18 19:14:36 2015 +0200

    Add French translation of help

M	help/Makefile.am
A	help/fr/fr.po

commit f2bb6ce0607a9354543665794d333f692e6f08d9
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	Sat Apr 18 17:10:43 2015 +0000

    Updated French translation

M	po/fr.po

commit ebe763370f8b271ee5d5ca51613a9ae2cfb1a54b
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Mar 29 20:54:52 2015 +0200

    Updated Polish translation

M	po/pl.po

commit 6b8391517d30c4444a3ab596533dd76d01dc975b
Author: Marek Černocký <marek@manet.cz>
Date:	Sun Mar 29 13:21:25 2015 +0200

    Updated Czech translation

M	help/cs/cs.po

commit b998f5b09ae7e1e664b3598fa6b2fa1ad2039bdc
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 27 18:53:46 2015 +0100

    Improve unknown encoding case when reading ID3v2

    Drop use of the internal convert_to_utf8() function, and instead place
    the conversion logic directly in the ID3 code.

M	src/charset.c
M	src/charset.h
M	src/scan_dialog.c
M	src/tags/id3_tag.c

commit 2e77643a70ef2f9a9bce83867c963aac1b54c65e
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 27 18:08:03 2015 +0100

    Use et_str_empty() instead of strlen() in search

M	src/search_dialog.c

commit e98e19fe2789e516040d1597c8a60338cca896c9
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	Fri Mar 27 16:52:56 2015 +0100

    Format specifiers shouldn't be translatable

M	help/C/format-specifier.page

commit c830fcd737ac05fb8fc837f9ea931a96654d1614
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 27 14:44:11 2015 +0100

    Fix compilation if Opus support is disabled

M	src/file.c
M	src/file_list.c
M	src/tag_area.c
M	src/tags/vcedit.c

commit 749de0a03f8922c78d41ef79d9b22c11b6206cdf
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 27 14:40:49 2015 +0100

    Fix compilation if Speex support is disabled

M	src/tags/vcedit.c

commit 61fc11a2d7b6c1a833f40f644b70be2f46ad90bb
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 27 14:38:27 2015 +0100

    Fix compilation if MP3 support is disabled

M	src/application_window.c
M	src/file_list.c
M	src/preferences_dialog.c
M	src/tag_area.c

commit 2e000acdede6e08e81e28cdee656284af7beea3c
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 27 14:32:21 2015 +0100

    Fix compilation when WavPack support is enabled

    https://bugzilla.gnome.org/show_bug.cgi?id=746372

M	src/tags/wavpack_private.c

commit 8a07d6b5b3609005dbb0418dbdb84d5626d9857c
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Fri Mar 27 13:35:53 2015 +0100

    Improve wording in playlist help

M	help/C/playlist-generate.page

commit e3fd07c6f691c0e1a70b5cb6e4f9fc4abecde95b
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Thu Mar 26 20:11:57 2015 +0100

    Add help for capitalising tags

A	help/C/tag-capitalization.page
M	help/Makefile.am

commit 9162803e58d9a15d5104ea42fa129a87823f6649
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 26 18:54:02 2015 +0100

    Drop an unnecessary include directive

M	src/about.c

commit b8fa3cd02f0047a774497737dbb6da832db76b1c
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 26 18:53:46 2015 +0100

    Add translator credits for British English

M	po/en_GB.po

commit 471d5bbc27152f8d6baf153de7c2458603a4f149
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 26 18:53:23 2015 +0100

    Drop obsolete intltool localedir workaround

M	Makefile.am

commit e00916afb65ea86fe24e16d9a679c2656c59d6aa
Author: Marek Černocký <marek@manet.cz>
Date:	Thu Mar 26 18:23:38 2015 +0100

    Updated Czech translation

M	help/cs/cs.po

commit ea21653f62039f04a3138f6453fe863d18fa1014
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 26 18:19:33 2015 +0100

    Credit Kat for the symbolic application icon

M	THANKS
M	src/about.c

commit 2f8ce5f47892b75bd610647de22b826f9375b8a2
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 26 18:05:42 2015 +0100

    Fix switch-enum warning when disabling tag support

    https://bugzilla.gnome.org/show_bug.cgi?id=746372

M	src/application_window.c
M	src/file.c
M	src/file_list.c
M	src/tag_area.c

commit 6984a45fac83e2407e1d9c4908764992f1ea62c4
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Thu Mar 26 17:30:10 2015 +0100

    Use path instead of stroke for the symbolic icon

M	data/icons/scalable/easytag-symbolic.svg

commit 3f90c91d5cb5f8a8be93ba496ed19fd55e81704d
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Thu Mar 26 17:25:24 2015 +0100

    Make descriptions consistent in help

M	help/C/image-delete.page
M	help/C/image-export.page
M	help/C/scanner.page

commit 46737fc2a7d42801360ecacc3d6047e87a5e5074
Author: Marek Černocký <marek@manet.cz>
Date:	Thu Mar 26 16:36:32 2015 +0100

    Updated Czech translation

M	help/cs/cs.po

commit 9f65e0288d4464efcaddc474e6bcb68a58196d0c
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 26 14:32:00 2015 +0100

    Simplify Vorbis comment tag reading

    Split out the code that sets tag fields when reading from Ogg files to
    a separate function, as with FLAC. Fix a memory leak when reading
    multiple identical fields. Avoid an unnecessary string allocation.

M	src/tags/ogg_tag.c

commit d719e73e2996f1d6358d646f1ec4e1d3e74ba6e3
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 26 13:38:24 2015 +0100

    Fix typo in British English translation

M	po/en_GB.po

commit c0bc190d56c8938681a4e9e945671cc4052780f8
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 26 13:34:53 2015 +0100

    Update British English translation

M	po/en_GB.po

commit ac3a319bfcbaff1ea8e50137fdf542b05dcd1999
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 26 10:39:37 2015 +0100

    Remove quit confirmation dialogue

    There is already a dialogue for confirming when unsaved changes
    would be
    lost, so the extra confirmation is unnecessary.

    As suggested by Alexandre Franke.

M	data/org.gnome.EasyTAG.gschema.xml
M	data/preferences_dialog.ui
M	src/application_window.c
M	src/preferences_dialog.c

commit 9eff1aa05679c2b0d43f136bcd71304a0eec29dd
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 26 10:24:14 2015 +0100

    Update help for UI and string changes

M	help/C/cddb-search.page
M	help/C/file-rename.page
M	help/C/image.page
M	help/C/problems-id3.page
M	help/C/problems-ogg-split.page
M	help/C/scanner.page

commit b988851a21857bb0a2f2da9b22548e9db0fcc339
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 26 09:51:58 2015 +0100

    Refactor adding FLAC tag fields to Vorbis comment

    Add comments to functions which append tag fields to Vorbis
    comments in
    FLAC tags. Emit a critical warning if appending a tag fails.

M	src/tags/flac_tag.c

commit ecef6029d0a150d421984a4155a9341ece97a8af
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 26 09:14:40 2015 +0100

    Remove maximum log lines setting

    Do not restrict the maximum number of lines in the log.

M	data/org.gnome.EasyTAG.gschema.xml
M	data/preferences_dialog.ui
M	src/log.c
M	src/preferences_dialog.c

commit 8d7c32b9d7378923ed7ff1bd95c284ef60a72a57
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Thu Mar 26 08:09:47 2015 +0100

    Add scalable symbolic icon

M	Makefile.am
A	data/icons/scalable/easytag-symbolic.svg

commit afdc4bab35ec7f00bfa3ead9c3356fbd35650db4
Author: Marek Černocký <marek@manet.cz>
Date:	Thu Mar 26 00:47:35 2015 +0100

    Updated Czech translation

M	po/cs.po

commit 48bc8b177698b4233a510f957cf6e68c7a937786
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 22:08:27 2015 +0100

    Refactor FLAC tag field string reading

    Split out the code that sets tag fields when reading from FLAC
    files to
    a separate function. Fix a memory leak when reading multiple identical
    fields. Avoid an unnecessary string allocation.

M	src/tags/flac_tag.c

commit 6a78cda27595163240f0dcd8c73ca5084055e405
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 21:32:20 2015 +0100

    Simplify checking for valid UTF-8 with FLAC

    In the common case that FLAC tag fields are valid UTF-8, avoid
    an extra
    string allocation.

M	src/tags/flac_tag.c

commit 923f1a315f3ab5f580841a93bc53aa2bf8619eef
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 20:24:19 2015 +0100

    Simplify prefixing the current path in the scanner

    Remove an unnecessary Try_To_Validate_Utf8_String() call.

M	src/scan_dialog.c

commit 8e921ebb318d8ae466379ca0fa1ba879e1acf467
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 20:08:01 2015 +0100

    Add some translator comments for scanner headers

    As suggested by Alexandre Franke.

M	data/preferences_dialog.ui

commit b32f9f1370bf03ffe78c476d8d78cb2092e395a0
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 19:42:40 2015 +0100

    Use g_str_empty() for more empty string checks

M	src/browser.c
M	src/tag_area.c
M	src/tags/flac_tag.c

commit 46109b22591173b722a190a69151e855cea52227
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 18:44:02 2015 +0100

    Simplify core file list management

    The ETFileList pointer in ET_Core always points to the first item, so
    avoid calling g_list_first() on it unnecessarily.

M	src/application_window.c
M	src/easytag.c
M	src/file_list.c
M	src/load_files_dialog.c
M	src/playlist_dialog.c
M	src/search_dialog.c
M	src/tag_area.c

commit 7934aab28fbf96e5fc686bc9f97437192b292866
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 18:24:46 2015 +0100

    Add a translator comment for a preferences header

    As suggested by Alexandre Franke.

M	data/preferences_dialog.ui

commit 185056a68895b39760203ce955c5ca8f8959974e
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 18:09:07 2015 +0100

    Remove whitespace in tooltip string

    Additionally, slightly clarify the string.

    Spotted by Alexandre Franke.

M	data/scan_dialog.ui

commit 008287593f6af3a7a2432a75b5f6449972544f69
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 16:58:01 2015 +0100

    Add translator comment for a CDDB dialogue header

    As suggested by Alexandre Franke.

M	data/cddb_dialog.ui

commit 653b1b717f7371791f27a4aefa28c22bb22718de
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 16:56:08 2015 +0100

    Add a translator comment for a CDDB column header

    As suggested by Alexandre Franke.

M	data/cddb_dialog.ui

commit a00b0aa84e471aba695ac7685c24ced740afb3d0
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 16:54:34 2015 +0100

    Improve some track number strings in the CDDB dialogue

    As suggested by Alexandre Franke.

M	data/cddb_dialog.ui

commit 6f359aab83891005a5038acd5d2d843339a51e5b
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 16:50:12 2015 +0100

    Improve load files dialogue tooltip

    As suggested by Alexandre Franke.

M	data/load_files_dialog.ui
M	data/org.gnome.EasyTAG.gschema.xml

commit e57617990f468a68a9c2bc8ee6579c53db91f141
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 16:26:36 2015 +0100

    Improve log area minimum size

    Do not allow the paned to shrink the log area, and set a minimum
    height
    on the scrolled window.

M	data/log_area.ui
M	src/application_window.c

commit e01baeea0743cf7e9476ed2d3c94b723101e9dbc
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 14:42:54 2015 +0100

    Add a translator comment for "literal name"

    As suggested by Alexandre Franke.

M	data/browser.ui

commit 40a5309fdac75d8427cb2adf4b9cb02e8d189966
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 25 14:30:49 2015 +0100

    Preserve order when copying unsupported tag fields

M	src/file_tag.c

commit b7bd612ab8a7faf19e602491cb28a2bf7779b279
Author: Jordi Mas <jmas@softcatala.org>
Date:	Tue Mar 17 17:23:47 2015 -0400

    Catalan help translation

M	help/Makefile.am
A	help/ca/ca.po

commit 8791563eeb6065ba3edd7062f622b9600550aace
Author: Jordi Mas <jmas@softcatala.org>
Date:	Tue Mar 17 17:10:41 2015 -0400

    Update Catalan translation

M	po/ca.po

commit 285ba45ef80b7d9ff19a1b6dafec85db8a0b4be8
Author: Samir Ribic <samir.ribic@etf.unsa.ba>
Date:	Fri Mar 13 23:22:16 2015 +0000

    Added Bosnian translation

M	po/LINGUAS
A	po/bs.po

commit 35ecb696f6fb8e2781b57a0158d2d3c2d6df4b96
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 12 21:55:36 2015 +0000

    Make g_file_list_add() accept a GFile

    Fix a long-standing filename memory leak when adding files to the main
    file list.

M	src/easytag.c
M	src/file_list.c
M	src/file_list.h

commit 6fa3e3ff722a650c66ed7ceafd59229e1f07e110
Author: Yosef Or Boczko <yoseforb@src.gnome.org>
Date:	Tue Mar 10 17:25:26 2015 +0200

    Fix error build

    src/file_list.c:243:15: error: ‘LC_CTYPE’ undeclared (first use
    in this
    function)

M	src/file_list.c

commit 74cbe389aa22f4ea269f306cdb9c2d9b07e9275b
Author: David King <amigadave@amigadave.com>
Date:	Tue Mar 10 08:36:27 2015 +0000

    Fix renaming files in the scanner

    Introduced as part of the empty string changes in
    afa3ed43e88762179339bdfad137c21d123deb8f.

    https://mail.gnome.org/archives/easytag-list/2015-March/msg00001.html

M	src/scan_dialog.c

commit f73e12fe96b66cc36470acc39d88a23b96744a37
Author: David King <amigadave@amigadave.com>
Date:	Mon Mar 9 23:20:28 2015 +0000

    Update NEWS for 2.3.5 release

M	NEWS
M	SOURCES
M	configure.ac

commit bba87b66f8ee584630965a55496905ea56535a1e
Author: Marek Černocký <marek@manet.cz>
Date:	Sun Mar 1 19:31:26 2015 +0100

    Updated Czech translation

M	po/cs.po

commit 17491cdbbfc022c15cb98db4cacaaff9a029d1a3
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 23 21:14:16 2015 +0000

    Add bug reference to File_Tag test

M	tests/test-file_tag.c

commit 3fc01f03d7730524cf02ede2e9adcf1f5df70dde
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 23 19:04:04 2015 +0000

    Use versioning guards for tests

    Simplify test declaration by factoring out the common variables,
    and add
    the versioning guards to those.

M	Makefile.am

commit 1eca256c4f4b67d38c4dcdb93a658e9f9f26edf9
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 23 18:53:10 2015 +0000

    Reinstate versioning guards for GLib and GTK+

    These were accidentally dropped when migrating to AX_COMPILER_FLAGS.

M	Makefile.am
M	configure.ac

commit 89e7cb0190ff6970987bd6be6795bd936f5edf30
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 22 16:08:12 2015 +0000

    Remove some unnecessary finalize() overrides

M	src/load_files_dialog.c
M	src/playlist_dialog.c
M	src/preferences_dialog.c
M	src/search_dialog.c

commit 57512213ef1cb3a708fafadefaaf0294aee1bf53
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Feb 22 20:46:45 2015 +0100

    Updated Polish translation

M	po/pl.po

commit 9ae72de9596dbe5715a949912fed73b1d626d80a
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 22 13:29:58 2015 +0000

    Add a test for et_file_tag_copy_other_into()

M	src/file_tag.c
M	tests/test-file_tag.c

commit 678d0b977387d32951d08f5fcc7d1569ce6ba328
Author: Ting-Wei Lan <lantw@src.gnome.org>
Date:	Sun Feb 22 12:51:21 2015 +0800

    Fix "void function should not return a value"

    https://bugzilla.gnome.org/show_bug.cgi?id=744928

M	src/application_window.c

commit aba60f35e96ecfbc5a5b4c9ccb834aeed670bfdc
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 22 12:43:19 2015 +0000

    Fix a memory leak when freeing the history list

M	src/file_list.c

commit f3f403cd4e2168f4bbc1fb650357c3ea73102ff5
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 22 12:14:28 2015 +0000

    Fix memory leak in et_file_list_add()

M	src/file_list.c

commit f899d24f97e770dc6188367d0cff08fe849baa8d
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 22 11:58:01 2015 +0000

    Avoid some unnecessary tag area string copying

    When applying tags to a selection, avoid using
    gtk_editable_get_chars(),
    which copies the entry content, and instead use gtk_entry_get_text(),
    which returns a const pointer to the entry string.

M	src/tag_area.c

commit 1781770285c0f65bcb6d0e7dc805b12831d0c7cd
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 22 10:54:36 2015 +0000

    Clarify a string in the scanner dialog legend

    As reported by Tristan Scott.

M	data/scan_dialog.ui

commit 40abf34fa235dcb5527f326bdf772b87b9773bc8
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 23:12:05 2015 +0000

    Use et_str_empty() in several more places

    There are many instances of strlen() being used to check for an empty
    string, which can be replaced with et_str_empty().

M	src/browser.c
M	src/cddb_dialog.c
M	src/playlist_dialog.c
M	src/scan_dialog.c
M	src/tag_area.c

commit 87d56bb8e4013ab1afde622f74317b56d92033c5
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 22:48:32 2015 +0000

    Add simple test for et_str_empty()

M	tests/test-misc.c

commit afa3ed43e88762179339bdfad137c21d123deb8f
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 22:39:56 2015 +0000

    Convert most g_utf8_strlen() to new et_str_empty()

    Nearly all uses of g_utf8_strlen() were to check that a string was not
    empty. The check for empty was often paired with a check that the char
    pointer was not NULL. Simplify the combination of checks into a new
    et_str_empty() function, which returns TRUE if either the supplied
    char
    pointer is NULL or the string is empty.

    Leave checks that are only concerned with one of the two checks
    as they
    are, but remove g_utf8_strlen() where possible.

M	src/browser.c
M	src/cddb_dialog.c
M	src/file.c
M	src/load_files_dialog.c
M	src/misc.c
M	src/misc.h
M	src/playlist_dialog.c
M	src/scan_dialog.c
M	src/setting.c
M	src/tag_area.c
M	src/tags/ape_tag.c
M	src/tags/flac_tag.c
M	src/tags/id3_tag.c
M	src/tags/ogg_tag.c

commit 60657a082be24cb131c41d0284d67a4f475b636b
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 20:45:04 2015 +0000

    Remove unused static variables

M	src/browser.c
M	src/misc.c
M	src/scan_dialog.c

commit eaeb1453d75e122ccb6c228db46afbda8950d3b2
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 20:21:35 2015 +0000

    Move string length define from header to source

M	src/cddb_dialog.c
M	src/easytag.h

commit af0a7687a2226f011fa5000c47f88986316c91f0
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 18:05:32 2015 +0000

    Add a simple test for et_normalized_strcmp0()

M	tests/test-misc.c

commit 834b354f5ddf438ee58fa5824ea7b7849eb05e1e
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 17:54:42 2015 +0000

    Add a function for comparing UTF-8 strings

    Comparing strings for equality with g_utf8_collate() gives a poor
    result, as it is intended for ordering, not equality comparisons. It
    is
    preferable to normalize the string first, and then to compare the
    normalized result.

    Add a new et_normalized_strcmp0() function to do this, and use it in
    et_file_tag_detect_difference() to avoid problems where two strings
    compared identically with g_utf8_collate(), which prevented the user
    from changing tag fields. Adapt the File_Tag test as appropriate.

    https://bugzilla.gnome.org/show_bug.cgi?id=744897

M	src/file_tag.c
M	src/misc.c
M	src/misc.h
M	tests/test-file_tag.c

commit 8e51def2639137056a0f3ebe845986a2934143da
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 16:49:08 2015 +0000

    Add File_Tag tests

M	Makefile.am
A	tests/test-file_tag.c

commit d5ec560efd040fcb065907678a819ec513e51920
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 16:25:13 2015 +0000

    Add a simple undo key test

M	tests/test-misc.c

commit af47e0762d646d72b77c77d5f1de234bbaa22095
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 16:20:20 2015 +0000

    Move undo key generation to misc.c

    This should make it easier to write tests.

M	src/file.c
M	src/file.h
M	src/file_list.c
M	src/file_name.c
M	src/file_tag.c
M	src/misc.c
M	src/misc.h

commit 6671ad6aa83456325dceaef32e276748f205abad
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 16:05:35 2015 +0000

    Use g_build_filename() in a couple more places

M	src/browser.c
M	src/scan_dialog.c

commit 2c202d8e884da7d0749cf907f22c15de204f64b5
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 11:16:31 2015 +0000

    Simplify application window file list navigation

    Factor out the common code to a separate function.

M	src/application_window.c

commit 480514bf6375efdaf310c8f299241346b8aa2c1e
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 11:07:06 2015 +0000

    Update AX_COMPILER_FLAGS from autoconf-archive

M	m4/ax_compiler_flags.m4
M	m4/ax_compiler_flags_cflags.m4

commit dc2d03daa4924aaa02ab7065ebc46b4fec9ae716
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 11:05:54 2015 +0000

    Tighten invariants when navigating the file list

M	src/application_window.c

commit 8702b04364ff590c3181ffbbeeb11b5a49e2cb16
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 21 10:52:31 2015 +0000

    Use ET_Set_Filename_File_Name_Item()

    Rather than setting File_Name fields directly, use the existing helper
    function.

M	src/file_list.c

commit b0c6e89c56e5877fd8398d3a4511bec9767ca4d5
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 19 23:27:23 2015 +0000

    Move filename updating code to application window

    Remove GTK+ calls from the ET_File code.

M	src/application_window.c
M	src/file.c
M	src/file.h
M	src/file_name.c
M	src/file_name.h

commit 1a8b1b757f719b16a5a3a62fc9309b743e1b408b
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 19 22:30:25 2015 +0000

    Factor out common file renaming code

    Refactor ET_Save_File_Name_Internal() and ET_Save_File_Name_From_UI()
    to
    use a new et_file_name_set_from_components(), and reduce code
    duplicatoin slightly.

M	src/file.c

commit 95dc22cef21b1ed78ccdba4021e4f472bab384b5
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 19 20:32:05 2015 +0000

    Move ET_Display_File_Data_To_UI() to main window

    Rename ET_Display_File_Data_To_UI() to
    et_application_window_display_et_file() and move it to
    EtApplicationWindow.

M	src/application_window.c
M	src/application_window.h
M	src/browser.c
M	src/cddb_dialog.c
M	src/easytag.c
M	src/file.c
M	src/file.h
M	src/load_files_dialog.c
M	src/scan_dialog.c
M	src/tag_area.c

commit 5daf401c2586ef974139b9e1f96044a585d3d078
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 19 18:34:56 2015 +0000

    Add et_application_window_update_et_file_from_ui()

    Refactor existing code, which directly called
    ET_Save_File_Data_From_UI() against ETCore->ETFileDisplayed,
    to instead
    call the new function. Additionally, handle the case that
    ETCore->ETFileDisplayed is NULL, and do not call the function,
    avoiding
    triggering an invariant check.

M	src/application_window.c
M	src/application_window.h
M	src/browser.c
M	src/cddb_dialog.c
M	src/easytag.c
M	src/load_files_dialog.c
M	src/scan_dialog.c
M	src/tag_area.c

commit 9704e1117c36fe893088a71669b9e7f570cf4c27
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 19 17:46:46 2015 +0000

    Remove dead assignment in CDDB dialog

    Found with the Cland statix analyzer.

M	src/cddb_dialog.c

commit 01563bb62de675d49d6810f659939057de9b627b
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 18 22:54:09 2015 +0000

    Add ifdefs around private FLAC code

    Fix compilation when FLAC support is not enabled.

    https://mail.gnome.org/archives/easytag-list/2015-February/msg00004.html

M	src/tags/flac_private.c

commit 92ed3c29cc4bde93ba9f2250e3ecaccad23bcf38
Author: Marek Černocký <marek@manet.cz>
Date:	Mon Feb 16 22:39:14 2015 +0100

    Updated Czech translation

M	po/cs.po

commit 83b4a66ad564f0eba58edcb0c2a742b556781d7f
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 16 19:18:50 2015 +0000

    Update AX_COMPILER_FLAGS with --disable-Werror

    https://bugzilla.gnome.org/show_bug.cgi?id=744616

M	m4/ax_compiler_flags.m4
M	m4/ax_compiler_flags_cflags.m4
M	m4/ax_compiler_flags_cxxflags.m4
M	m4/ax_compiler_flags_gir.m4

commit 14070f7df03e543b591c5dbc7b28683a6a916299
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:	Mon Feb 16 20:12:09 2015 +0100

    Updated Norwegian bokmål translation from Åka Sikrom.

M	po/nb.po

commit dc11af6b42f456fae92844f3a1cdccc57597eab3
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Feb 15 18:35:38 2015 +0100

    Updated Polish translation

M	po/pl.po

commit 6c50d0e0242a32b0b8fdca588cd15d98c7ce2e07
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 14 20:12:37 2015 +0000

    Set the GError in et_id3tag_check_if_file_is_valid

    If the file was empty, but there were otherwise no errors when reading
    the file, the GError was left unset. This caused a crash, when reading
    the error message for display to the user and dereferencing a NULL
    pointer.

M	src/tags/id3_tag.c

commit ca7a1e6f8725df854c4dff41e066bda16d23b7de
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 14 20:07:39 2015 +0000

    Mark a UI string as translatable

M	src/file_list.c

commit 13844449f413a66410d230e4494011b15513a484
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 14 20:02:28 2015 +0000

    Check for a valid MP3 file when reading the header

    The check to avoid an infinite loop in id3lib with an empty file was
    only run when reading ID3 tags, not when reading the header
    information.

M	src/tags/id3_tag.c
M	src/tags/id3_tag.h
M	src/tags/mpeg_header.c

commit 34e64fd011a7ea4126223a36c5ba97e2f984bec5
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 14 19:55:03 2015 +0000

    Refactor et_id3tag_check_if_file_is_corrupted()

    Fit the usual convention of setting the GError when returning
    FALSE, by
    renaming the function to et_id3tag_check_if_file_is_valid().

M	src/tags/id3_tag.c

commit 5cb07a6b41a3ac86625040824c9ca475f06f4dd4
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 14 00:00:01 2015 +0000

    Remove an unnecessary include

M	src/et_core.c

commit d81075d63435a0402bb9dbfac5c3c1801a13df49
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 13 23:27:27 2015 +0000

    Remove an unused variable in ET_Core

M	src/et_core.h
M	src/file_list.c

commit fc4526c271bc0a3634b235850f10f17f520a6651
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 13 23:01:41 2015 +0000

    Add a trivial ET_File_Info test

M	Makefile.am
A	tests/test-file_info.c

commit e859c35a810d0688fdba434952611f8671974eda
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 13 22:13:27 2015 +0000

    Avoid a crash when reading FLAC files with no tags

    https://bugzilla.gnome.org/show_bug.cgi?id=744497

M	src/tags/flac_tag.c

commit b92a6305602ea1d363560473b072a97c6ad363b1
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 13 19:58:22 2015 +0000

    Add a test for et_filename_prepare()

M	tests/test-misc.c

commit 97385362051bebd8960137310ac8999648f49b70
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 13 18:41:05 2015 +0000

    Refactor ET_File_Name_Convert_Character()

    Move ET_File_Name_Convert_Character() to misc.c and rename it
    et_filename_prepare(). Take a boolean argument for whether to replace
    illegal characters, rather than using a setting.

M	src/cddb_dialog.c
M	src/file.c
M	src/file.h
M	src/load_files_dialog.c
M	src/misc.c
M	src/misc.h
M	src/scan_dialog.c

commit d9ce201e78e42993c7bac186fbd109fd801c2ee7
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 13 18:24:37 2015 +0000

    Move File_Name to a separate file

M	Makefile.am
M	src/cddb_dialog.c
M	src/file.c
M	src/file.h
M	src/file_list.c
A	src/file_name.c
A	src/file_name.h
M	src/load_files_dialog.c
M	src/scan_dialog.c
M	src/tags/flac_tag.c
M	src/tags/id3_tag.c

commit e8d9f1ba1526c12ff474b55616f363e36d2d34b3
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 13 17:22:22 2015 +0000

    Split ET_File_Info off to a separate file

M	Makefile.am
M	src/core_types.h
M	src/file.c
M	src/file.h
A	src/file_info.c
A	src/file_info.h
M	src/file_list.c

commit bedea331602546237690d98c01f86e3a7d36f133
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 12 22:56:38 2015 +0000

    Remove unused Makefile variable

M	Makefile.am

commit c5b4c2a3ed78851153da64247e223bbefadf6c9a
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 12 22:53:37 2015 +0000

    Pass AX_COMPILER_FLAGS warning flags to the linker

M	Makefile.am

commit 9803a41db5d4ee530286f6af15cad7f572afdae6
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 12 22:50:18 2015 +0000

    Enable compiler warnings for Nautilus extension

M	Makefile.am
M	nautilus-extension/nautilus-easytag.c

commit 8d75031bdfc79a20f77417e92c9e688c101496bf
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 12 22:44:43 2015 +0000

    Remove unused variable from configure summary

M	configure.ac

commit 616154f3a53c29b3c63a40921bf8ee8ef9a623ba
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 12 22:44:28 2015 +0000

    Update SOURCES for 2.3.4 release

M	SOURCES

commit 8f4cd655595f7067f44ba6541cce527bb1cec6ea
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 12 17:30:58 2015 +0000

    Correctly update the artwork description

    An EtPicture was fetched from the model containing all the images
    for a
    file, and the description was updated depending on what the user
    entered
    into the artwork properties dialog.

    However, the updated EtPicture (which was a copy of the one in the
    model, as EtPicture is a boxed type and was fetched from the
    model with
    gtk_tree_model_get()) was not set on the model, and so any change
    to the
    description was lost on exiting the dialog.

    Include the EtPicture as part of the gtk_list_store_set() call when
    closing the dialog, and update the description correctly.

M	src/tag_area.c

commit 7c2d6467b66c9863100b12ae5f5e919e66c6a5e2
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 12 17:30:36 2015 +0000

    Fix memory leak in artwork types dialog

M	src/tag_area.c

commit dd7ee206c5755e9c8d80193510b690350cc964c6
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 11 17:49:16 2015 +0000

    Handle empty descriptions in ID3 tag artwork

    https://bugzilla.gnome.org/show_bug.cgi?id=744295

M	src/tags/id3v24_tag.c

commit e3f197aae814354925b3528260efbdb4115e657e
Author: ChrisiPK <ChrisiPK@gmail.com>
Date:	Wed Feb 11 11:46:59 2015 +0000

    Fix CDDB requests being truncated

    EasyTAG does not handle the chunked encoding and truncates lines that
    fall on chunk boundaries. Make HTTP requests with 1.0 as the protocol
    version, to avoid a chunked transfer encoding.

    https://bugzilla.gnome.org/show_bug.cgi?id=743812

M	src/cddb_dialog.c

commit 6879d49ad2969fe25db928dba3c9164ffdd8294e
Author: Osman Karagöz <osmank3@gmail.com>
Date:	Wed Feb 11 10:33:06 2015 +0000

    Updated Turkish translation

M	po/tr.po

commit 70e049b83bd5185883b55707a981b3b64f36c11a
Author: Marek Černocký <marek@manet.cz>
Date:	Sun Feb 8 23:21:02 2015 +0100

    Updated Czech translation

M	po/cs.po

commit 1a775b1c0605e360ac6f1363c38fc774a0cb6d88
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Feb 8 13:56:52 2015 +0100

    Updated Polish translation

M	po/pl.po

commit 69f6bb575c0368bbe658d03b43533cbf7577ee6e
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 7 21:27:46 2015 +0000

    Fix format warnings caused by incorrect sign

    GCC 5.0 now warns about using %d as a format specifier for an unsigned
    int.

M	src/application.c
M	src/cddb_dialog.c
M	src/easytag.c
M	src/file.c
M	src/file_area.c
M	src/file_list.c
M	src/misc.c
M	src/tag_area.c
M	src/tags/libapetag/apetaglib.c

commit 5df5c6193c51cdc77feefde05a26161a9d715c7e
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 7 09:55:52 2015 +0000

    Add missing break in playlist dialog switch

    Found with Coverity (CID 1268296).

M	src/playlist_dialog.c

commit 5b8659a80ece30fb7353ac68c3381d8f7d5123d0
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 7 09:52:59 2015 +0000

    Return a value from et_artist_album_list_add_file

    Use g_return_val_if_fail() rather than g_return_if_fail(), and
    return an
    empty list of no ET_File is supplied.

    Found with Coverity (CID 1268295).

M	src/file_list.c

commit 54ba8cf11c92650ab20d33670df66144c6ee2e67
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 6 20:43:33 2015 +0000

    Add checks for extra id3lib declarations

    Fix compilation of id3lib wrapper on Debian, which includes some C
    wrapper functions which were not in the id3lib 3.8.3 release, by
    checking for the declarations with AC_CHECK_DECLS.

M	configure.ac
M	src/tags/id3lib/id3_bugfix.h

commit bec4bdd64f7650e0051f90d198ab3e6ee9a4dfb3
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 6 17:49:05 2015 +0000

    Update NEWS for 2.3.4 release

M	NEWS
M	configure.ac

commit a2d8e7a5c8cb4541666e7c3156ab1e87078ec015
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 6 17:45:09 2015 +0000

    Fix redefinition warning from TagLib

    https://github.com/taglib/taglib/commit/7d7a7be115976d31715b7d4051d50249f32d2a05

M	src/tags/mp4_tag.cc

commit ecf346d48f601c5c1c42a772338bef5f34ef2e99
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 6 17:31:35 2015 +0000

    Fix redefinition warning in Windows compat code

    Only define a custom mkstemp() or truncate() if the functions are not
    available.

M	src/win32/win32dep.c
M	src/win32/win32dep.h

commit 44ee9ec20ce2f6dd0810a0abf268cd0209783d92
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 8 20:03:47 2015 +0000

    Remove several unused functions

    Found with the -fdata-sections and -ffunction-sections arguments
    to the
    compiler, and --gc-sections and --print-gc-sections linker arguments.

M	src/application_window.c
M	src/application_window.h
M	src/charset.c
M	src/charset.h
M	src/misc.c
M	src/misc.h
M	src/preferences_dialog.c
M	src/scan_dialog.c
M	src/scan_dialog.h

commit 8a94b7defb5600919930434410f69eb1bdbf7697
Author: David King <amigadave@amigadave.com>
Date:	Wed Jan 7 21:02:58 2015 +0000

    Refactor several file list functions

    Accept a file list as the first parameter, and return the list pointer
    as necessary.

M	src/application_window.c
M	src/browser.c
M	src/easytag.c
M	src/file.c
M	src/file_list.c
M	src/file_list.h
M	src/tag_area.c

commit e319c907d92245ac581258d43e4e8491a1830090
Author: David King <amigadave@amigadave.com>
Date:	Wed Jan 7 20:46:44 2015 +0000

    Remove unused displayed list function

M	src/file_list.c
M	src/file_list.h

commit f6f2e4d32fd037960db81b6fba32abb21380d154
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 5 23:24:14 2015 +0000

    Refactor artist album file list functions

    Take a file list as the first parameter.

M	src/browser.c
M	src/file_list.c
M	src/file_list.h

commit e9225a10b223f6ac1a5ffb9e15c882b273846373
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 5 22:48:49 2015 +0000

    Refactor file list freeing functions

    Accept the list to be freed as a parameter. Zero out the list
    pointer in
    ET_Core_Free() instead of in the list freeing functions.

M	src/et_core.c
M	src/file_list.c
M	src/file_list.h

commit 4d2e91f89457275b7527209605644d1074ecc318
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 5 21:27:34 2015 +0000

    Refactor function to check if all files are saved

    Accept the file list as a parameter.

M	src/application_window.c
M	src/browser.c
M	src/file_list.c
M	src/file_list.h

commit 8097699d1170248d09721bfda9baf8a747fe5085
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 4 08:28:32 2015 +0000

    Use AX_GENERATE_CHANGELOG

    Use the upstream autoconf archive ChangeLog generation macro, rather
    than a custom equivalent.

M	Makefile.am
M	configure.ac
A	m4/ax_generate_changelog.m4

commit 7f2d67b9a02a6c4d5f6cae10b012d9fc86f821a7
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 3 23:17:12 2015 +0000

    Use AX_IS_RELEASE to control compiler warnings

    Make compiler warnings non-fatal for release builds (those in which a
    git directory is not present).

M	configure.ac
A	m4/ax_is_release.m4

commit 3aaf603fb5579ba547f2295c541f4887cae7e161
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 31 14:08:56 2015 +0100

    Port to AX_COMPILER_FLAGS

M	configure.ac
A	m4/ax_append_compile_flags.m4
A	m4/ax_append_flag.m4
A	m4/ax_check_compile_flag.m4
A	m4/ax_check_enable_debug.m4
A	m4/ax_compiler_flags.m4
A	m4/ax_compiler_flags_cflags.m4
A	m4/ax_compiler_flags_cxxflags.m4
A	m4/ax_compiler_flags_gir.m4
A	m4/ax_compiler_flags_ldflags.m4
A	m4/ax_require_defined.m4

commit 127157defbb9965c2cd5d0a591fd8a24336f3c57
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 30 14:10:57 2015 +0000

    Fix const correctness warnings

M	src/file_area.c
M	src/scan_dialog.c
M	src/tag_area.c
M	src/tags/ogg_header.c

commit e0a9c2f75c9a65d1bd4508dbde46abc0d1742106
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 30 13:53:50 2015 +0000

    Fix sign comparison warnings

M	src/cddb_dialog.c
M	src/charset.c
M	src/charset.h
M	src/core_types.h
M	src/file.c
M	src/file.h
M	src/log.c
M	src/scan_dialog.c
M	src/tags/id3v24_tag.c

commit 9110197224fb3084b926828c9a1466e89d1b5390
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 30 13:50:17 2015 +0000

    Avoid old-style function declaration

M	src/application.c
M	src/log.c

commit e90a7e842f459fd3354d5de9f9da8410de143386
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 30 13:49:40 2015 +0000

    Avoid unhandled switch cases warning

M	src/application.c
M	src/picture.c
M	src/playlist_dialog.c
M	src/scan_dialog.c
M	src/tag_area.c
M	src/tags/flac_header.c
M	src/tags/flac_tag.c
M	src/tags/id3_tag.c
M	src/tags/id3v24_tag.c
M	src/tags/mp4_tag.cc
M	src/tags/mpeg_header.c
M	src/tags/ogg_header.c
M	src/tags/vcedit.c

commit 6f19b8589cb2857c646dbdc443108026ccd62d09
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 30 13:43:57 2015 +0000

    Avoid shadowed variable warnings

M	src/application_window.c
M	src/cddb_dialog.c
M	src/charset.c
M	src/easytag.c
M	src/file.c
M	src/file_list.c
M	src/log.c
M	src/playlist_dialog.c
M	src/scan_dialog.c
M	src/tags/gio_wrapper.cc
M	src/tags/id3_tag.c
M	src/tags/id3v24_tag.c
M	src/tags/libapetag/apetaglib.c
M	src/tags/mp4_tag.cc
M	src/tags/ogg_tag.c
M	src/tags/vcedit.c

commit 0a6d0228a7cd2ea8a92fe502f15d07a09a44d4f0
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 30 13:35:25 2015 +0000

    Add missing default cases in switch statements

M	src/application_window.c
M	src/browser.c
M	src/cddb_dialog.c
M	src/file_list.c
M	src/load_files_dialog.c
M	src/playlist_dialog.c
M	src/scan_dialog.c
M	src/tag_area.c
M	src/tags/opus_header.c
M	src/tags/vcedit.c

commit 2db55ba7ecf762762bf95d27c673dd16bf1110c8
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 30 13:31:15 2015 +0000

    Remove redundant declaration

M	src/file_list.h
M	src/scan_dialog.c

commit 91e48e8a6cdc551cb6e0220591a3b3d7350ee9c0
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 30 14:26:19 2015 +0000

    Handle OptimFrog files as if they are unknown

M	src/file.c
M	src/file_list.c

commit 65435b7197b5edf8404da3dee5ec633bbb5f9861
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 2 20:55:13 2015 +0000

    Fix compilation of misc test

M	tests/test-misc.c

commit 2703196a5c7446c0873aa71bdd3d26428ed53296
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 22 16:32:20 2015 +0000

    Remove unnecessary NULL check in CDDB dialog

    Found with Coverity (CID 1265641).

M	src/cddb_dialog.c

commit 7c04a8693a4a05aa5a4d19e9ea65ffc3502e7a67
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 22 16:31:55 2015 +0000

    Add missing break in switch

    Avoid an assert when opening Opus files.

    Found with Coverity (CID 1265644).

M	src/tags/vcedit.c

commit c47e1c630c7d510a33758e1886f2569bffd6e1f7
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Mon Jan 12 19:13:06 2015 +0100

    Updated Spanish translation

M	po/es.po

commit 31b6782943c2470e71a83835b07f723046d23da2
Author: Christian Kirbach <christian.kirbach@gmail.com>
Date:	Sun Jan 11 23:43:12 2015 +0100

    Added German help translation

M	help/Makefile.am
A	help/de/de.po

commit 93b17aed08fae4c89739b7ad84419fb173ce2042
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 9 18:54:12 2015 +0000

    Simplify GtkFileFilter creation

M	src/tag_area.c

commit 5709590dda8e909e5d0c85881aa1ced632d92e1b
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 8 20:02:01 2015 +0000

    Fix common symbol linker warnings

    Found with the --warn-common linker argument.

M	src/easytag.c
M	src/easytag.h
M	src/setting.c
M	src/setting.h

commit debc2d333fa7a1679e4828f1d8f78f8a1546f7e2
Author: David King <amigadave@amigadave.com>
Date:	Wed Jan 7 09:23:54 2015 +0000

    Fix pointer arithmetic when reading CDDB result

    Found with cppcheck.

M	src/cddb_dialog.c

commit b8719737110fb33bd4c169308f9b316191beb9c1
Author: David King <amigadave@amigadave.com>
Date:	Wed Jan 7 09:23:32 2015 +0000

    Avoid an unnecessary variable assignment

    Found with cppcheck.

M	src/browser.c

commit ebe269ac7bedf4394f57db8712f8dfd402f2d5e3
Author: David King <amigadave@amigadave.com>
Date:	Wed Jan 7 09:16:46 2015 +0000

    Fix crash when saving FLAC tags

    https://bugzilla.gnome.org/show_bug.cgi?id=742350

M	src/tags/id3_tag.c

commit 9aad89da3bbe7c822eb12fb082e7d4a085eb3ed6
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 5 00:09:36 2015 +0000

    Refactor File_Tag copying functions

    Change functions which accept ET_File for the purposes of copying a
    File_Tag struct to instead use the File_Tag directly. Move the
    declarations to file_tag.h.

M	src/cddb_dialog.c
M	src/file.c
M	src/file.h
M	src/file_tag.c
M	src/file_tag.h
M	src/scan_dialog.c
M	src/tag_area.c

commit 5068f6537caa6748cf535405a6ef59776bb0f683
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 4 22:24:36 2015 +0000

    Update copyright year in about dialog

M	src/about.c

commit f1b5b2ab94bdd5448e3415f1189c846fabfbcd36
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 4 22:15:56 2015 +0000

    Simplify ET_Copy_File_Tag_Item()

    Use File_Tag setters to avoid code duplication.

M	src/file_tag.c

commit c2d9b91f88f0255d4f54d48b1f108d7675c1ec56
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 4 21:58:57 2015 +0000

    Remove unnecessary et_file_tag_init()

    Use g_slice_new0() to zero-initialize the File_Tag struct, and do away
    with the separate function.

M	src/file_tag.c

commit 4db3cfad59ada303745ca1d938daf0fdec92b88d
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 4 21:51:44 2015 +0000

    Use consistent naming for File_Tag methods

    Use et_file_tag_ as a prefix for functions dealing with File_Tag
    structs.

M	src/application_window.c
M	src/cddb_dialog.c
M	src/file.c
M	src/file_list.c
M	src/file_tag.c
M	src/file_tag.h
M	src/scan_dialog.c
M	src/tag_area.c
M	src/tags/flac_tag.c
M	src/tags/id3_tag.c

commit fda6ef148fa2c1f68494b17806d64083bc4a511a
Author: Marek Černocký <marek@manet.cz>
Date:	Sun Jan 4 23:35:33 2015 +0100

    Updated Czech translation

M	help/cs/cs.po

commit 46ce097031559cf279f1d63c4fff25026ef2040e
Author: Marek Černocký <marek@manet.cz>
Date:	Sun Jan 4 22:38:12 2015 +0100

    Add Czech help translation

M	help/Makefile.am
A	help/cs/cs.po

commit 6224dff545be6ae7776d13f4ed37b148edd9c1a9
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 4 14:26:40 2015 +0000

    Relicense id3lib wrapper to GPLv2+

    Invoke Section 3 of the LGPL, and apply the terms of the GPL to
    all the
    LGPL portions of id3lib code inside EasyTAG.

M	src/tags/id3lib/c_wrapper.cpp
M	src/tags/id3lib/id3_bugfix.h

commit 608a91f515004efe1ad44534e7cafc79c93e08e5
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 4 12:07:19 2015 +0000

    Check for a valid Vorbis comment image MIME type

M	src/tags/ogg_tag.c

commit 8944602a8154fd7cbbaa6911e3f43b3e6f432368
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 4 11:34:44 2015 +0000

    Do some validation of Vorbis artwork field lengths

M	src/tags/ogg_tag.c

commit 2024a4be439afd9cdf1b897e72bbda7b76052fdb
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 4 10:41:11 2015 +0000

    Check for an invalid field when reading Vorbis art

    When reading cover art from Vorbis comments, check that the
    Base64-decoded data is at least long enough to hold the
    METADATA_BLOCK_PICTURE fields. Mark any invalid files as modified, so
    that the invalid field is removed upon saving.

    https://retrace.fedoraproject.org/faf2/problems/516585/

M	src/tags/ogg_tag.c

commit e4c4e1a17c0a6c006f2e7e9669e68703bcad1367
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 31 19:21:12 2014 +0000

    Update NEWS for 2.3.3 release

M	NEWS
M	SOURCES
M	configure.ac

commit a7fbff9745f87b883162585bdc88d2af31ddf084
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 31 19:14:15 2014 +0000

    Distribute easytag.manifest for MinGW build

M	Makefile.am

commit 88150f84f78fcae47a6b316eea6954aabe506597
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 31 19:07:13 2014 +0000

    Add stdlib.h include for malloc() under MinGW

M	src/tags/vcedit.c

commit ec35ca5930a91a50870a3988742dcd3a779a45c8
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 31 19:03:37 2014 +0000

    Add unistd.h include for SEEK_SET under MinGW

M	src/tags/flac_private.c

commit e87b62b58af12187bb66571dfeb8ad0212095af0
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 31 12:10:04 2014 +0000

    Add test for ET_File_Description functions

M	Makefile.am
A	tests/test-file_description.c

commit 94da689bccf1dc291eebe08f2db2ae77e156f183
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 31 11:08:57 2014 +0000

    Simplify ET_Core from four functions to two

    Remove the duplication of create/initialize and free/destroy to just
    ET_Core_Create() and ET_Core_Free().

M	src/application.c
M	src/application_window.c
M	src/easytag.c
M	src/et_core.c
M	src/et_core.h

commit c5abfa4bb11ef3c00a41637310052254d74708b6
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 30 21:04:44 2014 +0000

    Split ET_Core list handling code off to new file

M	Makefile.am
M	po/POTFILES.in
M	src/application.c
M	src/application_window.c
M	src/browser.c
M	src/easytag.c
M	src/et_core.c
M	src/file.c
M	src/file.h
M	src/file_area.c
A	src/file_list.c
A	src/file_list.h
M	src/scan_dialog.h
M	src/tag_area.c

commit 103c20223cdbf9e6870d371fd3a7a82a317dca96
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 28 22:32:37 2014 +0000

    Split majority of et_core.c out into new file.c

M	Makefile.am
M	po/POTFILES.in
M	src/et_core.c
M	src/et_core.h
C097	src/et_core.c	src/file.c
C077	src/et_core.h	src/file.h

commit d639f6ca9e60726dcb0932c168c2cfbedf83183c
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 28 20:32:27 2014 +0000

    Split ET_File_Description out to separate file

M	Makefile.am
M	src/easytag.c
M	src/et_core.c
M	src/et_core.h
A	src/file_description.c
A	src/file_description.h

commit 7c12ed02a4b1707bcf791db34d2438d69dcd8715
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 28 20:08:27 2014 +0000

    Move two more struct declarations to core_types.h

M	src/core_types.h
M	src/et_core.h

commit 86f79e4b7093ef221eb30786366cf79896af486f
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 28 19:34:55 2014 +0000

    Split off File_Tag to a separate file

    Move most of the prototypes for functions that deal with File_Tag to a
    separate file_tag.h header, and keep the remaining ones in et_core.h.

M	Makefile.am
M	src/et_core.c
M	src/et_core.h
A	src/file_tag.c
A	src/file_tag.h

commit bb9ce6f6bc4a4318c4b4b3dbc07079c91d04caff
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 28 18:58:30 2014 +0000

    Move EtPicture declaration to picture.h

M	src/et_core.h
M	src/picture.h

commit 9e855c1b482f11b3114d10cf0b0b48c87b90f931
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 28 18:41:22 2014 +0000

    Split a couple of enums out to a new core_types.h

    This should make it easier to split up the behemoth that is et_core.h.

M	Makefile.am
A	src/core_types.h
M	src/et_core.h
M	src/picture.h

commit 3377420a6676718711d1b1f227703f3cca90054a
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 28 16:41:53 2014 +0000

    Make ET_Set_Field_File_Tag_Item() static

    Change the last uses of ET_Set_Field_File_Tag_Item() inside the
    scanner
    dialog to use the File_Tag struct setters instead.

M	src/et_core.c
M	src/et_core.h
M	src/scan_dialog.c

commit b1242ae8a868aa55a176ce7cebee173309701fdc
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 28 15:52:10 2014 +0000

    Add File_Tag struct setters

M	src/cddb_dialog.c
M	src/et_core.c
M	src/et_core.h
M	src/scan_dialog.c
M	src/tag_area.c

commit 551629c3f63c071122a5fadb012f8ce37821111e
Author: David King <amigadave@amigadave.com>
Date:	Mon Dec 29 11:43:02 2014 +0000

    Fix stripping disc number field from ID3v2.4 tags

    As part of a change made in bug 726467, disc number handling for ID3
    tags was modified to only allow digits and the '/' character in
    the TPOS
    field. A bogus check was added for ID3 tags, so that if saving a tag
    with no content in the disc number field, the existing TPOS tag would
    not be cleared.

    Remove the erroneous check, as et_id3tag_get_tpos_from_file_tag()
    safely
    handles the disc number field being empty.

    https://bugzilla.gnome.org/show_bug.cgi?id=742082

M	src/tags/id3v24_tag.c

commit ef551ae59259c5782a005b532716832c92458162
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 28 15:04:57 2014 +0000

    Simplify ET_Set_Field_File_Tag_Item()

    Return void rather than TRUE. Use a comparison against '\0'
    rather than
    using g_utf8_strlen(). Avoid a superfluous assignment to NULL.

M	src/et_core.c
M	src/et_core.h

commit c17f82ba10ee4a908db90c86ca66e0dd18b6f53a
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 28 14:59:51 2014 +0000

    Avoid warnings due to uninitialized values

M	src/tag_area.c
M	src/tags/ogg_tag.c

commit 0019f3dc197585dc61bc34743b57b9ffff1bd9a9
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 28 11:33:24 2014 +0000

    Refactor et_picture_new() to be more complete

    Make et_picture_new() both create a new EtPicture instance and
    initialize all the fields. Copy the description string and ref
    the image
    data GBytes. Adapt existing users (and tests) to the new interface.

M	src/picture.c
M	src/picture.h
M	src/tag_area.c
M	src/tags/flac_tag.c
M	src/tags/id3v24_tag.c
M	src/tags/mp4_tag.cc
M	src/tags/ogg_tag.c
M	tests/test-picture.c

commit 411b45ede2bc9c46668cb0be90d72b5147b4e5c6
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 28 10:06:57 2014 +0000

    Use new et_file_tag_set_picture()

M	src/et_core.c
M	src/tag_area.c
M	src/tags/mp4_tag.cc

commit 787810ab863d12ccf5f9dac3a2ec9692ddda606b
Author: David King <amigadave@amigadave.com>
Date:	Sat Dec 27 22:25:14 2014 +0000

    Refactor ET_Set_Field_File_Tag_Picture()

    Rename to et_file_tag_set_picture(). Rather than handling a EtPicture
    **, take a File_Tag and set the picture field appropriately.

M	src/et_core.c
M	src/et_core.h
M	src/tag_area.c

commit 94dae722e611172961b619f5f97a49635ffb39ee
Author: David King <amigadave@amigadave.com>
Date:	Sat Dec 27 21:46:24 2014 +0000

    Refactor ET_Get_Number_Of_Files_In_Directory()

    Generate the collate key for the path once, rather than for each
    iteration through the loop.

M	src/et_core.c

commit 1b3e8b1f0f4cfc21533fb6008b7fdef837c19e49
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Sat Dec 27 13:36:44 2014 +0100

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit fad2eca29ba532fc386bb5a421169e31dbb9eff2
Author: David King <amigadave@amigadave.com>
Date:	Fri Dec 26 22:36:39 2014 +0000

    Fix Ctrl-clicking to toggle file selection

    In the selection changed handler, only change the current file
    shown in
    the file and tag areas if it is selected. When unselecting, do not
    update the current file.

    https://bugzilla.gnome.org/show_bug.cgi?id=741980

M	src/browser.c

commit bfc1a7748b4856e04dd817ecae96a49ea65b07d3
Author: Marek Černocký <marek@manet.cz>
Date:	Fri Dec 26 12:09:27 2014 +0100

    Updated Czech translation

M	po/cs.po

commit 8d099a706d1fa8eb67669cca31a44ac7444195a9
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 24 15:00:29 2014 +0000

    Add an invariant in Log_Print()

    Return and log a critical message if EtLogArea has not been
    initialized
    when calling Log_Print().

M	src/log.c

commit b1a10faac70b6cf074f338f9dc3ae918ef2b1f30
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 24 14:53:32 2014 +0000

    Remove broken early logging code

    The code to store a temporary list for logging messages during early
    application startup was broken, and needs to be rethought.

M	src/log.c

commit 28396f3cc13171a14c9299af4d546707c31bcdf5
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 24 14:43:45 2014 +0000

    Avoid crash during config directory migration

    Do not call Log_Print() during early application startup, to avoid the
    situation before EtApplicationWindow and EtLogArea have been
    instantiated where logging a message will fail.

    https://retrace.fedoraproject.org/faf2/problems/552599/

M	src/setting.c

commit 153a2f2f822714d9157497f764824df1ff1b1a78
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 24 12:58:12 2014 +0000

    Fix double unref in et_rename_file() error path

    https://retrace.fedoraproject.org/faf2/problems/558544/
    https://retrace.fedoraproject.org/faf2/problems/552602/

M	src/easytag.c

commit 00f216188543d5460d4d10218e304f5fa70a418b
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 24 09:37:09 2014 +0000

    Add album artist support to APE tags

M	src/tags/ape_tag.c
M	src/tags/libapetag/apetaglib.h

commit 2d7791969d689038e36c81575facf8d7e0673d3f
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 23 21:15:37 2014 +0000

    Avoid compiler warning in et_flac_read_func()

    Cast a GFileInputStream to a GInputStream when passed as the first
    argument to g_input_stream_read().

M	src/tags/flac_private.c

commit d41c9b8b9b4d0baa2e697fd0592e50a433998b14
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 23 20:35:46 2014 +0000

    Simplify the shared FLAC reading code

    Make EtFlacWriteState extend EtFlacReadState, and use a single
    callback
    function for each of the read, seek, tell and EOF callbacks as
    a result.

M	src/tags/flac_header.c
M	src/tags/flac_private.c
M	src/tags/flac_private.h
M	src/tags/flac_tag.c

commit e49dac580f9d88380f1f44aabbc4a18f5f178446
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 23 20:01:35 2014 +0000

    Use GIO for writing WavPack tags

    Add a new EtWavpackWriteState struct, extended from EtWavpackState,
    and
    use it to store the IOStream during tag writing.

M	src/tags/wavpack_private.c
M	src/tags/wavpack_private.h
M	src/tags/wavpack_tag.c

commit 71dc1da626f0d32d4d8f0f983d12c11d86900114
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 23 18:20:15 2014 +0000

    Use GIO for reading WavPack headers

    Split out the WavpackStreamReader functions to a separate file,
    so that
    they can be shared between the header and tag functions.

M	Makefile.am
M	src/tags/wavpack_header.c
A	src/tags/wavpack_private.c
A	src/tags/wavpack_private.h
M	src/tags/wavpack_tag.c

commit 03b13fccbb6a712c70d64683f9d5860a7cb4d3d6
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 23 17:42:48 2014 +0000

    Use GIO when reading WavPack tags

M	src/tags/wavpack_tag.c

commit 614529cee0caa215acbb989126b16c3bb4a3e3de
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 23 09:17:04 2014 +0000

    Really fix the disc number padding check button

    Rathar than fixing only the disc number padding spin button,
    also update
    the setting bound to the check button.

    https://bugzilla.gnome.org/show_bug.cgi?id=741889

M	src/preferences_dialog.c

commit 786c97140d6afb78a806cf27d127fd75fc16e734
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 23 08:49:48 2014 +0000

    Fix the disc number padding widgets

    Bind the spin button for setting the disc number padding to the
    tag-disc-length setting, and the corresponding check button to the
    tag-disc-padded setting, rather than using the track number settings.

    https://bugzilla.gnome.org/show_bug.cgi?id=741889

M	src/preferences_dialog.c

commit 3be9f9e912ec44e7d938d1f3b70b74f578a93268
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:	Tue Dec 23 02:30:38 2014 +0000

    Updated Brazilian Portuguese translation

M	po/pt_BR.po

commit da0cad5c8b08ed411c1cb356c86d2dd5a7b72f4d
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 21 22:33:25 2014 +0000

    Fix string leak when reading WavPack tags

M	src/tags/wavpack_tag.c

commit 77c2379a132805b57ca3e31f497d9f67be88c51a
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 21 22:16:06 2014 +0000

    Read the WavPack channel mask

    Use WavpackGetChannelMask() to read the channel mask from the WavPack
    header, and add a new et_wavpack_channel_mask_to_string() function to
    format it for display.

M	src/tags/wavpack_header.c

commit adc40e02b6d177a2df5cbb154b1b6dfb9384a849
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 21 21:17:57 2014 +0000

    Clear empty tag fields when saving WavPack tags

    Refactor WavPack tag saving to use a new
    et_wavpack_append_or_delete_tag_item() helper function. Call
    WavpackDeleteTagItem() to delete a tag item if the item is empty.

M	src/tags/wavpack_tag.c

commit d2ed5f679a8c465297b542b38d1110be10ed1391
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 21 19:32:08 2014 +0000

    Use memset() to zero out the WavPack read buffer

M	src/tags/wavpack_tag.c

commit fa6c9de17173f5234f4072fa615d5ee5e6b7ee52
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 21 19:30:33 2014 +0000

    Support album artist in WavPack tags

M	src/tags/wavpack_tag.c

commit 1e4a307d4768c414c255d1896e4b9d74e7be746d
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 21 10:39:56 2014 +0000

    Remove stray unused local CDDB code

M	src/cddb_dialog.c

commit 6532af69270ae1a030d48d389c13aa4bd122a190
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 21 10:37:09 2014 +0000

    Use const when fetching File_Name from an ET_File

M	src/application_window.c
M	src/browser.c
M	src/easytag.c
M	src/et_core.c
M	src/file_area.c
M	src/playlist_dialog.c
M	src/scan_dialog.c
M	src/tag_area.c

commit 928c5e111dc1aac5da8d9de0767c06eb4f456bbb
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 21 10:36:33 2014 +0000

    Add -Werror=return-type to compiler flags

M	configure.ac

commit dc66588abaaf528d55a9f447ea923760289a08b0
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 21 09:55:26 2014 +0000

    Remove unnecessary ftruncate() wrapper

M	configure.ac
M	src/win32/win32dep.c
M	src/win32/win32dep.h

commit 1342885c94e73a865b7775fae419f11171c85700
Author: David King <amigadave@amigadave.com>
Date:	Sat Dec 20 18:11:37 2014 +0000

    Use GIO when reading and writing ID3v2.4 files

M	src/tags/id3v24_tag.c

commit d8a9e8889f8345f69a61993dbf1448c61cd76377
Author: Balázs Úr <urbalazs@gmail.com>
Date:	Sat Dec 20 11:03:55 2014 +0000

    Updated Hungarian translation

M	po/hu.po

commit c0bb61c66ff0363894bd2919979b047ce80317f4
Author: David King <amigadave@amigadave.com>
Date:	Fri Dec 19 22:19:34 2014 +0000

    Use GIO when reading and writing list store files

M	src/setting.c

commit 6fcbdd18ef8177df92e09137e4d2d8649bffc92b
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 18 17:44:38 2014 +0000

    Use the GLib slice allocator where appropriate

    When allocating structs, use the GLib slice allocator. Simplify some
    allocation code to also zero-initialize the struct.

M	src/cddb_dialog.c
M	src/et_core.c
M	src/log.c
M	src/scan_dialog.c

commit 06c9eeb5cdb78c4dab056b99c44596d1252f40db
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 18 17:44:16 2014 +0000

    Avoid superfluous use of sizeof(char)

M	src/tags/id3_tag.c

commit 15eec372a8b0162dad18c36a7463aad135831bfe
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 18 17:43:32 2014 +0000

    Simplify reading artwork description from Ogg tags

M	src/tags/ogg_tag.c

commit 18769d84f2deda03138cf86907197db0c258868e
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 18 17:41:21 2014 +0000

    Use a stack-allocated buffer for WavPack tags

M	src/tags/wavpack_tag.c

commit 9e312fa308724050b2945c1f993e7375bb72aafa
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 18 16:59:39 2014 +0000

    Fix double free in CDDB dialog error path

M	src/cddb_dialog.c

commit 8f48a76c0d97d72642fe83d715298d9fc073bd0c
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 18 16:46:33 2014 +0000

    Fix check for errors when writing WavPack tags

M	src/tags/wavpack_tag.c

commit 45248269bd07ae50e89a673c70e49b590855c057
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 18 16:36:44 2014 +0000

    Fix a double free when reading WavPack headers

M	src/tags/wavpack_header.c

commit bfde77327544d7b548c9fec113321e13e26d0638
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 18 16:35:37 2014 +0000

    Add G_SLICE=debug-blocks to test environment

M	Makefile.am

commit 593aa8f45e5d5256d5bb167394b8e872c253be47
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 17 22:38:46 2014 +0000

    Add a test for EtPicture boxed type copying

M	tests/test-picture.c

commit 1fdb2ef8382e0bbce97b60f4259a01dc961e1ff6
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 17 22:18:16 2014 +0000

    Fix Picture_Format_From_Data()

    Check the result of memcmp() against 0. Extend the JPEG magic number.
    Add a simple test.

M	src/picture.c
M	tests/test-picture.c

commit 5e15d6ed841c10846a1b4695b69eb1589035b9c6
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 17 18:18:16 2014 +0000

    Fix memory leak when saving a temporary FLAC file

M	src/tags/flac_tag.c

commit 7a04dedf0a37a5da1fadb085b5693e67fc220107
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 17 18:02:02 2014 +0000

    Make EtPicture a boxed type

    Rename Picture to EtPicture and define a boxed type with
    G_DEFINE_BOXED_TYPE. Rename Picture functions to et_picture_*(). Fix a
    memory leak when destroying the tag area tree view, by using an
    EtPicture column in the list store. Update the EtPicture tests.

M	data/tag_area.ui
M	src/et_core.c
M	src/et_core.h
M	src/picture.c
M	src/picture.h
M	src/tag_area.c
M	src/tags/flac_tag.c
M	src/tags/id3_tag.c
M	src/tags/id3v24_tag.c
M	src/tags/mp4_tag.cc
M	src/tags/ogg_tag.c
M	tests/test-picture.c

commit 2f38620fdfce98ed381ac9b72a6f8d82ca4d0c63
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 17 17:10:39 2014 +0000

    Use GBytes for image data inside Picture

    Avoid many superfluous memory allocations when copying Picture
    instances
    by using GBytes instead of a bare pointer, and incrementing the
    reference count when copying. Use the slice allocator to allocate
    Picture instances. Avoid Picture->bytes from ever being NULL. Update
    the
    Picture tests.

    Inspired by a report of excessive memory usage on the mailing list:

    https://mail.gnome.org/archives/easytag-list/2014-December/msg00000.html

M	src/et_core.c
M	src/et_core.h
M	src/picture.c
M	src/picture.h
M	src/tag_area.c
M	src/tags/flac_tag.c
M	src/tags/id3_tag.c
M	src/tags/id3v24_tag.c
M	src/tags/mp4_tag.cc
M	src/tags/ogg_tag.c
M	tests/test-picture.c

commit 1dc1732e26b93a3ee792f13d0faaf18652ea4a71
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 16 20:25:25 2014 +0000

    Remove many unnecessary include directives

M	src/about.c
M	src/application.c
M	src/application.h
M	src/application_window.c
M	src/browser.c
M	src/browser.h
M	src/cddb_dialog.c
M	src/charset.c
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/et_core.h
M	src/log.c
M	src/misc.c
M	src/picture.c
M	src/picture.h
M	src/preferences_dialog.c
M	src/scan_dialog.c
M	src/setting.c
M	src/status_bar.c
M	src/tag_area.c
M	src/tags/ape_tag.c
M	src/tags/flac_header.c
M	src/tags/flac_tag.c
M	src/tags/id3_tag.c
M	src/tags/id3v24_tag.c
M	src/tags/monkeyaudio_header.c
M	src/tags/mp4_tag.cc
M	src/tags/mpeg_header.c
M	src/tags/musepack_header.c
M	src/tags/ogg_header.c
M	src/tags/ogg_header.h
M	src/tags/ogg_tag.c
M	src/tags/opus_header.c
M	src/tags/opus_tag.c
M	src/tags/vcedit.c
M	src/tags/vcedit.h
M	src/tags/wavpack_header.c
M	src/tags/wavpack_tag.c

commit 790a379aa45523126630e58992fc83470f059079
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 14 22:06:46 2014 +0000

    Allow the search dialog tree view to expand

    https://bugzilla.gnome.org/show_bug.cgi?id=741525

M	data/search_dialog.ui

commit 935318961603f506a3bdba80d4b46eed34131ae3
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 14 18:03:38 2014 +0000

    Make crc32_file_with_ID3_tag() accept a GFile

M	src/crc32.c
M	src/crc32.h
M	src/scan_dialog.c

commit 1d227dc59cf47da8976d0d92ebab6cbaf5872879
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 14 15:52:16 2014 +0000

    Refactor Vorbis comment code

    Use the slice allocator. Move the state struct definition to the
    source
    file. Adjust coding style. Change the codec type defines to be a new
    EtOggKind enum.

M	src/tags/ogg_header.c
M	src/tags/ogg_tag.c
M	src/tags/vcedit.c
M	src/tags/vcedit.h

commit 699747408eeb2407ba9d5ed7babe472a500af25e
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 14 13:54:44 2014 +0000

    Fix memory leak when loading a Speex file

M	src/tags/vcedit.c

commit 5167916b5ba9bfd4f7b01bc8ae0372aa6af5a344
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 14 13:54:24 2014 +0000

    Fix a memory leak when saving an Ogg file

M	src/tags/ogg_tag.c

commit 6202482e34567ba89f8ceab86469ccee0c41e0e5
Author: Marek Černocký <marek@manet.cz>
Date:	Sun Dec 14 14:13:43 2014 +0100

    Fixed typo

M	po/cs.po

commit 97921e2978f9fa897302151522d385b829796aad
Author: Muhammet Kara <muhammetk@gmail.com>
Date:	Sat Dec 13 08:22:25 2014 +0000

    Updated Turkish translation

M	po/tr.po

commit cf24bff29443f44bcdeb4862d7cb1e698befde5d
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 11 22:11:02 2014 +0000

    Fix memory leak in CDDB dialog error path

M	src/cddb_dialog.c

commit 21773c4bde88e344a5cbde8a3c4d76b4d7fe3aeb
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 9 23:01:02 2014 +0000

    Relicense libapetag and vcedit.c to GPLv2+

    Invoke Section 3 of the LGPL, and apply the terms of the GPL to
    all the
    LGPL portions of code inside EasyTAG, which include the APE tag
    reading
    code (libapetag) and the Vorbis comment parsing code (vcedit.c).

M	Makefile.am
M	data/easytag.appdata.xml.in
D	src/tags/libapetag/COPYING.LGPL
M	src/tags/libapetag/README.apetag
M	src/tags/libapetag/apetaglib.c
M	src/tags/libapetag/apetaglib.h
M	src/tags/libapetag/id3v2_read.c
M	src/tags/libapetag/id3v2_read.h
M	src/tags/libapetag/info_mac.c
M	src/tags/libapetag/info_mac.h
M	src/tags/libapetag/info_mpc.c
M	src/tags/libapetag/info_mpc.h
M	src/tags/libapetag/is_tag.c
M	src/tags/libapetag/is_tag.h
M	src/tags/vcedit.c
M	src/tags/vcedit.h

commit d907c83e674a64dff5d9472349eab32e7bab5ea8
Author: David King <amigadave@amigadave.com>
Date:	Sat Dec 6 23:57:24 2014 +0000

    Split off shared FLAC code to a separate file

M	Makefile.am
M	src/tags/flac_header.c
A	src/tags/flac_private.c
A	src/tags/flac_private.h
M	src/tags/flac_tag.c

commit ca5ef60eb3544908af0d7980cfa8ce9e2901a76a
Author: David King <amigadave@amigadave.com>
Date:	Fri Oct 3 17:44:31 2014 +0100

    Use GIO when reading and writing FLAC tags

    Use the level 2 FLAC metadata interface to read and write FLAC tags,
    using GIO for the IO callbacks.

M	src/tags/flac_tag.c

commit a80a55dc3f2a2c9cc8af53524e5f081bdf5b5f8c
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 30 21:38:33 2014 +0000

    Update NEWS for 2.3.2 release

M	NEWS
M	SOURCES
M	configure.ac

commit 08f5ac591a8af07c513ced6cf356e8048a15a179
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 30 20:38:23 2014 +0000

    Update British English translation

M	po/en_GB.po

commit 3e41239e437f8deda54e731e9ec13db55f7b20f5
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Nov 30 18:19:09 2014 +0100

    Updated Polish translation

M	po/pl.po

commit bea6a388583970ac506f5d6f21d59a3b256e8fa4
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 28 21:42:50 2014 +0000

    Use a separator row in the album view

M	data/browser.ui
M	src/browser.c

commit 20190badece12683366ce9da0e793f4bf2432f59
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 28 21:39:46 2014 +0000

    Remove unused PangoStyle columns from album models

M	data/browser.ui
M	src/browser.c

commit 06650c56f7b4443a483b434d8ce4121e9818936e
Author: Marek Černocký <marek@manet.cz>
Date:	Wed Nov 26 07:17:22 2014 +0100

    Updated Czech translation

M	po/cs.po

commit b6e9d66d8a305209160706bd916f2f7282055063
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 24 21:43:49 2014 +0000

    Add several picture type strings

    Improve the heuristic for guessing the image type from the filename.

    https://bugzilla.gnome.org/show_bug.cgi?id=740654

M	src/picture.c
M	src/picture.h
M	tests/test-picture.c

commit df635e253dceb93befa0ea6e9054ef0126c7d624
Author: Marek Černocký <marek@manet.cz>
Date:	Mon Nov 24 20:10:03 2014 +0100

    Updated Czech translation

M	po/cs.po

commit ac50c03cafefa2b1f3c8e579167a12e47762eadb
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 22 16:52:22 2014 +0000

    Remove unused argument from Ogg reading function

M	src/tags/ogg_tag.c
M	src/tags/ogg_tag.h
M	src/tags/opus_tag.c

commit 38ba361b46a1d00d93252cbecfb3afb9ffd8c839
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 21 23:18:16 2014 +0000

    Add tests for several picture functions

M	Makefile.am
M	src/picture.c
M	src/picture.h
M	src/tag_area.c
A	tests/test-picture.c

commit 4fcfe2136e8c36d3ca7f757bf453c07cf7742ebc
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 21 19:33:47 2014 +0000

    Add tests for DLM function

    Additionally, improve the metric reporting to report 0 as a minimum
    result fot the "similarity metric".

M	Makefile.am
M	src/dlm.c
M	src/dlm.h
A	tests/test-dlm.c

commit d5c3569e076486c46ce1d4a3a86476c4c00553d8
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 21 16:38:26 2014 +0000

    Add simple test for Convert_Duration()

M	Makefile.am
A	tests/test-misc.c

commit 084f04adc487f21bc768835d37709fe7626ac934
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 21 16:34:10 2014 +0000

    Move busy cursor handling to application window

    Avoid the deprecated gdk_cursor_new(), and instead use
    gdk_cursor_new_for_display().

M	src/application.c
M	src/application_window.c
M	src/application_window.h
M	src/easytag.c
M	src/misc.c
M	src/misc.h

commit 3d5ccb51e67997cf4f18ad9bb10923f86faa2324
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 20 23:54:06 2014 +0000

    Remove unused et_get_file_size()

    Additionally, tidy up some unnecessary misc.h prototypes.

M	src/misc.c
M	src/misc.h

commit 6456cdfc6bad7e48670bb380cdb42c905d48a4ed
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 20 23:36:03 2014 +0000

    Move file selection dialogs to application window

M	src/browser.c
M	src/misc.c
M	src/misc.h

commit a9d84f50b48c2398e39800d355b0e4ea24e6bd5f
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 20 22:37:33 2014 +0000

    Return a GError when launching external programs

    Consistently return a GError when reporting failures to launch
    external
    applications, and allow the calling code to show the error to the user
    as necessary.

M	src/application_window.c
M	src/browser.c
M	src/misc.c
M	src/misc.h

commit afed1362d87b1c070de448dffad7bc5d06929ecd
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 20 21:32:19 2014 +0000

    Fix launching an external application

    Only display a warning if the program name is empty. Move the
    status bar
    message printed on successful program execution to EtBrowser.

M	src/browser.c
M	src/misc.c

commit c8d869280f4d4ed34444bcd1da563715341d1a60
Author: David King <amigadave@amigadave.com>
Date:	Wed Nov 19 16:59:03 2014 +0000

    Fix memory leaks in Save_File() error paths

M	src/easytag.c

commit 72ec45e6bb209e9029ba13f6663d0f0a48ab8378
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 14 22:19:35 2014 +0000

    Make file list selection independent of direction

    When selecting a range from a row which is below the current view, do
    not scroll to the bottom of the selection, and instead ensure that the
    row which was clicked most-recently is the one which is shown in
    the tag
    area.

    https://bugzilla.gnome.org/show_bug.cgi?id=740134

M	src/browser.c

commit c11c8b5abf3e19f186db4f9290e24e008bb5e5a5
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 9 14:05:43 2014 +0000

    Set a GError in id3tag_write_file_v24tag()

    When returning FALSE to indicate an error, always set the passed-in
    GError.

M	src/tags/id3v24_tag.c

commit 1b4bb5b25860bb784e50fd84a373889fe45cea4c
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 8 18:45:59 2014 +0000

    Fix tag split setting for composer in FLAC

M	src/tags/flac_tag.c

commit cae160ebfd27b3d99a689732ec8c69f2d96a44e8
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 8 10:05:48 2014 +0000

    Remove unused log.h include from tagging code

M	src/tags/ape_tag.c
M	src/tags/flac_tag.c
M	src/tags/id3_tag.c
M	src/tags/id3v24_tag.c
M	src/tags/mp4_tag.cc
M	src/tags/ogg_tag.c
M	src/tags/opus_header.c
M	src/tags/opus_tag.c

commit 24fdf0b83665a64b52f3ceacdcff552fbe4fbf2a
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 8 10:02:40 2014 +0000

    Switch log message to debug in Ogg image handling

    Any images which cannot be converted to the specification-required PNG
    on JPEG are left unchanged, so emitting a log message is less than
    helpful.

M	src/tags/ogg_tag.c

commit 5e6686d300e7500a2c3e90d2c82e3465837e7ea8
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 7 19:33:05 2014 +0000

    Force a margin between the tag label and the tabs

    Add a GtkBox as a container for the tag label, so that the margin is
    applied when using it as an action widget in the tag area notebook.

M	data/tag_area.ui

commit 7d2e5f3f1a1a72f9cccad38583480a7f4d1116dc
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 7 19:02:15 2014 +0000

    Allow the tag area image treeview to expand

    Repack the tag area and file are into a GtkGrid rather than a GtkBox,
    and allow the images treeview to expand, so that the tag area expands
    vertically if there is room.

    https://mail.gnome.org/archives/easytag-list/2014-November/msg00005.html

M	data/tag_area.ui
M	src/application_window.c

commit 871ec1c8c2e0f08a665c881c09548314d0fc5ade
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 7 08:39:45 2014 +0000

    Fix process-fields setting handling in scanner

    Connect solely to the GSettings changed signal, rather than also
    connecting to the toggled signal on the check buttons. This ensures
    that
    the state is updated only when the GSettings key changes, avoiding
    inconsistent behaviour when unselecting the last selected field.

    https://bugzilla.gnome.org/show_bug.cgi?id=739756

M	src/scan_dialog.c

commit eadb07b3556a7f3c0a69c3e896a83876bf4b45f6
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 7 08:26:19 2014 +0000

    Fix double unref when opening an invalid Ogg file

M	src/tags/vcedit.c

commit c60fd9f91e9e106c20d9d322884861b9bbe19002
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 7 08:18:14 2014 +0000

    Refactor Ogg file ID3v2 skipping logic

    Mark the Ogg file as modified while reading, if it has an ID3v2
    tag, as
    it will be removed while saving. Remove a double unref of the input
    stream in an error path. Tidy up several obsolete seeks.

M	src/tags/ogg_tag.c

commit 9d1e4dc1bba908fcf4cb99b136aa0184d16be699
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 6 22:08:52 2014 +0000

    Do not warn about ID3v2 tags when saving Ogg files

    The Ogg tag writing code can handle ID3v2 tags without problems, and a
    warning is already logged when reading the file, so warning again when
    saving is not helpful.

M	src/tags/ogg_tag.c

commit 03418dd249116b985e114023622fccdc426d904a
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 6 21:59:59 2014 +0000

    Fix skipping over ID3v2 tags in Ogg files

    According to the documentation for ogg_sync_pageout(), a return
    value of
    -1 means that bytes were skipped, and so it is fine to continue
    reading.
    Fixes writing to Ogg files where an ID3v2 tag is present.

    https://bugzilla.gnome.org/show_bug.cgi?id=739748

M	src/tags/vcedit.c

commit 4a67851124bf2b9a64e232e773a19badb3d18aff
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 6 16:33:18 2014 +0000

    Move extended date field warning out of tag code

M	src/et_core.c
M	src/tags/flac_tag.c
M	src/tags/ogg_tag.c

commit b83f270dca352a67c299a23f320fda6823f710da
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 6 16:23:40 2014 +0000

    Emit a critical warning for invalid FLAC artwork

    This should only happen if gdk-pixbuf supplies bogus data, so
    it should
    not use Log_Print() to log a massage to the UI.

M	src/tags/flac_tag.c

commit 6a17785ed0dfcdb1638aafd1227bc5c8e649d3ba
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 6 07:59:32 2014 +0000

    Avoid a crash when reading empty FLAC tags

    https://bugzilla.gnome.org/show_bug.cgi?id=739694

M	src/tags/flac_tag.c

commit 728b3f71276dd259f1e730ab1b48ed06fe176892
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 6 07:38:01 2014 +0000

    Do not force-enable the log visiibility on startup

    https://bugzilla.gnome.org/show_bug.cgi?id=739696

M	src/application_window.c

commit fcfd471746ac34741ab47e6d724026aab6072f5b
Author: David King <amigadave@amigadave.com>
Date:	Wed Nov 5 17:41:25 2014 +0000

    Make the application name translatable

M	data/easytag.desktop.in
M	src/about.c
M	src/application.c
M	src/application_window.c

commit c4e35451b5b0f95a4cc63779b112012ff9435955
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Wed Nov 5 13:38:23 2014 +0100

    Updated Polish translation

M	po/pl.po

commit 642fae6e3d3754842ef702789ba134e98058f262
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Wed Nov 5 05:13:22 2014 +0100

    Added Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit ac3c5a6f7e56b287ab2c2ec8c801b4cd0b88b06b
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 4 16:42:34 2014 +0000

    Fix several CDDB response memory leaks

M	src/cddb_dialog.c

commit de33ecf87262d39cf6a953ec64b12df810d3b000
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 4 16:41:58 2014 +0000

    Fix memory leak of a path in a browser error path

M	src/browser.c

commit ba3305e91043f1960c94f6343d343adf50060a2b
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 4 08:40:46 2014 +0000

    Improve copying extra tags between files

    Prepend to the GList, and then reverse it afterwards.

M	src/et_core.c

commit 8efaf8c913219114beaccb4fc9dc009879cb8852
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 3 23:58:28 2014 +0000

    Fix leak of selected row list in CDDB dialog

M	src/cddb_dialog.c

commit 966745009352e0d9c2c22bb523be2a569907b7fd
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 3 23:31:29 2014 +0000

    Fix filename leak in browser DLM selection

M	src/browser.c

commit b08fef9f394dc89bd5138412bf204fcb14d48116
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 3 23:00:52 2014 +0000

    Fix more CDDB track number memory leaks

M	src/cddb_dialog.c

commit 6cfe0b7cb430c849ef2c303d8df5e1b7b51b8bb7
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 3 22:15:56 2014 +0000

    Fix leaks of track number strings in CDDB dialog

M	src/cddb_dialog.c

commit 6582f1aa3933ed096342be3cbf8d4851b9c048bb
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 3 22:14:20 2014 +0000

    Fix a memory leak when searching albums via CDDB

M	src/cddb_dialog.c

commit 7845f0616b1a7c16a16d7d3bc46e494fc93ab5ce
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 3 21:17:54 2014 +0000

    Simplify character pointer syntax in CDDB dialog

M	src/cddb_dialog.c

commit 0ce66082495a2f5c0400a9e25966509045fe1021
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Mon Nov 3 21:11:30 2014 +0000

    Update strings to use ‘spaces’ and ‘underscores’

    Use the words ‘spaces’ and ‘underscores’ instead of ‘ ’
    and ‘_’, which
    is more consistent with other instances of both in the preferences.

M	data/scan_dialog.ui
M	src/tag_area.c

commit 43b160afef98e9cebc83a83caed2d7ccf576ecdf
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Mon Nov 3 21:06:50 2014 +0000

    Add description to help index

M	help/C/index.page

commit f2f46357576758ed3d3d6b0cf26520edd5aed95a
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 3 18:43:38 2014 +0000

    Fix incorrect track duration in CDDB results

M	src/cddb_dialog.c

commit cef074fd5f2bd538817577d5ca93d6d4e3c3c20e
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 2 18:48:42 2014 +0000

    Set the GError when failing to read ID3 tags

M	src/tags/id3v24_tag.c

commit 7ef0e7569cb0108debe6bac95cd7ece1ac39f3a6
Author: David King <amigadave@amigadave.com>
Date:	Fri Oct 31 23:09:51 2014 +0000

    Add AppData metainfo file for Nautilus extension

M	.gitignore
M	Makefile.am
A	data/easytag-nautilus.metainfo.xml.in
M	po/POTFILES.in

commit 7476eaa86e66824092c86ba67d76265dba1cf884
Author: David King <amigadave@amigadave.com>
Date:	Fri Oct 31 22:18:24 2014 +0000

    Include name and summary in AppData

M	data/easytag.appdata.xml.in

commit 57b277816450de8d49fb43fb8a55a4bfd9c2fb7c
Author: David King <amigadave@amigadave.com>
Date:	Fri Oct 31 19:56:28 2014 +0000

    Refactor Action_Select_Nth_File_By_Etfile()

    Move Action_Select_Nth_File_By_Etfile() to the application window as
    et_application_window_select_file_by_et_file().

M	src/application_window.c
M	src/application_window.h
M	src/browser.c
M	src/easytag.c
M	src/easytag.h
M	src/search_dialog.c

commit 35b184ccd8ab00cf7e4c2b85f0b144c2c6a3aa22
Author: David King <amigadave@amigadave.com>
Date:	Fri Oct 31 19:45:42 2014 +0000

    Update NEWS for 2.3.1 release

M	NEWS
M	README
M	THANKS

commit 4aeb12504d0f7e569b5e275d1fd5276411d19632
Author: David King <amigadave@amigadave.com>
Date:	Fri Oct 31 18:12:37 2014 +0000

    Use old-style BMPs for Windows installer images

    NSIS expects the images in 24-bit format (no alpha channel),
    and without
    colourspace information.

M	data/nsis/easytag-header.bmp
M	data/nsis/easytag-sidebar.bmp

commit 222dc2bf02ea302805d0cbb980cafe22778418e7
Author: David King <amigadave@amigadave.com>
Date:	Fri Oct 31 17:09:21 2014 +0000

    Remove some obsolete checks from configure.ac

M	configure.ac

commit de1f4d9e5201d3e5511c35b7d71cba9709aa88a5
Author: David King <amigadave@amigadave.com>
Date:	Fri Oct 31 17:03:21 2014 +0000

    Warn if APPDATA_XML macro is not available

    Rather than getting an error at make time, output an error message
    during configure if the macro is not found.

M	configure.ac

commit 2f34a818098247850a9db6f89be42cbfa012d1dc
Author: David King <amigadave@amigadave.com>
Date:	Thu Oct 30 23:38:36 2014 +0000

    Use GVolumeMonitor to discover Windows drives

M	src/browser.c

commit 0d8c3be16f583d359091a750d5ab3c3d0f877ff3
Author: David King <amigadave@amigadave.com>
Date:	Thu Oct 30 23:38:16 2014 +0000

    Include GSettings schema in Windows installer

M	easytag-win32-installer.nsi.in

commit ef1e00bbb6dae29aad0d5fcd0ac16d83a3d29417
Author: David King <amigadave@amigadave.com>
Date:	Sat Sep 27 01:28:40 2014 +0100

    Update Windows installer script

    Include complete Adwaita icon theme. Include winpthread DLL.

M	SOURCES
M	easytag-win32-installer.nsi.in

commit f8250eceeb25a63dcfa44e9ca0482c1dc81448c3
Author: David King <amigadave@amigadave.com>
Date:	Thu Oct 30 20:28:42 2014 +0000

    Fix a MinGW build failure in EtBrowser

M	src/browser.c

commit 116290a2508a732228546ced88dc77c7d43c81f6
Author: David King <amigadave@amigadave.com>
Date:	Thu Oct 30 20:27:14 2014 +0000

    Check for gdk-pixbuf-pixdata in configure

    The gdk-pixbuf-pixdata tool is required for glib-compile-resources
    when
    using the to-pixdata option.

M	configure.ac

commit 115c7ef98e9a70a012ec613b1e4cba5de08dac7c
Author: David King <amigadave@amigadave.com>
Date:	Thu Oct 30 20:26:17 2014 +0000

    Do not show the PID of the application at startup

    Any warning message from g_log() will show the PID, and it is
    otherwise
    not that useful.

M	src/application.c

commit dbf902108670899f4fbda452976eb4606676041e
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 29 23:18:50 2014 +0000

    Fix CDDB search button tooltip text

M	data/cddb_dialog.ui

commit 19613ea9e4ef4b333e9c00011f57e7d8b7eb97c5
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 29 21:03:40 2014 +0000

    Fix settings key name for default path

M	src/preferences_dialog.c

commit a9e53282ecc64c02f84edc6bacc2b578719244c9
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 29 20:59:46 2014 +0000

    Remove outdated configuration file handling

M	src/setting.c

commit ba97e21c7138947b352b3174a2cecbca7f5c172b
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 29 19:08:54 2014 +0000

    Move log area visible logic to EtApplicationWindow

M	src/application_window.c
M	src/log.c

commit 526c45a788e6a977938fd0d92501c2314fd27b8a
Author: David King <amigadave@amigadave.com>
Date:	Sat Oct 25 22:21:03 2014 +0100

    Remove unused log area show/hide functions

M	src/application_window.c
M	src/application_window.h

commit 5f44956e440f3bcf0627015d92ee241578d21040
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 29 16:36:27 2014 +0000

    Use GFile for tag reading functions

M	src/et_core.c
M	src/tags/ape_tag.c
M	src/tags/ape_tag.h
M	src/tags/flac_tag.c
M	src/tags/flac_tag.h
M	src/tags/id3_tag.c
M	src/tags/id3_tag.h
M	src/tags/id3v24_tag.c
M	src/tags/mp4_tag.cc
M	src/tags/mp4_tag.h
M	src/tags/ogg_tag.c
M	src/tags/ogg_tag.h
M	src/tags/wavpack_tag.c
M	src/tags/wavpack_tag.h

commit aca762a3063b33300ceb783d5a97f79a92307149
Author: David King <amigadave@amigadave.com>
Date:	Mon Oct 27 23:57:19 2014 +0000

    Use GFile in header reading functions

M	src/et_core.c
M	src/tags/flac_header.c
M	src/tags/flac_header.h
M	src/tags/monkeyaudio_header.c
M	src/tags/monkeyaudio_header.h
M	src/tags/mp4_header.cc
M	src/tags/mp4_header.h
M	src/tags/mp4_tag.cc
M	src/tags/mpeg_header.c
M	src/tags/mpeg_header.h
M	src/tags/musepack_header.c
M	src/tags/musepack_header.h
M	src/tags/ogg_header.c
M	src/tags/ogg_header.h
M	src/tags/opus_header.c
M	src/tags/wavpack_header.c
M	src/tags/wavpack_header.h

commit 748723d36283ef2c0920b1277095157996caa166
Author: David King <amigadave@amigadave.com>
Date:	Sat Oct 25 23:46:58 2014 +0100

    Remove unused et_grid_attach_full()

M	src/misc.c
M	src/misc.h

commit 73526459d5c794c2c5c11addb8486cf14a90489d
Author: David King <amigadave@amigadave.com>
Date:	Sat Oct 25 22:20:04 2014 +0100

    Use const in more places

M	src/application_window.c
M	src/application_window.h
M	src/browser.c
M	src/browser.h
M	src/easytag.c
M	src/easytag.h
M	src/picture.c
M	src/picture.h
M	src/playlist_dialog.c
M	src/scan_dialog.c
M	src/scan_dialog.h

commit 5db73b5bb22002864111ae3070ed86489ddc7039
Author: David King <amigadave@amigadave.com>
Date:	Sat Oct 25 20:58:21 2014 +0100

    Avoid GSettings handler unused parameter warnings

    Use the settings and key parameters to the GSettings changed handler
    where possible.

M	src/browser.c
M	src/preferences_dialog.c
M	src/scan_dialog.c

commit 357e5d2296d49eea058e635a6320ffa10d89e4a2
Author: David King <amigadave@amigadave.com>
Date:	Sat Oct 25 20:51:28 2014 +0100

    Remove unused filename parameters in header code

    Avoid some -Wextra warnings about unused parameters.

M	src/et_core.c
M	src/tags/flac_header.c
M	src/tags/flac_header.h
M	src/tags/monkeyaudio_header.c
M	src/tags/monkeyaudio_header.h
M	src/tags/mp4_header.cc
M	src/tags/mp4_header.h
M	src/tags/mpeg_header.c
M	src/tags/mpeg_header.h
M	src/tags/musepack_header.c
M	src/tags/musepack_header.h
M	src/tags/ogg_header.c
M	src/tags/ogg_header.h
M	src/tags/opus_header.c
M	src/tags/opus_header.h
M	src/tags/wavpack_header.c
M	src/tags/wavpack_header.h

commit 332d161c9200bdc5b80bee2c6be3d038d3180f12
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sat Oct 25 19:11:01 2014 +0200

    Updated Polish translation

M	po/pl.po

commit 3bd1bc5c24bcf2e823c3a66506a1da21b58a97c8
Author: David King <amigadave@amigadave.com>
Date:	Fri Oct 24 23:59:25 2014 +0100

    Fix GIOStream leak when checking for buggy id3lib

M	src/tags/id3_tag.c

commit 1ab81be3a6c5cd2e8cc3cbb71f03de00ddd8389a
Author: David King <amigadave@amigadave.com>
Date:	Fri Oct 24 22:22:54 2014 +0100

    Refactor Vorbis comment setting functions slightly

    Iterate over string array better, without using g_strv_length(). Make
    more parameters const. Simplify conditional check. Remove a couple of
    unnecessary prototypes.

M	src/tags/ogg_tag.c

commit 9810819b5442428520dfee21fb5ede5188fb4112
Author: David King <amigadave@amigadave.com>
Date:	Thu Oct 23 00:12:33 2014 +0100

    Add a setting to disable automatic image types

    The heuristic for selecting the type of an image based on the filename
    can get confused quite easily, so provide an option to disable it.

    https://bugzilla.gnome.org/show_bug.cgi?id=738804

M	data/org.gnome.EasyTAG.gschema.xml
M	data/preferences_dialog.ui
M	src/preferences_dialog.c
M	src/tag_area.c

commit e9d132016e8874f31a26ce697d54d1b46b183f36
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 22 22:33:16 2014 +0100

    Use level 2 interface when reading FLAC header

    Improve bitrate calculation to ignore metadata blocks.

M	src/tags/flac_header.c

commit ded35bddf49b4353b5ff00b880ac6b904b434be6
Author: David King <amigadave@amigadave.com>
Date:	Mon Oct 20 23:19:15 2014 +0100

    Clear empty fields in MP4 tags

    The existing tag is loaded from the file and modified before being
    written out. For "extra" fields, including cover art and album artist,
    the existing tag field was preserved in the case that the
    corresponding
    tag field had been cleared from the UI. Fix this by explicitly
    removing
    the cleared tag field.

M	src/tags/mp4_tag.cc

commit b6c388ad25d323c3698ad6380d6c034a76f408f5
Author: David King <amigadave@amigadave.com>
Date:	Mon Oct 20 23:08:25 2014 +0100

    Fix an invalid read when reading MP4 cover art

M	src/tags/mp4_tag.cc

commit d53f10969c2569e753db83cac80b79550c44eb72
Author: David King <amigadave@amigadave.com>
Date:	Mon Oct 20 22:55:36 2014 +0100

    Fix memory leak in C++ GIOStream wrapper

M	src/tags/gio_wrapper.cc

commit 3fbdffab187351818ec81cf7b7853b1b8f66c741
Author: David King <amigadave@amigadave.com>
Date:	Mon Oct 20 08:31:59 2014 +0100

    Propagate double-click events on tree view headers

    Receiving a double-click event on a tree view is not a good
    indicator of
    whether to change the selection, as the event could have occurred
    on the
    column headers, resulting in the header resizing and the selection
    changing simultaneously. Avoid the problem by checking that the
    double-click event is in the bin window, and ignoring (and
    propagating)
    it otherwise.

    https://bugzilla.gnome.org/show_bug.cgi?id=738830

M	src/browser.c
M	src/cddb_dialog.c

commit 5dec634bec10b0b64ff09b8ce103aeb9f52fbd1d
Author: David King <amigadave@amigadave.com>
Date:	Fri Oct 17 20:09:11 2014 +0100

    Fix memory leak when constructing load file dialog

M	src/load_files_dialog.c

commit 1305e1098a116e8086eca94c44357c45efa38132
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:	Fri Oct 17 00:05:12 2014 +0200

    Added nb

M	po/LINGUAS

commit 35bc971df28dd82a02fb14508ee91b0a5ca05b30
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:	Fri Oct 17 00:04:57 2014 +0200

    Added Norwegian bokmål translation from Åka Sikrom.

A	po/nb.po

commit 5ddceb7573e98e86d63d9807e2e6def516346cfa
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 8 20:14:50 2014 +0100

    Avoid a memory leak of the disc ID in error paths

M	src/cddb_dialog.c

commit df0919bfc444f09a6914479dea3e25cf5b50308a
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 8 19:44:41 2014 +0100

    Refactor some CDDB dialog code to use GString

    Avoid a memory leak in error paths, and use GString to simplify
    the code
    a little.

M	src/cddb_dialog.c

commit 75c025779d7992b2ddfb89f47a04d80ad2a0ce35
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 8 19:31:18 2014 +0100

    Fix two memory leaks in CDDB dialog

    Store a pointer to the start of the GLists, so that the lists can be
    freed later.

M	src/cddb_dialog.c

commit f8c48eaef4dab037acc75acd80fb52aa2aa4ca24
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Oct 5 17:49:19 2014 +0200

    Updated Polish translation

M	po/pl.po

commit 12ba8ac010d8b20900f323a19aaa6eab649e617c
Author: David King <amigadave@amigadave.com>
Date:	Thu Oct 2 23:57:51 2014 +0100

    Use GIO when reading FLAC header information

M	src/et_core.c
M	src/tags/flac_header.c
M	src/tags/flac_header.h

commit f6348498dd88eb7718ea8500efcfbf86b09873ee
Author: David King <amigadave@amigadave.com>
Date:	Mon Sep 29 23:15:37 2014 +0100

    Add const to variables and parameters in et_core.c

M	src/application_window.c
M	src/application_window.h
M	src/et_core.c
M	src/et_core.h
M	src/file_area.c
M	src/file_area.h
M	src/tag_area.c
M	src/tag_area.h
M	src/tags/ape_tag.c
M	src/tags/ape_tag.h
M	src/tags/flac_header.c
M	src/tags/flac_header.h
M	src/tags/flac_tag.c
M	src/tags/flac_tag.h
M	src/tags/id3_tag.c
M	src/tags/id3_tag.h
M	src/tags/id3v24_tag.c
M	src/tags/monkeyaudio_header.c
M	src/tags/monkeyaudio_header.h
M	src/tags/mp4_header.cc
M	src/tags/mp4_header.h
M	src/tags/mp4_tag.cc
M	src/tags/mp4_tag.h
M	src/tags/mpeg_header.c
M	src/tags/mpeg_header.h
M	src/tags/musepack_header.c
M	src/tags/musepack_header.h
M	src/tags/ogg_header.c
M	src/tags/ogg_header.h
M	src/tags/ogg_tag.c
M	src/tags/ogg_tag.h
M	src/tags/opus_header.c
M	src/tags/opus_header.h
M	src/tags/wavpack_header.c
M	src/tags/wavpack_header.h
M	src/tags/wavpack_tag.c
M	src/tags/wavpack_tag.h

commit a58b943a71fba1168393182143b70cb9de830ed2
Author: Ting-Wei Lan <lantw@src.gnome.org>
Date:	Tue Sep 30 09:18:48 2014 +0800

    Fix printf format string warning

    https://bugzilla.gnome.org/show_bug.cgi?id=737633

M	src/tags/id3_tag.c

commit c2edff249ac90a4f86e6fc08a6eeefa1300d5fe8
Author: David King <amigadave@amigadave.com>
Date:	Mon Sep 29 17:58:05 2014 +0100

    Unify logging code for tag reading

M	src/et_core.c

commit 827e4ed7cf379ec2acbdb679b7853e02de45af90
Author: David King <amigadave@amigadave.com>
Date:	Mon Sep 29 16:52:40 2014 +0100

    Report successful writing in UI, not in tag code

    Remove several Log_Print() calls in the tagging code, and instead
    report
    the successful writing of a tag in the UI.

M	src/easytag.c
M	src/et_core.c
M	src/tags/flac_tag.c
M	src/tags/id3_tag.c
M	src/tags/id3v24_tag.c
M	src/tags/ogg_header.c
M	src/tags/ogg_tag.c

commit 1561588a121294b2f91e9ed5589c394212858cbf
Author: David King <amigadave@amigadave.com>
Date:	Mon Sep 29 16:11:20 2014 +0100

    Use GError in WavPack tagging code

M	src/et_core.c
M	src/tags/wavpack_header.c
M	src/tags/wavpack_header.h
M	src/tags/wavpack_tag.c
M	src/tags/wavpack_tag.h

commit 2d37ee8c7b0ebcc88d592437957616d33d3dd446
Author: David King <amigadave@amigadave.com>
Date:	Wed Sep 24 21:37:32 2014 +0100

    Use GError in Ogg header code

    Avoid a few Log_Print() calls.

M	src/et_core.c
M	src/tags/ogg_header.c
M	src/tags/ogg_header.h
M	src/tags/ogg_tag.c

commit 1482f841e4564c968815a24e98600426ee5e7f67
Author: David King <amigadave@amigadave.com>
Date:	Wed Sep 24 20:34:24 2014 +0100

    Use GError in MP4 tagging code

    Avoid several uses of Log_Print().

M	src/et_core.c
M	src/tags/mp4_header.cc
M	src/tags/mp4_header.h
M	src/tags/mp4_tag.cc
M	src/tags/mp4_tag.h

commit 3c7014b234d1896061bf8f373d1ffe34dc1196ed
Author: David King <amigadave@amigadave.com>
Date:	Wed Sep 24 00:17:05 2014 +0100

    Use GError in ID3 tagging code

    Avoid several uses of Log_Print(), and convert some more into warnings
    or debugging messages.

M	src/et_core.c
M	src/et_core.h
M	src/tags/flac_tag.c
M	src/tags/id3_tag.c
M	src/tags/id3_tag.h
M	src/tags/id3v24_tag.c
M	src/tags/mpeg_header.c
M	src/tags/mpeg_header.h

commit 35cd27c9d04b5d7344642a39fdc43e718e6cee70
Author: David King <amigadave@amigadave.com>
Date:	Tue Sep 23 22:34:59 2014 +0100

    Use GError in APE tagging code

    Avoid a use of Log_Print().

M	src/et_core.c
M	src/tags/ape_tag.c
M	src/tags/ape_tag.h
M	src/tags/id3_tag.c
M	src/tags/libapetag/apetaglib.c
M	src/tags/libapetag/apetaglib.h
M	src/tags/monkeyaudio_header.c
M	src/tags/monkeyaudio_header.h
M	src/tags/musepack_header.c
M	src/tags/musepack_header.h

commit 054ca780cb42c7001edc095875e68757b4cabe89
Author: David King <amigadave@amigadave.com>
Date:	Tue Sep 23 22:28:36 2014 +0100

    Use GError in FLAC tagging code

    Avoid several uses of Log_Print().

M	src/et_core.c
M	src/tags/flac_header.c
M	src/tags/flac_header.h
M	src/tags/flac_tag.c
M	src/tags/flac_tag.h

commit 553cb194494c308dd764548899be8c70cccbd4fe
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sat Sep 27 21:29:06 2014 +0200

    Updated Polish translation

M	po/pl.po

commit d0a066633a32d02910e5577a2e664d1e65b5f760
Author: David King <amigadave@amigadave.com>
Date:	Fri Sep 26 22:08:55 2014 +0100

    Refactor ET_Add_File_To_Artist_Album_File_List()

    Use g_return_val_if_fail() to check invariant.

M	src/et_core.c

commit 6e7d4ab8dd2a0a96f320f9581f2df129c8324d5c
Author: David King <amigadave@amigadave.com>
Date:	Fri Sep 26 20:59:47 2014 +0100

    Slightly refactor some GList handling in et_core.c

    If calling a g_list_*() method, a pointer to the first element in the
    list is always returned, so there is no need to additionally call
    g_list_first(). Fix GDestroyNotify functions to return void.

M	src/et_core.c
M	src/et_core.h

commit 0a11b1c1580d703d4136df5feef4cfb52948fcdc
Author: David King <amigadave@amigadave.com>
Date:	Fri Sep 26 08:38:28 2014 +0100

    Fix memory leak in id3lib buggy check

    Free the result string.

M	src/tags/id3_tag.c

commit 656946c80805acc39c3102c1dff480658064bb8c
Author: David King <amigadave@amigadave.com>
Date:	Thu Sep 25 17:57:39 2014 +0100

    Handle renaming on case-insensitive filesystems

    A rename will fail on a filesystem that is case-insensitive, if the
    filenames only differ by case. Work around this by moving to
    a temporary
    file first, in the case that a rename fails because the target exists.

    https://bugzilla.gnome.org/show_bug.cgi?id=737302

M	src/easytag.c

commit 43c76c81c075734147a11b413e3941b1f4d085f9
Author: David King <amigadave@amigadave.com>
Date:	Sat Sep 20 11:28:17 2014 +0100

    Update HACKING for GtkBuilder UI files

M	HACKING
M	TODO

commit 9ae954f662703ab371026ab4344579bc5f5eb06f
Author: David King <amigadave@amigadave.com>
Date:	Sat Sep 20 09:17:22 2014 +0100

    Improve expand behaviour of tag entry fields

M	data/tag_area.ui

commit 70712f2205003372688e430ef720508dd12f41b1
Author: David King <amigadave@amigadave.com>
Date:	Fri Sep 19 23:47:26 2014 +0100

    Move tag area to GtkBuilder

M	TODO
M	data/tag_area.ui
M	src/tag_area.c

commit 622be638168d22818028641df72032601f67edd3
Author: David King <amigadave@amigadave.com>
Date:	Fri Sep 19 17:37:44 2014 +0100

    Move log area to GtkBuilder

A	data/log_area.ui
M	data/org.gnome.EasyTAG.gresource.xml
M	po/POTFILES.in
M	src/log.c
M	src/log.h

commit 596a179593d895e123aecc616218b6a0875bce74
Author: David King <amigadave@amigadave.com>
Date:	Fri Sep 19 16:47:40 2014 +0100

    Move file area to GtkBuilder

A	data/file_area.ui
M	data/org.gnome.EasyTAG.gresource.xml
M	po/POTFILES.in
M	src/file_area.c

commit 9add9cf7c5ec6ce431c513a17922962118c8f5a7
Author: David King <amigadave@amigadave.com>
Date:	Fri Sep 19 16:46:37 2014 +0100

    Use const for strings in tests and libapetag

M	src/tags/libapetag/apetaglib.c
M	src/tags/libapetag/apetaglib.h
M	tests/test-scan.c

commit 821273008d1684632b0b1e2c3aee32642d6792b7
Author: David King <amigadave@amigadave.com>
Date:	Thu Sep 18 17:27:04 2014 +0100

    Mark some strings as const in tagging functions

M	src/tags/ape_tag.c
M	src/tags/ape_tag.h
M	src/tags/flac_header.c
M	src/tags/flac_header.h
M	src/tags/flac_tag.c
M	src/tags/flac_tag.h
M	src/tags/id3_tag.c
M	src/tags/id3_tag.h
M	src/tags/id3v24_tag.c
M	src/tags/libapetag/apetaglib.c
M	src/tags/libapetag/apetaglib.h
M	src/tags/monkeyaudio_header.c
M	src/tags/monkeyaudio_header.h
M	src/tags/mp4_header.cc
M	src/tags/mp4_header.h
M	src/tags/mp4_tag.cc
M	src/tags/mp4_tag.h
M	src/tags/mpeg_header.c
M	src/tags/mpeg_header.h
M	src/tags/musepack_header.c
M	src/tags/musepack_header.h
M	src/tags/ogg_header.c
M	src/tags/ogg_header.h
M	src/tags/ogg_tag.c
M	src/tags/ogg_tag.h
M	src/tags/wavpack_header.c
M	src/tags/wavpack_header.h
M	src/tags/wavpack_tag.c
M	src/tags/wavpack_tag.h

commit 498bf51ad4d1d7bd39b52a88fd7c0bace6f35598
Author: David King <amigadave@amigadave.com>
Date:	Wed Sep 17 22:48:56 2014 +0100

    Move browser to GtkBuilder

M	data/browser.ui
M	src/application_window.c
M	src/browser.c
M	src/browser.h

commit 1cedf1284c22ddb279406be0606b025cc2cd95c0
Author: David King <amigadave@amigadave.com>
Date:	Wed Sep 17 16:37:29 2014 +0100

    Move scanner dialog to GtkBuilder

M	data/org.gnome.EasyTAG.gresource.xml
A	data/scan_dialog.ui
M	po/POTFILES.in
M	src/scan_dialog.c

commit a21a43a1713f44719db81c02766b9ad6a488ebe4
Author: David King <amigadave@amigadave.com>
Date:	Tue Sep 16 20:00:49 2014 +0100

    Add simple tests for style-sensitive case function

M	tests/test-scan.c

commit b00b5ec6913be484159294c51e866f58b42516bb
Author: David King <amigadave@amigadave.com>
Date:	Tue Sep 16 17:19:51 2014 +0100

    Move remaining upper-casing functions to scan.c

    Split out Scan_Process_Fields_First_Letters_Uppercase() and
    Scan_Word_Is_Roman_Numeral() and add some parameters, so that they do
    not depend on the state of GSettings keys internally.

M	src/scan.c
M	src/scan.h
M	src/scan_dialog.c
M	src/scan_dialog.h
M	src/tag_area.c

commit 02b86bb625d1b3d3c3182bd2cb67e0af97eee063
Author: David King <amigadave@amigadave.com>
Date:	Mon Sep 15 20:49:32 2014 +0100

    Use return value to speed up force saving files

    The variable assignment was lost during refactoring.

    Found with Coverity (CID 1238689).

M	src/easytag.c

commit b8c4707f7ffd4c67615c30f6073f15b0693fe491
Author: David King <amigadave@amigadave.com>
Date:	Mon Sep 15 20:40:05 2014 +0100

    Remove dead code in et_browser_label_set_text()

    Found with Coverity (CID 1238690).

M	src/browser.c

commit cbc7f3a54d12d63c46a9600f9a953be34d0ba7e4
Author: David King <amigadave@amigadave.com>
Date:	Mon Sep 15 20:19:18 2014 +0100

    Remove redundant NULL checks in CDDB dialog

    Found with Coverity (CID 1238682, CID 1238683, CID 1238684, CID
    1238685,
    CID 1238686)

M	src/cddb_dialog.c

commit 9f898378b70158f9ca10164fd1a7c45ebad0389d
Author: David King <amigadave@amigadave.com>
Date:	Sun Sep 14 21:02:47 2014 +0100

    Remove unused CDDB dialog private struct variable

M	src/cddb_dialog.c

commit 1f5ddcc0070025fd68d61c4f256f1a2d83016b14
Author: David King <amigadave@amigadave.com>
Date:	Sat Sep 13 22:43:57 2014 +0100

    Fix capitalization in process fields scanner

    Iterate to the end of the string, rather than only processing
    the first
    2 words.

    https://bugzilla.gnome.org/show_bug.cgi?id=736609

M	src/scan_dialog.c

commit b44afc315f1948ce7e308154d2a92392e27077bf
Author: David King <amigadave@amigadave.com>
Date:	Sat Sep 13 19:11:48 2014 +0100

    Fix check for upper-casing prepositions

    Flip the boolean check for whether to upper-case prepositions
    and other
    excluded words.

M	src/scan_dialog.c

commit 7de273759ec21f574fea53104f7e658c4bcbc6b9
Author: David King <amigadave@amigadave.com>
Date:	Tue Sep 9 11:37:04 2014 +0100

    Fix signal handler for apply-to-selection icons

    Thanks to Steven Ulrick for the bug report.

    https://bugzilla.gnome.org/show_bug.cgi?id=736315

M	src/tag_area.c

commit 692749a8e2cec9377345b03139abda8c032adf05
Author: David King <amigadave@amigadave.com>
Date:	Mon Sep 8 11:42:54 2014 +0100

    Fix checking whether ID3v1 and ID3v2 are enabled

    As reported by Steven Ulrick on the mailing list, saving files
    with ID3
    tags and then reloading the directory causes the files to be shown as
    modified, even though they are not.

    https://mail.gnome.org/archives/easytag-list/2014-September/msg00014.html

M	src/tags/id3v24_tag.c

commit 80ecf4d65b537882ff8d4939b3f03e0f5762797a
Author: Guillaume Bernard <filorin@gmx.com>
Date:	Mon Sep 8 09:53:08 2014 +0000

    Updated French translation

M	po/fr.po

commit 4b0222a3a990bf74c78696f0691d02aab2fb77b7
Author: David King <amigadave@amigadave.com>
Date:	Sun Sep 7 21:50:13 2014 +0100

    Remove unused fields in CDDB dialog private struct

M	src/cddb_dialog.c

commit 2e93948066ae248e41df4381abdb98a13b20b4ab
Author: David King <amigadave@amigadave.com>
Date:	Sun Sep 7 21:47:54 2014 +0100

    Move internal struct from charset header to source

    Also, rearrange and tidy the header.

M	src/charset.c
M	src/charset.h

commit 2c905880066380719c90b101fb2e3d55ae3e807e
Author: David King <amigadave@amigadave.com>
Date:	Sun Sep 7 19:14:51 2014 +0100

    Move CDDB dialog to GtkBuilder

A	data/cddb_dialog.ui
M	data/org.gnome.EasyTAG.gresource.xml
M	data/org.gnome.EasyTAG.gschema.xml
M	po/POTFILES.in
M	src/application_window.c
M	src/cddb_dialog.c
M	src/cddb_dialog.h
M	src/setting.c
M	src/setting.h

commit 131fdf54a3629569f39f0b29e27dd9f999b7cc95
Author: Andika Triwidada <andika@gmail.com>
Date:	Sun Sep 7 04:51:46 2014 +0000

    Added Indonesian translation

M	po/LINGUAS
A	po/id.po

commit 08ad4ccc86b0d4758d9cde19227e0a6a0a806d82
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Sep 7 01:07:28 2014 +0200

    Updated Polish translation

M	po/pl.po

commit 806b8692e615b79accec39cae2154aa2fb770cd2
Author: David King <amigadave@amigadave.com>
Date:	Sat Sep 6 21:47:31 2014 +0100

    Fix -Wwrite-strings warning in channel_mode_name()

M	src/tags/mpeg_header.c

commit 5ce7719ad0beefd88b64939e50395330eac6bd60
Author: David King <amigadave@amigadave.com>
Date:	Sat Sep 6 15:06:31 2014 +0100

    Remove unused id3_settings_changed()

M	src/preferences_dialog.c

commit 872a6ff51035736abf981f74ab722b11f2a6461a
Author: David King <amigadave@amigadave.com>
Date:	Sat Sep 6 15:02:53 2014 +0100

    Add load files dialog UI file to POTFILES.in

M	po/POTFILES.in

commit 1b3f886d80f6819616f3259047fcd51526f038e5
Author: David King <amigadave@amigadave.com>
Date:	Thu Sep 4 18:33:10 2014 +0100

    Review many translatable strings

M	data/menus.ui
M	data/org.gnome.EasyTAG.gschema.xml
M	data/playlist_dialog.ui
M	data/preferences_dialog.ui
M	data/toolbar.ui
M	src/application.c
M	src/application_window.c
M	src/browser.c
M	src/cddb_dialog.c
M	src/charset.c
M	src/easytag.c
M	src/et_core.c
M	src/file_area.c
M	src/load_files_dialog.c
M	src/misc.c
M	src/picture.c
M	src/playlist_dialog.c
M	src/preferences_dialog.c
M	src/scan_dialog.c
M	src/setting.c
M	src/tag_area.c
M	src/tags/ape_tag.c
M	src/tags/flac_tag.c
M	src/tags/id3_tag.c
M	src/tags/id3v24_tag.c
M	src/tags/mp4_header.cc
M	src/tags/mp4_tag.cc
M	src/tags/ogg_header.c
M	src/tags/ogg_tag.c

commit 949376a1743c98f254b2b471bf0f6c6dbdd30f8f
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed Sep 3 23:37:12 2014 +0100

    Review more strings

M	data/browser.ui
M	data/easytag.desktop.in
M	data/menus.ui
M	data/org.gnome.EasyTAG.gschema.xml
M	data/playlist_dialog.ui
M	data/preferences_dialog.ui

commit a05d398b95b162dd36f4b9c26343e7e8b1385aee
Author: David King <amigadave@amigadave.com>
Date:	Wed Sep 3 18:32:31 2014 +0100

    Move application quit code to EtApplicationWindow

M	src/application.c
M	src/application_window.c
M	src/application_window.h
M	src/easytag.c
M	src/easytag.h

commit 717813f54ffaea2bcce471d2dbd68190ea2445ab
Author: David King <amigadave@amigadave.com>
Date:	Wed Sep 3 18:01:41 2014 +0100

    Remove global INIT_DIRECTORY variable

    Replace a global variable with a private variable in EtApplication.

M	src/application.c
M	src/easytag.h
M	src/main.c

commit a42e93c4db70df97acf7b37270db8cbbede3978f
Author: David King <amigadave@amigadave.com>
Date:	Wed Sep 3 16:06:44 2014 +0100

    Update the file list column width on path changes

    https://bugzilla.gnome.org/show_bug.cgi?id=735363

M	src/browser.c

commit 2adda4449b6c8bb8e69c6ce9435bc982ee994f8d
Author: David King <amigadave@amigadave.com>
Date:	Wed Sep 3 16:06:33 2014 +0100

    Use GtkTreeView interactive search in CDDB dialog

    Remove custom code to search within results.

M	src/cddb_dialog.c
M	src/setting.c
M	src/setting.h

commit 75d60313ef48df6f9880143c10f9627f87915bd6
Author: David King <amigadave@amigadave.com>
Date:	Wed Aug 27 20:50:58 2014 +0100

    Remove duplicate NULL check in et_run_program()

    Found with cppcheck.

M	src/misc.c

commit 60dca801aad9336c1036d9bdf202b6da46ebc5ca
Author: David King <amigadave@amigadave.com>
Date:	Wed Aug 27 20:49:09 2014 +0100

    Remove unused function in misc.c

    Found with cppcheck.

M	src/misc.c
M	src/misc.h

commit 54e35a67d032164ade5a1a92fee7681c9e230f27
Author: David King <amigadave@amigadave.com>
Date:	Fri Aug 22 16:03:01 2014 +0100

    Move load files dialog to GtkBuilder

A	data/load_files_dialog.ui
M	data/org.gnome.EasyTAG.gresource.xml
M	src/load_files_dialog.c
M	src/setting.c
M	src/setting.h

commit c20ab15940be282ae972f71e31fa87edef1c2fee
Author: David King <amigadave@amigadave.com>
Date:	Thu Aug 21 23:06:19 2014 +0100

    Move search dialog to GtkBuilder

M	data/org.gnome.EasyTAG.gresource.xml
A	data/search_dialog.ui
M	po/POTFILES.in
M	src/search_dialog.c

commit b55626480f999f63e23cdf3059692cd90b6b59f8
Author: David King <amigadave@amigadave.com>
Date:	Thu Aug 21 16:19:16 2014 +0100

    Move open files dialog to GtkBuilder

M	data/browser.ui
M	src/browser.c

commit 93ad29c9b90f7bcd81856353d02acd283cf9f898
Author: David King <amigadave@amigadave.com>
Date:	Thu Aug 21 08:36:40 2014 +0100

    Move browse directory dialog to GtkBuilder

M	data/browser.ui
M	src/browser.c

commit e169b255181580d2cd967e8f0c5b4329502636af
Author: David King <amigadave@amigadave.com>
Date:	Wed Aug 20 16:02:06 2014 +0100

    Move picture details dialog to GtkBuilder

M	data/org.gnome.EasyTAG.gresource.xml
A	data/tag_area.ui
M	po/POTFILES.in
M	src/tag_area.c

commit e00a7ea6828e2892a78b63f6eff28f7335631050
Author: David King <amigadave@amigadave.com>
Date:	Wed Aug 20 07:43:49 2014 +0100

    Set transient parents before init()

    If gtk_window_set_transient_for() is called in the GObject init()
    method, it is overridden to the default for the property immediately
    afterwards, as "transient-for" is a contruct property.  Instead,
    set the
    property as part of calls to g_object_new().

M	src/application_window.c
M	src/load_files_dialog.c
M	src/load_files_dialog.h
M	src/playlist_dialog.c
M	src/playlist_dialog.h
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/scan_dialog.c
M	src/scan_dialog.h
M	src/search_dialog.c
M	src/search_dialog.h

commit 5bdc10db890e08e23e46692fa150e37ff91e594a
Author: David King <amigadave@amigadave.com>
Date:	Tue Aug 19 16:11:01 2014 +0100

    Move rename directory dialog to GtkBuilder

A	data/browser.ui
M	data/org.gnome.EasyTAG.gresource.xml
M	po/POTFILES.in
M	src/browser.c

commit aca16a59a0ad0b101f590c159b46b8f14cedf46f
Author: David King <amigadave@amigadave.com>
Date:	Sun Aug 17 09:24:47 2014 +0100

    Move playlist dialog to GtkBuilder

M	data/org.gnome.EasyTAG.gresource.xml
A	data/playlist_dialog.ui
M	po/POTFILES.in
M	src/playlist_dialog.c

commit b15aa823afb40b381f5323e7f5385ad542254f3c
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 16 22:41:41 2014 +0100

    Remove old GTK+ 2 grid compatibility code

M	Makefile.am
M	src/application_window.c
M	src/browser.c
M	src/easytag.c
D	src/gtk2_compat.c
D	src/gtk2_compat.h
M	src/load_files_dialog.c
M	src/misc.c
M	src/misc.h
M	src/playlist_dialog.c
M	src/preferences_dialog.c
M	src/scan_dialog.c
M	src/search_dialog.c
M	src/tag_area.c

commit f6a10b4abcf25ceef89dcfebe23d115d46435b7a
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 16 22:34:38 2014 +0100

    Remove unnecessary et_grid_attach_margins()

M	src/gtk2_compat.c
M	src/gtk2_compat.h
M	src/scan_dialog.c

commit f87a971fe303ea68b97bf3fa895b076cecc74a5a
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 16 22:22:03 2014 +0100

    Remove redundant et_grid_new() define

    Call gtk_grid_new() directly.

M	src/cddb_dialog.c
M	src/gtk2_compat.h
M	src/scan_dialog.c
M	src/search_dialog.c
M	src/tag_area.c

commit 7ca75e8261d013700fc1f9b0ea63102bbfed7eb1
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 16 20:36:52 2014 +0100

    Move preferences notebook into GtkBuilder

M	data/preferences_dialog.ui
M	src/preferences_dialog.c

commit 1f58d9e9df1f83f8aa39f031a472091f44ff1b4c
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 16 16:06:45 2014 +0100

    Move CDDB preferences page to GtkBuilder

M	data/preferences_dialog.ui
M	src/preferences_dialog.c

commit 51944288f1dc20c0966357eeadf643bff0aa983f
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 16 10:28:24 2014 +0100

    Move tags preferences page to GtkBuilder

M	data/preferences_dialog.ui
M	src/preferences_dialog.c

commit beab8934b1ae311f47cb550cda1e172bb9eefcbc
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 16 09:12:56 2014 +0100

    Move file preferences page to GtkBuilder

M	data/preferences_dialog.ui
M	src/preferences_dialog.c

commit 8669c6100f55308d66f00f21db090c074b811d14
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 16 08:37:38 2014 +0100

    Move UI and misc preferences pages to GtkBuilder

    Unify the UI settings in a single User Interface page.

M	data/preferences_dialog.ui
M	src/preferences_dialog.c

commit c65572a59dc94e09ada71d77c01b7f0e66aae4ca
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 16 07:55:37 2014 +0100

    Move confirmation preferences page to GtkBuilder

M	data/preferences_dialog.ui
M	src/preferences_dialog.c

commit 663410e443da238b238f0ccfc3139d5463cc038b
Author: David King <amigadave@amigadave.com>
Date:	Fri Aug 15 22:48:37 2014 +0100

    Move scanner preferences page to GtkBuilder

M	data/org.gnome.EasyTAG.gresource.xml
A	data/preferences_dialog.ui
M	po/POTFILES.in
M	src/preferences_dialog.c

commit 5799efb3b3325d9d425fd575ff936614449d0b95
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Fri Aug 15 22:36:19 2014 +0100

    Review strings

M	data/menus.ui
M	data/org.gnome.EasyTAG.gschema.xml
M	data/toolbar.ui
M	nautilus-extension/nautilus-easytag.c
M	src/application.c
M	src/application_window.c
M	src/browser.c
M	src/et_core.c
M	src/file_area.c

commit e26ea4460897016184242dc44bc6a3b3e239f30d
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Fri Aug 15 20:47:24 2014 +0100

    Add "music" to the desktop file keywords

M	data/easytag.desktop.in

commit ff27f47e0eb69eac961eb729d14f272a1d1089e5
Author: David King <amigadave@amigadave.com>
Date:	Fri Aug 15 18:37:20 2014 +0100

    Move status bar to EtStatusBar object

M	Makefile.am
M	po/POTFILES.in
M	src/application.c
M	src/application_window.c
M	src/application_window.h
D	src/bar.c
D	src/bar.h
M	src/browser.c
M	src/easytag.c
M	src/et_core.c
M	src/load_files_dialog.c
M	src/log.c
M	src/misc.c
M	src/picture.c
M	src/playlist_dialog.c
M	src/preferences_dialog.c
M	src/scan_dialog.c
M	src/search_dialog.c
M	src/setting.c
A	src/status_bar.c
A	src/status_bar.h
M	src/tag_area.c

commit 238a0483a62586c3d75a6fb8306991337fbf0e29
Author: David King <amigadave@amigadave.com>
Date:	Fri Aug 15 16:10:20 2014 +0100

    Split progress bar from status bar

    There is no need to subclass GtkProgressBar, so just move the progress
    bar code to a separate file.

M	Makefile.am
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/bar.h
M	src/easytag.c
M	src/gtk2_compat.c
M	src/gtk2_compat.h
A	src/progress_bar.c
C053	src/gtk2_compat.h	src/progress_bar.h
M	src/scan_dialog.c

commit 69ca1719733af77aa4b013b998c9262bfcc3170d
Author: David King <amigadave@amigadave.com>
Date:	Wed Aug 13 08:42:10 2014 +0100

    Enable ID3v2.3 (instead of ID3v2.4) by default

    Although ID3v2.4 is nearly as old as ID3v2.3, it has not received the
    same level of support in hardware and software players until recently.
    To make sure that users are not confused by their valid ID3v2.4
    tags not
    being shown in players which only support ID3v2.3, write ID3v2.3
    tags by
    default.

    https://mail.gnome.org/archives/easytag-list/2014-August/msg00014.html

M	data/org.gnome.EasyTAG.gschema.xml

commit d02484dbd73605bc6031faa6a9666f8eb3a82dca
Author: David King <amigadave@amigadave.com>
Date:	Wed Aug 13 08:38:44 2014 +0100

    Disable writing of ID3v1 tags by default

    ID3v1 tags have many problems, including the lack of a defined
    character
    encoding (and a western-centric ISO-8859-1 convention), 30 bytes per
    field and an extremely limited set of fields. Depending on the
    behaviour
    of media players, reading the ID3v1 tag instead of the ID3v2 tag could
    give misleading information (truncated fields, mojibake and so on).

    As ID3v2 is in wide use, and solves the above problems, disable
    ID3v1 by
    default.

    https://mail.gnome.org/archives/easytag-list/2014-August/msg00017.html

M	data/org.gnome.EasyTAG.gschema.xml

commit 96b081f8cd5a1feed97e1692fe2ca15f8d7ab970
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 9 22:43:38 2014 +0100

    Set maximum allowed GLib version to 2.32

    This corresponds with the version required by GTK+ 3.4, so that API
    introduced in post-2.32 releases will emit warnings when used.

M	configure.ac

commit 7d8d22804a44ec23bd1ea71bd4dfc1d7841a114c
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 9 19:11:24 2014 +0100

    Move tagging code to new subdirectory

    Rearranging the tagging code will make it easier to split the code off
    to be a separate library.

M	.gitignore
M	Makefile.am
M	po/POTFILES.in
R100	src/ape_tag.c	src/tags/ape_tag.c
R100	src/ape_tag.h	src/tags/ape_tag.h
R100	src/flac_header.c	src/tags/flac_header.c
R100	src/flac_header.h	src/tags/flac_header.h
R100	src/flac_tag.c	src/tags/flac_tag.c
R100	src/flac_tag.h	src/tags/flac_tag.h
R100	src/gio_wrapper.cc	src/tags/gio_wrapper.cc
R100	src/gio_wrapper.h	src/tags/gio_wrapper.h
R100	src/id3_tag.c	src/tags/id3_tag.c
R100	src/id3_tag.h	src/tags/id3_tag.h
R100	src/id3lib/c_wrapper.cpp	src/tags/id3lib/c_wrapper.cpp
R100	src/id3lib/id3_bugfix.h src/tags/id3lib/id3_bugfix.h
R100	src/id3lib/patch_id3lib_3.8.3_UTF16_writing_bug.diff
src/tags/id3lib/patch_id3lib_3.8.3_UTF16_writing_bug.diff
R100	src/id3v24_tag.c	src/tags/id3v24_tag.c
R100	src/libapetag/COPYING.LGPL	src/tags/libapetag/COPYING.LGPL
R100	src/libapetag/README.apetag	src/tags/libapetag/README.apetag
R100	src/libapetag/apetaglib.c	src/tags/libapetag/apetaglib.c
R100	src/libapetag/apetaglib.h	src/tags/libapetag/apetaglib.h
R100	src/libapetag/id3v2_read.c	src/tags/libapetag/id3v2_read.c
R100	src/libapetag/id3v2_read.h	src/tags/libapetag/id3v2_read.h
R100	src/libapetag/info_mac.c	src/tags/libapetag/info_mac.c
R100	src/libapetag/info_mac.h	src/tags/libapetag/info_mac.h
R100	src/libapetag/info_mpc.c	src/tags/libapetag/info_mpc.c
R100	src/libapetag/info_mpc.h	src/tags/libapetag/info_mpc.h
R100	src/libapetag/is_tag.c	src/tags/libapetag/is_tag.c
R100	src/libapetag/is_tag.h	src/tags/libapetag/is_tag.h
R100	src/monkeyaudio_header.c	src/tags/monkeyaudio_header.c
R100	src/monkeyaudio_header.h	src/tags/monkeyaudio_header.h
R100	src/mp4_header.cc	src/tags/mp4_header.cc
R100	src/mp4_header.h	src/tags/mp4_header.h
R100	src/mp4_tag.cc	src/tags/mp4_tag.cc
R100	src/mp4_tag.h	src/tags/mp4_tag.h
R100	src/mpeg_header.c	src/tags/mpeg_header.c
R100	src/mpeg_header.h	src/tags/mpeg_header.h
R100	src/musepack_header.c	src/tags/musepack_header.c
R100	src/musepack_header.h	src/tags/musepack_header.h
R100	src/ogg_header.c	src/tags/ogg_header.c
R100	src/ogg_header.h	src/tags/ogg_header.h
R100	src/ogg_tag.c	src/tags/ogg_tag.c
R100	src/ogg_tag.h	src/tags/ogg_tag.h
R100	src/opus_header.c	src/tags/opus_header.c
R100	src/opus_header.h	src/tags/opus_header.h
R100	src/opus_tag.c	src/tags/opus_tag.c
R100	src/opus_tag.h	src/tags/opus_tag.h
R100	src/vcedit.c	src/tags/vcedit.c
R100	src/vcedit.h	src/tags/vcedit.h
R100	src/wavpack_header.c	src/tags/wavpack_header.c
R100	src/wavpack_header.h	src/tags/wavpack_header.h
R100	src/wavpack_tag.c	src/tags/wavpack_tag.c
R100	src/wavpack_tag.h	src/tags/wavpack_tag.h

commit 4fa650fd4b5f99242be86acee803ed0f2f744d73
Author: David King <amigadave@amigadave.com>
Date:	Fri Aug 8 20:45:52 2014 +0100

    Remove use of deprecated GtkImageMenuItem

M	src/load_files_dialog.c
M	src/tag_area.c

commit eece2dd855a3fe4e9ac642027cbb9c4afe6bcb95
Author: David King <amigadave@amigadave.com>
Date:	Fri Aug 8 20:35:20 2014 +0100

    Remove last uses of deprecated GtkStock

M	src/application_window.c
M	src/browser.c
M	src/cddb_dialog.c
M	src/easytag.c
M	src/load_files_dialog.c
M	src/misc.c
M	src/playlist_dialog.c
M	src/preferences_dialog.c
M	src/scan_dialog.c
M	src/search_dialog.c
M	src/tag_area.c

commit 37b1ffa794682cf8b039d5d24eb8f8593f561832
Author: David King <amigadave@amigadave.com>
Date:	Wed Aug 6 07:47:16 2014 +0100

    Split off main() to a separate source file

M	Makefile.am
M	src/easytag.c
A	src/main.c

commit fffeab41b48cf9c371cab4dd1deaf24e1f55c8d6
Author: David King <amigadave@amigadave.com>
Date:	Tue Aug 5 16:51:54 2014 +0100

    Refactor about dialog handling

    Fetch the parent from EtApplication.

M	src/about.c
M	src/about.h
M	src/application.c

commit d91fc6aa8623dbcc09c09b592adbcf99f154ec2a
Author: David King <amigadave@amigadave.com>
Date:	Tue Aug 5 16:38:06 2014 +0100

    Move some GApplication handlers to EtApplication

M	src/application.c
M	src/application.h
M	src/easytag.c

commit 63a1232009a5e4324b06a53531ec00e13114db3d
Author: David King <amigadave@amigadave.com>
Date:	Fri Aug 1 22:54:52 2014 +0100

    Use same strings in GSettings schema and UI

    While not all strings are applicable to the UI, try to reduce
    translator
    effort by reducing the delta.

M	src/browser.c
M	src/cddb_dialog.c
M	src/load_files_dialog.c
M	src/playlist_dialog.c
M	src/preferences_dialog.c
M	src/scan_dialog.c

commit 4813e3a618192b36bf47687e43e78fd9feaeb7b6
Author: David King <amigadave@amigadave.com>
Date:	Fri Aug 1 21:30:14 2014 +0100

    Avoid warnings when updating the scan dialog

M	src/application_window.c
M	src/application_window.h
M	src/easytag.c

commit 6530bf0641e8d7b1e8435e11d8863f8ee276970f
Author: David King <amigadave@amigadave.com>
Date:	Fri Aug 1 16:09:19 2014 +0100

    Use GtkWidget popup-menu signal in EtBrowser

M	TODO
M	src/browser.c

commit 9411e2fb3366aeb98473f641ab0f0a970e893bad
Author: David King <amigadave@amigadave.com>
Date:	Fri Aug 1 08:53:47 2014 +0100

    Use popup-menu signal in EtLoadFilesDialog

M	src/load_files_dialog.c

commit a1018b49ba87031fd206735f3e1c2563bdf254b8
Author: David King <amigadave@amigadave.com>
Date:	Thu Jul 31 22:14:57 2014 +0200

    Use GtkWidget popup-menu signal in EtLogArea

M	src/log.c

commit 15ab6f264d258d1f3288744bf0fd256f364b3301
Author: David King <amigadave@amigadave.com>
Date:	Thu Jul 31 21:11:36 2014 +0200

    Remove use of deprecated GtkMisc xalign property

    Use GtkWidget halign property instead.

M	src/cddb_dialog.c
M	src/file_area.c
M	src/load_files_dialog.c
M	src/preferences_dialog.c
M	src/scan_dialog.c
M	src/search_dialog.c
M	src/tag_area.c

commit d881fa1306130aa0a4a733d01eb25c2511dc2093
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 20 22:45:03 2014 +0100

    Avoid warnings when reading and writing ID3 tags

    https://mail.gnome.org/archives/easytag-list/2014-July/msg00000.html

M	src/id3_tag.c

commit 94be19c239f5aaf200dae62f5a00b82c702d27d7
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 19 23:53:09 2014 +0100

    Implement hiding of file header widget

    Show the file header information if the file-show-header GSetting is
    true.

M	src/file_area.c

commit 2ebe3861967f2de4bb0f0d8d3e140feb71f9643c
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 19 23:27:37 2014 +0100

    Move dialog setting saving to application window

M	src/application_window.c
M	src/application_window.h
M	src/easytag.c
M	src/setting.c
M	src/setting.h

commit 479fef7a908db316f97ba7fbc7a3d0a6bd8e61ad
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 19 23:12:45 2014 +0100

    Remove the cancel button from the preferences

    As settings changes are applied instantly with GSettings, a cancel
    button is not useful.

M	src/preferences_dialog.c

commit 03ab2667dc2ce185dec3df2c88f92f23a7b6b839
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 19 23:06:13 2014 +0100

    Remove unused code when closing preferences dialog

M	src/preferences_dialog.c
M	src/setting.c
M	src/setting.h

commit e50cfde5a502f3b122588ebbf9f2f1b2444605d3
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 19 22:38:29 2014 +0100

    Drop explicit call to gtk_main()

M	src/easytag.c

commit 594e9575eaddc1b70b7bf6510802b27b6b8e6828
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 19 09:19:38 2014 +0100

    Move file area to EtFileArea object

M	Makefile.am
M	po/POTFILES.in
M	src/application_window.c
M	src/application_window.h
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/et_core.h
A	src/file_area.c
A	src/file_area.h
M	src/flac_header.c
M	src/flac_header.h
M	src/monkeyaudio_header.c
M	src/monkeyaudio_header.h
M	src/mp4_header.cc
M	src/mp4_header.h
M	src/mpeg_header.c
M	src/mpeg_header.h
M	src/musepack_header.c
M	src/musepack_header.h
M	src/ogg_header.c
M	src/ogg_header.h
M	src/opus_header.c
M	src/opus_header.h
M	src/wavpack_header.c
M	src/wavpack_header.h

commit fc874a72b02a213f7de07b7b859597eff755f805
Author: David King <amigadave@amigadave.com>
Date:	Fri Jul 18 08:42:22 2014 +0100

    Move tag area to EtTagArea object

M	Makefile.am
M	po/POTFILES.in
M	src/application_window.c
M	src/application_window.h
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/misc.c
M	src/misc.h
M	src/picture.c
M	src/picture.h
A	src/tag_area.c
A	src/tag_area.h

commit f9d8fa4305dbc0c61b21e44721d5e819f2eab5bd
Author: David King <amigadave@amigadave.com>
Date:	Wed Jul 16 08:19:20 2014 +0100

    Save and restore main window state

M	src/application_window.c

commit 3d0895d833e96726ea7838922161b6be1f10b2d6
Author: David King <amigadave@amigadave.com>
Date:	Wed Jul 16 07:33:17 2014 +0100

    Track main window state

    This will be used to save and restore the window dimensions,
    and whether
    the window is maximized.

M	src/application_window.c

commit 11f839d201b44ab10c189408e5bdca5921106b78
Author: David King <amigadave@amigadave.com>
Date:	Mon Jul 14 22:19:16 2014 +0100

    Remove last uses of GtkAction

M	src/application_window.c
M	src/application_window.h
M	src/easytag.h
M	src/scan_dialog.c

commit 985a94cf3a3680188c22d4a7bf91dde2b07e8c56
Author: David King <amigadave@amigadave.com>
Date:	Mon Jul 14 17:16:41 2014 +0100

    Refactor popup menu handling

    Use gdk_event_triggers_context_menu() in button-press-event handlers.
    Use GDK_BUTTON_PRIMARY instead of 1 where appropriate.

M	TODO
M	src/application_window.c
M	src/browser.c
M	src/cddb_dialog.c
M	src/load_files_dialog.c
M	src/log.c
M	src/picture.c

commit 0a41b9ab7f61af18804fe0c0694ca9124a71ff02
Author: David King <amigadave@amigadave.com>
Date:	Mon Jul 14 17:16:01 2014 +0100

    Avoid deprecated margin property with GTK+ 3.12

M	src/gtk2_compat.c

commit cb165fa7d646b1d0361773c0168189a4bc3f5cbb
Author: David King <amigadave@amigadave.com>
Date:	Mon Jul 14 08:56:03 2014 +0100

    Convert XPM image data to PNG

    Build PNG images into the easytag binary with GResource.

M	Makefile.am
M	TODO
A	data/images/all-lowercase.png
A	data/images/all-uppercase.png
A	data/images/artist-album.png
A	data/images/artist.png
A	data/images/first-letter-uppercase-word.png
A	data/images/first-letter-uppercase.png
A	data/images/freedb.png
A	data/images/gnudb.png
A	data/images/invert-selection.png
A	data/images/mask.png
A	data/images/musicbrainz.png
A	data/images/red-lines.png
A	data/images/sequence-track.png
A	data/images/unselect-all.png
M	data/org.gnome.EasyTAG.gresource.xml
D	data/pixmaps/all_downcase.xpm
D	data/pixmaps/all_uppercase.xpm
D	data/pixmaps/artist.xpm
D	data/pixmaps/artist_album.xpm
D	data/pixmaps/first_letter_uppercase.xpm
D	data/pixmaps/first_letter_uppercase_word.xpm
D	data/pixmaps/freedb.xpm
D	data/pixmaps/gnudb.xpm
D	data/pixmaps/invert_selection.xpm
D	data/pixmaps/mask.xpm
D	data/pixmaps/musicbrainz.xpm
D	data/pixmaps/red_lines.xpm
D	data/pixmaps/sequence_track.xpm
D	data/pixmaps/unselect_all.xpm
M	data/toolbar.ui
M	src/application_window.c
M	src/browser.c
M	src/cddb_dialog.c
M	src/easytag.c
M	src/load_files_dialog.c
M	src/misc.c
M	src/misc.h
M	src/scan_dialog.c

commit 7a7aa3c05aefb83b77ca2836334119ea51247f12
Author: David King <amigadave@amigadave.com>
Date:	Mon Jul 14 07:12:49 2014 +0100

    Use named icons instead of GtkStock in some places

M	src/application_window.c
M	src/load_files_dialog.c
M	src/log.c
M	src/playlist_dialog.c
M	src/scan_dialog.c

commit 348123b4d1c3c05775067644dcfa140b07a32905
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 13 22:42:50 2014 +0100

    Use GAction for toolbar stop button

M	Makefile.am
M	TODO
M	data/toolbar.ui
M	src/application_window.c
M	src/bar.c
M	src/bar.h
M	src/easytag.c
D	src/ui_manager.h

commit 4b7b43e806e860851e2e29946fbfb05873bc6f5c
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 13 21:39:24 2014 +0100

    Remove now-unused UIManager proxy logic

    It was used for showing tooltips of menu items in the status bar, but
    GActions do not have tooltips so it is now useless.

M	src/bar.c

commit 7e75bfb710fba53d7672d98e8f168f9a7693cb92
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 13 21:36:14 2014 +0100

    Use GMenuModel for popup menus

M	data/menus.ui
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/log.c
M	src/log.h
M	src/ui_manager.h

commit bb4bb6ff064cb329dc0e954c606eb09df1536626
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 13 19:01:59 2014 +0100

    Use GAction for file sorting mode GSetting

M	data/menus.ui
M	src/application_window.c
M	src/bar.c
M	src/bar.h
M	src/ui_manager.h

commit 4d24235a57f68b619ed0a6f7933bf7b9f6306902
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 13 18:25:14 2014 +0100

    Use GAction for some view menu items

    The sorting items remain.

M	data/menus.ui
M	data/toolbar.ui
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/browser.h
M	src/easytag.c
M	src/easytag.h
M	src/scan_dialog.c
M	src/ui_manager.h

commit f37c1b373e5ef5b12a7165cb49fd45712a6a210b
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 13 14:27:57 2014 +0100

    Use GAction for file menu items

M	data/menus.ui
M	data/toolbar.ui
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/easytag.h
M	src/ui_manager.h

commit 4bb620efac6fc25836fdb57a890e540975bfcd07
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 13 13:03:39 2014 +0100

    Use GAction for edit menu items

M	data/menus.ui
M	data/toolbar.ui
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/easytag.c
M	src/easytag.h
M	src/ui_manager.h

commit 1c74e5a2ab8d5e360763e30c1af4509b98f30ef9
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 13 11:51:25 2014 +0100

    Use GAction for browser menu items

M	data/menus.ui
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/bar.h
M	src/ui_manager.h

commit 459150ee208a69e45b9038349948bdaa009b8856
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 13 10:49:42 2014 +0100

    Use GAction for go-file actions

M	data/menus.ui
M	data/toolbar.ui
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/bar.h
M	src/easytag.c
M	src/easytag.h
M	src/scan_dialog.c
M	src/ui_manager.h

commit 1a6030682b6735ba7f62c2182bb642ad4e8583d8
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 13 09:40:47 2014 +0100

    Add toolbar for new GAction-using toolbar buttons

M	data/org.gnome.EasyTAG.gresource.xml
A	data/toolbar.ui
M	po/POTFILES.in
M	src/application_window.c

commit aefd6df28edae8a17228db8916321dc6670294e4
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 13 09:15:58 2014 +0100

    Use GAction for miscellaneous menu items

    Move action state update function to EtApplicationWindow.

M	data/menus.ui
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/scan_dialog.c
M	src/ui_manager.h

commit eb3749f03f93af0ca6c205fdfd49c37d9de2386b
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 13 00:01:35 2014 +0100

    Use GAction for go-directory actions

M	data/menus.ui
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/browser.h
M	src/ui_manager.h

commit 0dda78be6afe9c2230d70eebaec9fe6df7dc66a6
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 12 23:37:08 2014 +0100

    Add skeleton menubar from GtkBuilder file

    The menu items are still not linked to actions, so do nothing when
    clicked.

M	data/menus.ui
M	src/application.c

commit 8bad3a54238690fe4019bc495dc68cb39e31bf49
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 12 22:31:04 2014 +0100

    Add an app menu

    Install application-wide actions for help, about and quit. Load
    the app
    menu from a resource.

M	.gitignore
M	Makefile.am
M	README
M	TODO
M	configure.ac
A	data/menus.ui
A	data/org.gnome.EasyTAG.gresource.xml
M	po/POTFILES.in
M	src/application.c
M	src/bar.c
M	src/bar.h
M	src/misc.c
M	src/misc.h
M	src/ui_manager.h

commit 9ad562ab85cf6a43dc759c9600a23ba9de09519f
Author: David King <amigadave@amigadave.com>
Date:	Wed Jul 9 16:52:18 2014 +0100

    Fix some const string warnings

    Found with -Wwrite-strings and -Wcast-qual.

M	nautilus-extension/nautilus-easytag.c
M	src/cddb_dialog.c
M	src/charset.c
M	src/et_core.c
M	src/et_core.h
M	src/flac_tag.c
M	src/genres.h
M	src/id3_tag.c
M	src/id3_tag.h
M	src/id3v24_tag.c
M	src/libapetag/apetaglib.c
M	src/libapetag/apetaglib.h
M	src/picture.c
M	src/scan_dialog.c
M	src/search_dialog.c
M	src/vcedit.c

commit ea136c0a0d604fc2d9356417fa1fbb5c44f1cd5a
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 5 22:51:39 2014 +0100

    Remove main configuration file handling

    All user pereferences are now stored in GSettings. Mask lists
    and combo
    box histories are still stored in files.

M	TODO
M	data/org.gnome.EasyTAG.gschema.xml
M	src/easytag.c
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/setting.c
M	src/setting.h

commit 5526c15d83f189811805bb1b473389c73b5f0f6c
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 5 22:35:38 2014 +0100

    Launch default audio player for selected files

M	src/browser.c
M	src/misc.c
M	src/misc.h

commit 71865be60a9f3c3fed389b1f1930860dd8c131e5
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 5 22:29:04 2014 +0100

    Launch default audio player for directory

    Use GAppInfo to discover the default player for the content type
    of the
    first file in the list, and play the files in the directory using that
    player.

M	src/misc.c

commit bc6966ab68c277f4d8152a5909b9209075f5fc09
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 29 14:52:54 2014 +0100

    Store default scanner masks in GSettings

M	src/scan_dialog.c
M	src/setting.c
M	src/setting.h

commit aa3daba3530d87cfe076c3fe1622e753c4b908ac
Author: David King <amigadave@amigadave.com>
Date:	Sat Jun 28 19:11:38 2014 +0100

    Remove local CDDB search function

    It is very unlikely that people have a local copy of the CDDB, and the
    settings code for this would be rather awkward.

M	README
M	data/org.gnome.EasyTAG.gschema.xml
M	src/browser.c
M	src/cddb_dialog.c
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/setting.c
M	src/setting.h

commit 1333c077bde99041450b161d29eb4f78d2f6fb23
Author: David King <amigadave@amigadave.com>
Date:	Sat Jun 28 17:33:14 2014 +0100

    Store playlist mask preferences in GSettings

M	src/application_window.c
M	src/application_window.h
M	src/playlist_dialog.c
M	src/playlist_dialog.h
M	src/setting.c
M	src/setting.h

commit 30f87f95264178603dbaf4e5f3492b62c160c7cf
Author: David King <amigadave@amigadave.com>
Date:	Sat Jun 21 12:15:18 2014 +0100

    Store character set preferences in GSettings

M	data/org.gnome.EasyTAG.gschema.xml
M	src/charset.c
M	src/charset.h
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/setting.c
M	src/setting.h

commit f475d5cfe21aafc3c5daf679dc36f0469dbf7147
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 15 16:35:20 2014 -0400

    Store process fields conversions in GSettings

M	data/org.gnome.EasyTAG.gschema.xml
M	src/scan_dialog.c
M	src/setting.c
M	src/setting.h

commit 6d475c8cb1d14b62258e9189273e874660423899
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 15 08:40:40 2014 -0400

    Store CDDB search preferences in GSettings

M	data/org.gnome.EasyTAG.gschema.xml
M	src/cddb_dialog.c
M	src/scan_dialog.c
M	src/setting.c
M	src/setting.h

commit 377d9cfc63d3d74ead88cffe5874b0ab98083b19
Author: David King <amigadave@amigadave.com>
Date:	Sat May 10 20:49:46 2014 +0100

    Store case sensitive sorting mode in GSettings

M	src/cddb_dialog.c
M	src/et_core.c
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/setting.c
M	src/setting.h

commit bb1e71032bd6e8233054e32fbf3ff1e4b671d32e
Author: David King <amigadave@amigadave.com>
Date:	Sat May 10 18:01:09 2014 +0100

    Store scan space conversion options in GSettings

M	data/org.gnome.EasyTAG.gschema.xml
M	src/playlist_dialog.c
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/scan_dialog.c
M	src/setting.c
M	src/setting.h

commit ac46a46cc4a36299ec37e5f24b4e6c85c64cc3a5
Author: David King <amigadave@amigadave.com>
Date:	Fri May 9 21:28:28 2014 +0100

    Store ID3v2.4/2.3 preference in GSettings

M	src/application_window.c
M	src/browser.c
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/setting.c
M	src/setting.h

commit 8f648daa84ca90e838e9250d1000486c023ede20
Author: David King <amigadave@amigadave.com>
Date:	Fri May 9 21:18:26 2014 +0100

    Store disc padding preferences in GSettings

M	data/org.gnome.EasyTAG.gschema.xml
M	src/misc.c
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/setting.c
M	src/setting.h

commit a8ccfd418bc934cec81ff150eaba4cf3970079fc
Author: David King <amigadave@amigadave.com>
Date:	Fri May 9 20:49:27 2014 +0100

    Store the process fields option in GSettings

M	data/org.gnome.EasyTAG.gschema.xml
M	src/scan_dialog.c
M	src/setting.c
M	src/setting.h

commit f0270a6923f1e3754031c285f517118e66286b5f
Author: David King <amigadave@amigadave.com>
Date:	Fri May 9 19:12:52 2014 +0100

    Store rename filename encoding in GSettings

M	data/org.gnome.EasyTAG.gschema.xml
M	src/charset.c
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/setting.c
M	src/setting.h

commit 02b5318650aff43f6bf83ee3cfde503e175093f5
Author: David King <amigadave@amigadave.com>
Date:	Fri May 9 18:57:54 2014 +0100

    Store ID3v1 and ID3v2 iconv options in GSettings

M	data/org.gnome.EasyTAG.gschema.xml
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/setting.c
M	src/setting.h

commit 469140e2417e1734e08ae4ee30878dc6f1a24da7
Author: David King <amigadave@amigadave.com>
Date:	Fri May 9 18:28:14 2014 +0100

    Store the playlist content mode in GSettings

M	data/org.gnome.EasyTAG.gschema.xml
M	src/playlist_dialog.c
M	src/playlist_dialog.h
M	src/setting.c
M	src/setting.h

commit fc3c397a342d38d4f74a112394c66345421daf5d
Author: David King <amigadave@amigadave.com>
Date:	Fri May 9 09:12:37 2014 +0100

    Store the file extension case mode in GSettings

M	data/org.gnome.EasyTAG.gschema.xml
M	src/et_core.c
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/setting.c
M	src/setting.h

commit 37555fc8c2c19f975adbd41e5aaf3c80a42f4340
Author: David King <amigadave@amigadave.com>
Date:	Thu May 8 23:18:31 2014 +0100

    Store the scanner window mode in GSettings

M	data/org.gnome.EasyTAG.gschema.xml
M	src/application_window.c
M	src/bar.c
M	src/scan_dialog.c
M	src/scan_dialog.h
M	src/setting.c
M	src/setting.h

commit 7470a291a406d70cd472dbdd5254ff25ccf8c0a7
Author: David King <amigadave@amigadave.com>
Date:	Thu May 8 08:26:21 2014 +0100

    Store the file list sorting mode in GSettings

M	Makefile.am
M	data/org.gnome.EasyTAG.gschema.xml
M	src/application_window.c
M	src/bar.c
M	src/browser.c
M	src/et_core.c
M	src/et_core.h
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/setting.c
M	src/setting.h

commit af6793e0b2a8332ad9cfe23f71becc93370637ee
Author: David King <amigadave@amigadave.com>
Date:	Tue Mar 26 10:46:15 2013 +0000

    Generate GSettings enum descriptions

M	.gitignore
M	Makefile.am

commit 7418209c1cf136ece89635dcc011e81c9bfcb872
Author: David King <amigadave@amigadave.com>
Date:	Sun Mar 24 19:49:29 2013 +0000

    Generate enum descriptions with glib-mkenums

M	.gitignore
M	Makefile.am
M	configure.ac

commit 528ff19b95f9dae7bbae71052c1d80166b96f400
Author: David King <amigadave@amigadave.com>
Date:	Wed May 7 23:22:12 2014 +0100

    Use GSettings for most application settings

M	README
M	src/application_window.c
M	src/bar.c
M	src/browser.c
M	src/cddb_dialog.c
M	src/easytag.c
M	src/et_core.c
M	src/flac_tag.c
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/load_files_dialog.c
M	src/load_files_dialog.h
M	src/log.c
M	src/misc.c
M	src/ogg_tag.c
M	src/playlist_dialog.c
M	src/preferences_dialog.c
M	src/preferences_dialog.h
M	src/scan_dialog.c
M	src/search_dialog.c
M	src/setting.c
M	src/setting.h

commit b42a637b02f85d5ebcc4d97880ce7f52ca7fb2fb
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 16 22:52:59 2013 +0000

    Add GSettings schema

    Leave the keys that depend on enums and flags commented for now,
    as the
    enum values need to be generated with glib-mkenums.

M	.gitignore
M	Makefile.am
M	configure.ac
A	data/org.gnome.EasyTAG.gschema.xml
M	po/POTFILES.in

commit 8f9e6db84f2a934ee577e7518503cf725fdafd98
Author: Santtu Lakkala <inz@inz.fi>
Date:	Thu Apr 24 08:48:52 2014 +0300

    Avoid a GtkApplication assertion

    Realizaing an application window during construction triggers an
    assertion with older versions of GTK+, and a warning with newer
    ones, so
    only show the window after it has been associated with the
    application.

M	src/application_window.c
M	src/easytag.c

commit 7483788b155b50dc4ba5ff84f3a8d3647213a248
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 12 23:06:30 2014 +0000

    Move browser to EtBrowser object

M	TODO
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/browser.c
M	src/browser.h
M	src/cddb_dialog.c
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/load_files_dialog.c
M	src/misc.c
M	src/misc.h
M	src/playlist_dialog.c
M	src/scan_dialog.c
M	src/scan_dialog.h
M	src/search_dialog.c
M	src/setting.c

commit 0086beb5fc89026469f2c775984e75dd270c73fd
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 20 21:08:13 2014 +0000

    Set a rough initial window size and pane positions

M	src/application_window.c
M	src/browser.c

commit 97f7b0824b837458fe7061c6882cb6fe8364a287
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 5 22:08:21 2014 +0000

    Move file selection actions to EtApplicationWindow

M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/easytag.c
M	src/easytag.h

commit 3c4b5591369f3259458a82d3a66849389fb28694
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 5 21:49:55 2014 +0000

    Move select and unselect actions to main window

M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/browser.c
M	src/easytag.c
M	src/easytag.h

commit f2099fd2ba459522c3961c0c0e032e3340020187
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 4 15:34:45 2014 +0000

    Replace strncat() with g_string_append()

M	src/cddb_dialog.c

commit 5e019e0c3b5a41097ee52601748c8ca573415bb0
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 29 23:15:26 2013 +0000

    Move scan dialog to EtScanDialog object

M	TODO
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/browser.c
M	src/cddb_dialog.c
M	src/easytag.c
M	src/easytag.h
M	src/load_files_dialog.c
M	src/misc.c
M	src/playlist_dialog.c
M	src/preferences_dialog.c
M	src/scan.h
M	src/scan_dialog.c
M	src/scan_dialog.h
M	src/search_dialog.c
M	src/setting.c
M	src/setting.h

commit f21de23ab08aa4b77ab3ee6cda44abeea4ab226e
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 29 16:41:51 2013 +0000

    Move CDDB dialog to EtCDDBDialog object

M	Makefile.am
M	po/POTFILES.in
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
R062	src/cddb.c	src/cddb_dialog.c
R053	src/cddb.h	src/cddb_dialog.h
M	src/easytag.c
M	src/preferences_dialog.c
M	src/setting.c
M	src/setting.h

commit ca54f878fa0c72e305a4bb45599db9521e9d1211
Author: David King <amigadave@amigadave.com>
Date:	Sat Dec 28 13:02:10 2013 +0000

    Move preferences dialog to EtPreferencesDialog

M	Makefile.am
M	po/POTFILES.in
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/easytag.c
M	src/misc.c
R090	src/prefs.c	src/preferences_dialog.c
R068	src/prefs.h	src/preferences_dialog.h
M	src/scan_dialog.c
M	src/setting.c

commit 393ac7d534e0f88d740882618b7fea11787d5ce9
Author: David King <amigadave@amigadave.com>
Date:	Sat Dec 28 01:31:11 2013 +0000

    Move file search dialog to EtSearchDialog object

M	Makefile.am
M	po/POTFILES.in
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/misc.c
M	src/misc.h
C050	src/misc.c	src/search_dialog.c
A	src/search_dialog.h
M	src/setting.c
M	src/setting.h

commit 02a468858418f65113cb627307f362c8fcf5eb34
Author: David King <amigadave@amigadave.com>
Date:	Fri Dec 27 23:54:21 2013 +0000

    Move load filenames dialog to EtLoadFilesDialog

M	Makefile.am
M	po/POTFILES.in
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
A	src/load_files_dialog.c
A	src/load_files_dialog.h
M	src/misc.c
M	src/misc.h
M	src/setting.c
M	src/setting.h

commit 092f7f866fba22b43b6b58fd7aa7edebb3a02aed
Author: David King <amigadave@amigadave.com>
Date:	Fri Dec 27 19:56:40 2013 +0000

    Move playlist window to EtPlaylistDialog object

M	Makefile.am
M	po/POTFILES.in
M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/misc.c
M	src/misc.h
A	src/playlist_dialog.c
A	src/playlist_dialog.h
M	src/setting.c
M	src/setting.h

commit d3e0bc946da79f320164b18618fb8a1aefa74a03
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 4 22:27:57 2013 +0000

    Move log area to EtLogArea object

M	src/application_window.c
M	src/application_window.h
M	src/bar.c
M	src/easytag.c
M	src/log.c
M	src/log.h

commit bbdcd0f5c7eba65b26cc8c8c0fce4cbe1a363139
Author: David King <amigadave@amigadave.com>
Date:	Fri Dec 27 18:32:49 2013 +0000

    Pass the main window to actions as user data

M	src/bar.c

commit 1210ec5650561895d2c702fd43dc949b6f82c706
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 2 21:33:18 2013 +0000

    Move main window to EtApplicationWindow object

M	Makefile.am
M	po/POTFILES.in
M	src/application.h
A	src/application_window.c
A	src/application_window.h
M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/setting.c
M	src/setting.h

commit fa6c4f6058c72afd9dabbb78bf0e10ad212b7b53
Author: Marek Černocký <marek@manet.cz>
Date:	Tue Aug 26 09:30:07 2014 +0200

    Fixed format specifiers order

M	help/C/scanner.page

commit a9bd9d5bcb16c775bcb998b4ea1258a2cd6c2009
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 9 19:57:09 2014 +0100

    Fix format specifier in GIO C++ wrapper string

M	src/gio_wrapper.cc

commit 71bfad9d9ba587ee13141f9c695367ac98011e84
Author: David King <amigadave@amigadave.com>
Date:	Fri Aug 15 18:45:57 2014 +0100

    Use updated license tags in AppData

M	data/easytag.appdata.xml.in

commit 229ab9c33e732d18424de42c3ff8ea6dec66778e
Author: David King <amigadave@amigadave.com>
Date:	Wed Jul 30 14:41:49 2014 +0200

    Fix delays when clearing the CDDB models

    Avoid accessing deleted rows in the tree view selection changed
    handlers, by blocking the handlers when clearing the
    models. Otherwise,
    each release in the list of search results being deleted would be
    fetched from the server and then immediately discarded.

M	src/cddb.c

commit a9a575e4b6c23c1e575132e4ac566698d979e22b
Author: David King <amigadave@amigadave.com>
Date:	Sun Aug 10 12:32:43 2014 +0100

    Fix scanner help for renaming files

M	help/C/file-rename.page

commit aafa2f280cd38621835c8919315d07165639a0db
Author: David King <amigadave@amigadave.com>
Date:	Fri Aug 1 17:34:24 2014 +0100

    Provide a useful error when failing to write files

    Pass an error back from ET_Save_File_Tag_To_HD() to ensure that
    a useful
    error message is presented to the user. Provide a sane fallback if the
    tag writing function does not provide a GError API (currently all
    non-Ogg formats).

    https://bugzilla.gnome.org/show_bug.cgi?id=733929

M	src/easytag.c
M	src/et_core.c
M	src/et_core.h

commit 1ae7485be4a6a5d8139e58e42f3a31932c3b0885
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Thu Jul 31 05:24:47 2014 +0200

    doap: add app category to pass the validation

M	easytag.doap

commit 9295b8f6f91e08b707405ad1ef2877be4e6b0756
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Thu Jul 31 05:21:30 2014 +0200

    doap: fix duplicate <programming-language>

M	easytag.doap

commit ef9c43474c36c7660e67420bba514559bf7163a3
Author: David King <amigadave@amigadave.com>
Date:	Wed Jul 30 11:58:38 2014 +0200

    Fix crash when reloading the directory tree

    As the directory is cleared during reloading, the selection changes
    and
    this leads to a crash when a directory in the tree is deleted
    outside of
    EasyTAG. Avoid the changed signal being emitted by clearing the
    directory tree only when the signal is blocked.

    https://bugzilla.redhat.com/show_bug.cgi?id=1121142

M	src/browser.c

commit 31e4167e9aab1229cf7b2ec6e9352232b1a84be7
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 19 21:09:57 2014 +0100

    Fix return type of init idle handler

    The return type of a GSourceFunc is a gboolean.

M	src/easytag.c

commit 9956e8ee78638e5be289ee34418f69f3eef8f96e
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 13 21:42:19 2014 +0100

    Remove last uses of GdkColor, use GdkRGBA instead

M	src/browser.c
M	src/cddb.c

commit 43d6740afba208b3e9687055ee9031347aef44c3
Author: David King <amigadave@amigadave.com>
Date:	Wed Jul 9 15:47:57 2014 +0100

    Fix Spanish help translation

M	help/es/es.po

commit 0a91ff23ba5b30d42b9ab19a8767a12265f4cb39
Author: Daniel Mustieles <dnaiel.mustieles@gmail.com>
Date:	Tue Jul 8 17:47:48 2014 +0200

    Updated Spanish translation

M	help/es/es.po

commit ef139130cb7aa9ec0e1e4c547e8e1d3c18a12612
Author: David King <amigadave@amigadave.com>
Date:	Fri Jul 4 21:59:18 2014 +0100

    Avoid use of deprecated foreground-gdk property

    Use new foreground-rgba property instead.

M	src/browser.c
M	src/cddb.c
M	src/et_core.c
M	src/et_core.h
M	src/misc.c

commit 16ed7412860957a5bfbcda7a6a1593465dbeb7a8
Author: David King <amigadave@amigadave.com>
Date:	Fri Jul 4 21:39:43 2014 +0100

    Avoid use of deprecated background-gdk property

    Use new background-rgba property instead.

M	src/browser.c
M	src/et_core.c
M	src/et_core.h

commit 186360c1e3b507c6381115b90d4eb6ce97c2d6e1
Author: David King <amigadave@amigadave.com>
Date:	Fri Jul 4 16:33:32 2014 +0100

    Remove unused columns from log model

    The foreground and background were never set to anything other
    than the
    default.

M	src/log.c

commit 1db350b3ab9d64cbefef822cd6d1faf7b21ac452
Author: David King <amigadave@amigadave.com>
Date:	Fri Jul 4 16:32:24 2014 +0100

    Remove unused GdkColor definitions

M	src/et_core.c
M	src/et_core.h

commit 1c3316fc22dea1f460650cfa4701736814b905de
Author: David King <amigadave@amigadave.com>
Date:	Fri Jun 27 21:57:53 2014 +0100

    Update SOURCES as all MingW packages are in Fedora

M	SOURCES

commit cfc015270b8750f12cf7bbff11acf9145053bed9
Author: Balázs Úr <urbalazs@src.gnome.org>
Date:	Mon Jun 30 22:23:30 2014 +0200

    Updated Hungarian translation

M	po/hu.po

commit 787e4b2e65f56918c6f0ea5584c366fa73e7dc76
Author: genodeftest <gnomel10n@genodeftest.de>
Date:	Sun Jun 29 20:10:38 2014 +0000

    Updated German translation

M	po/de.po

commit 8b0617b8fdb8109fb99866cba0c0c3a0f5d5bf53
Author: Marek Černocký <marek@manet.cz>
Date:	Wed Jun 25 11:32:07 2014 +0200

    Updated Czech translation

M	po/cs.po

commit 7cfd7716b3582450b4f020e3dd602ab1688ec36e
Author: David King <amigadave@amigadave.com>
Date:	Thu Jun 12 12:31:03 2014 +0100

    Update NEWS for future 2.3.1 release

M	NEWS
M	configure.ac

commit dd71f05ffc398def4c8998ec8075ee806c9986f7
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 22 14:58:53 2014 +0100

    Run glib-compile-schemas during Windows install

    The GTK+ file chooser depends on a GSettings schema, which must be
    installed and compiled.

M	easytag-win32-installer.nsi.in

commit 0d65c5a4599e57d70eec8cbd0f22d93f7cac8929
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 22 14:27:28 2014 +0100

    Add Korean to Windows installed locales

M	easytag-win32-installer.nsi.in

commit 4c4d312ebd32832a24133893eff41ee46f6ca603
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Fri Jun 20 02:20:33 2014 +0200

    Avoid assertion in Action_Select_Browser_Style()

    When changing to artist/album view the browser list gets cleared.
    While
    clearing, GTK+ emits a changed signal for each row, and
    Browser_List_Row_Selected() gets triggered, unfortunately with a row
    where the backing file list has already been freed.

    Added a function which clears the list and stops emissions of
    Browser_List_Row_Selected() while clearing.

M	src/browser.c
M	src/browser.h
M	src/et_core.c

commit 8ca5776f4517de59cf4cea9cc1e6a55b3985058a
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Fri Jun 6 23:10:42 2014 +0100

    Fixed a album/artist view memory leak

    In artist/album view the album list store contains a row for a
    collection of all albums for an artist - the "<All Albums>" row. The
    attached GList was not freed.

    Add a column with a boolean value to the model to be able to identify
    this row, as a simple string comparison seems unsafe.

M	src/browser.c
M	src/browser.h

commit 2e244aa3ec3ca6ad39fa88e297f2eb5743ecacf7
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Mon May 26 17:00:59 2014 +0200

    Fixed a few crashes because of dangling pointers

    The two list stores from the artist/album view contain pointers to the
    list in ETCore->ETArtistAlbumFileList. When the complete list
    was freed,
    the GUI still used the pointers in the list stores and crashed.

    I saw segmentation faults while toggling between artist/album and
    directory view and furthermore while shutting down EasyTAG.

M	src/browser.c
M	src/browser.h
M	src/et_core.c

commit 3a969918db8cff0a3cefa1195fbd2f79eb4467d2
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Thu Jun 19 16:48:26 2014 +0200

    Updated Polish translation

M	po/pl.po

commit 34e9d3238ff0d2481c2e2324c576ec019bfbca0f
Author: Daniel Mustieles <dnaiel.mustieles@gmail.com>
Date:	Tue Jun 17 19:41:55 2014 +0200

    Updated Spanish Translation

M	help/Makefile.am
A	help/es/es.po

commit 3d6506bb43922a01141b793d87c5fe3f0fc98aab
Author: Daniel Mustieles <dnaiel.mustieles@gmail.com>
Date:	Tue Jun 17 19:20:04 2014 +0200

    Updated Spanish translation

M	po/es.po

commit 4ffd740dcbcac16d3e814d5609446d81d608986c
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:	Mon Jun 16 13:21:07 2014 +0000

    Updated Brazilian Portuguese translation

M	po/pt_BR.po

commit 8722f83eb5212835a912df9b3c868990a459745f
Author: Tom Tryfonidis <tomtryf@gmail.com>
Date:	Fri Jun 13 12:41:58 2014 +0000

    Updated Greek translation

M	po/el.po

commit 25807e575343f117b5fff4824467ff1f2bf6c376
Author: David King <amigadave@amigadave.com>
Date:	Wed Jun 11 22:00:01 2014 +0100

    Update British English translation

M	po/en_GB.po

commit 19fbfca6f7b01d8ccf0c49aea31c0c09ec4b3122
Author: David King <amigadave@amigadave.com>
Date:	Wed Jun 11 20:06:08 2014 +0100

    Add generated help translations to .gitignore

M	.gitignore

commit 9dbe534dd0599ede2bd4a2a27d0add8fb404ac2b
Author: David King <amigadave@amigadave.com>
Date:	Wed Jun 11 20:01:55 2014 +0100

    Initialize gettext in Nautilus extension startup

M	nautilus-extension/nautilus-easytag.c

commit 0b38bdc30c4cd8ece99d4893d63b60dfcc3e204e
Author: David King <amigadave@amigadave.com>
Date:	Wed Jun 11 19:56:54 2014 +0100

    Use type definition macro for Nautilus extension

    Use G_DEFINE_DYNAMIC_TYPE_EXTENDED for the Nautilus extension,
    and move
    all the code into a single file as a consequence.

M	Makefile.am
D	nautilus-extension/easytag-module.c
M	nautilus-extension/nautilus-easytag.c
D	nautilus-extension/nautilus-easytag.h

commit 16ec19b447e661e333a73b1797118619ae11923f
Author: David King <amigadave@amigadave.com>
Date:	Wed Jun 11 18:25:20 2014 +0100

    Minor improvements to the Nautilus extension

    Document the requirements for the extension in the README. Add a
    COPYING.GPL3, as including the license is a requirement. Update
    .gitignore for new files.

M	.gitignore
A	COPYING.GPL3
M	Makefile.am
M	README

commit 145685dbdc6c5ab6654600b908c272a3829863bb
Author: Victor A. Santos <victoraur.santos@gmail.com>
Date:	Wed Jun 11 13:01:56 2014 -0300

    Add Nautilus actions extension

    Include a context menu item for opening directories, and one for
    opening
    supported files, in a Nautilus extension.

    https://bugzilla.gnome.org/show_bug.cgi?id=731493

M	Makefile.am
M	configure.ac
A	nautilus-extension/easytag-module.c
A	nautilus-extension/nautilus-easytag.c
A	nautilus-extension/nautilus-easytag.h
M	po/POTFILES.in

commit 03b67ff6523cb3a5c39443ac62f1f0d224a669c5
Author: David King <amigadave@amigadave.com>
Date:	Sat Jun 7 11:18:58 2014 +0100

    Correctly restore disabled process fields options

    https://bugzilla.gnome.org/show_bug.cgi?id=730573

M	src/scan_dialog.c

commit 311de7ef375a9a8542018be8694deb6334e31ac6
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Mon May 26 18:22:12 2014 +0200

    Refactor Browser_List_Refresh_File_In_List()

    Simplify iterations over the tree model.

M	src/browser.c

commit 45538c78fec6a48585b7f0183f902ff57f4fd0ff
Author: Brad Erickson <eosrei@gmail.com>
Date:	Mon May 26 00:08:49 2014 +0800

    Add .m4v as a supported extension for MP4 tags

    https://bugzilla.gnome.org/show_bug.cgi?id=730421

M	src/et_core.c
M	src/et_core.h

commit 4bfe75daa174c6211e9f01e72c6d06c2051a2db2
Author: David King <amigadave@amigadave.com>
Date:	Sun May 18 14:24:45 2014 +0100

    Avoid a crash when browsing hidden directories

    If viewing hidden directories is disabled, EasyTAG will fail to find a
    hidden path in the directory model, and will crash when trying to
    retrieve the full path from the model. Avoid this by returning early
    from Browser_Tree_Select_Dir().

    https://bugzilla.gnome.org/show_bug.cgi?id=730326

M	src/browser.c

commit eb35be3db766ab55b95a1c74c9011a9e50c60c9c
Author: Changwoo Ryu <cwryu@debian.org>
Date:	Sun May 18 08:15:51 2014 +0900

    Add Korean to the translation list

M	po/LINGUAS

commit d7d1e95e1830bdfb4afd4b86ab39afefc77cf10d
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date:	Sun May 18 08:14:39 2014 +0900

    Added Korean translation

A	po/ko.po

commit 986b8f5a54fa6b83be29e2d27e85a0ddd4dbf270
Author: David King <amigadave@amigadave.com>
Date:	Fri May 9 17:21:13 2014 +0100

    Update translation list for Windows installer

M	easytag-win32-installer.nsi.in

commit 95c31f5f2d517ce41987e5d3805f9d2dc3d2dcad
Author: David King <amigadave@amigadave.com>
Date:	Fri May 9 16:34:00 2014 +0100

    Fix broken check for id3lib UTF-16 bug

    https://bugzilla.gnome.org/show_bug.cgi?id=729328

M	src/id3_tag.c

commit 130296b3ec381439b06691d226d1d1388661dd29
Author: David King <amigadave@amigadave.com>
Date:	Mon May 5 18:56:34 2014 +0100

    Read extended Winamp 5.6 genres stored as integers

    As libid3tag has not been updated in some time, the genre list
    is rather
    out of date. If an integer genre is found, and libid3tag does not find
    it in the index, try the EasyTAG index as a fallback.

M	src/id3v24_tag.c

commit 027fd46e997a1ed9a3b44f54b97e95e567319ae9
Author: David King <amigadave@amigadave.com>
Date:	Mon May 5 18:29:47 2014 +0100

    Update ID3v1 genre list

    https://bugzilla.gnome.org/show_bug.cgi?id=729036

M	src/genres.h

commit 1d74ec2ed1b51aa69e7cfc2f6c5e69e51a67f2fe
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Mon May 5 10:39:14 2014 +0100

    Refactor libid3tag_Get_Frame_Str() and fix leak

M	src/id3v24_tag.c

commit 5234d4a07cc091cecd8c8c7383db66ed914b924d
Author: Dimitris Spingos <dmtrs32@gmail.com>
Date:	Mon May 5 07:31:47 2014 +0300

    Added Greek translation of help

M	help/Makefile.am
A	help/el/el.po

commit 0dc1d66d4035830537d55606e257511009e5083f
Author: David King <amigadave@amigadave.com>
Date:	Sun May 4 10:32:03 2014 +0100

    Fix memory leak when reading Ogg disc number field

M	src/ogg_tag.c

commit 7542ad103a7280d783de5379f9214d61472e92f9
Author: David King <amigadave@amigadave.com>
Date:	Sun May 4 09:59:10 2014 +0100

    Avoid crash when saving Ogg file with cover art

    https://bugzilla.gnome.org/show_bug.cgi?id=729443

M	src/ogg_tag.c

commit ce47170805528bf6db7c5f102f91b9549d96da1f
Author: Marek Černocký <marek@manet.cz>
Date:	Sat Apr 26 14:12:10 2014 +0200

    Updated Czech translation

M	po/cs.po

commit 70d02c0e9ff7d6c67cb95bbe66ce801d09d9b995
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 26 08:57:24 2014 +0100

    Revert asyncronous loading and saving of images

    This reverts commit f77f63eb9ce7cf8b58bbc2251f2ef32c9352d6f4 and
    f432ebd26c9bf5fc060eecb0c90635ca4acd3abd.

    https://bugzilla.redhat.com/show_bug.cgi?id=1091577

M	src/picture.c

commit 501b11256e7d8e4146d65a15c1040cc43db7eb59
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 26 09:19:26 2014 +0100

    Allow input focus to escape the tag area

    Do not create a focus loop in the tag area, and instead allow the user
    to tab out of the area.

M	src/easytag.c

commit cf47915b455c1eb6b102173a8cdb4e84b08dadf1
Author: kipw <kip@thevertigo.com>
Date:	Fri Apr 25 15:10:38 2014 -0700

    configure.ac: Bump version to 2.2.1...
    NEWS: Added 2.2.1 changes since 2.2.0...

M	NEWS
M	configure.ac

commit 13625dce72a52b63d35c94b3b22ebec4ec691787
Author: David King <amigadave@amigadave.com>
Date:	Wed Apr 23 12:52:16 2014 +0100

    Fix loading filenames from a text file

    When the code to read a list of filenames from a text file was
    ported to
    use GFile and GIO, it read the whole file as one entry and did
    not split
    the filenames by line. Use GDataInputStream to read per-line as
    before.

M	src/misc.c

commit ea53ac5940690e5c2d4823970e43049ab9508aae
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 22 19:36:37 2014 +0100

    Revert "Refactor Scan_Convert_P20_Into_Space()"

    This reverts commit 553ba87d0311e4e4c64f2321b5aa654df0c4ae29.

    The above commit added a call to strcpy(), with arguments that
    overlapped. The behaviour of such a call is undefined, and can lead to
    test failures.

    https://bugzilla.gnome.org/show_bug.cgi?id=728743

M	src/scan.c

commit c234480f4f217125f329ec2d4553b3ace9335351
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 22 17:03:10 2014 +0100

    Add Opus and Speex MIME types to desktop file

M	data/easytag.desktop.in

commit b596895a33618f00a6fa193f8eebde39cdcff844
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 22 15:49:21 2014 +0100

    Remove a problematic debug string

M	src/gio_wrapper.cc

commit 4a22b73c4bee9ff40059b875220c6d69254a508e
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 22 15:37:13 2014 +0100

    Fix conversion specifier in debug string

M	src/gio_wrapper.cc

commit 043fc69516b69fa646a1251d512d0cb1352a1154
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Mon Apr 21 23:44:48 2014 +0100

    Add HELP_LINGUAS to the help Makefile

M	help/Makefile.am

commit 54d3d8bf993e48018f79c9c23d6b23d4bbcd504b
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 21 17:14:05 2014 +0100

    Remove a useless debugging message

M	src/picture.c

commit 9cfb3edb17a459c3612f51c635185aad0bc092b0
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 21 16:18:12 2014 +0100

    Fix compilation if Ogg support is not available

    Add some ifdefs to check whether ENABLE_OGG is defined. Remove
    leftover
    prototype in WavPack tag code.

M	src/ogg_tag.h
M	src/vcedit.h
M	src/wavpack_tag.c

commit e3393bb9a4889e9bfe56f7ba07b5e58ef4b487ad
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 20 23:10:35 2014 +0100

    Handle images with a reported size of zero

    If a zero-byte file was encountered, such as when reading from a HTTP
    server which does not report file sizes, a zero-byte buffer was
    allocated and passed to g_input_stream_read_all(), triggering
    an assert
    in the image loading code.

    Avoid the problem by treating a non-zero file size as an optimisation,
    allocating a buffer for the input file if the size is available, and
    splicing the file input stream to a GMemoryOutputStream.

    https://bugzilla.gnome.org/show_bug.cgi?id=728602
    https://retrace.fedoraproject.org/faf/problems/1662964/

M	src/picture.c

commit 196d4f18e228d1300910d56cdda162a150ffeea8
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 19 10:29:44 2014 +0100

    Fix automatic numbering of last track in view

    https://bugzilla.gnome.org/show_bug.cgi?id=728548

M	src/easytag.c

commit 0ff9da52c747e848a7c323c2e7a585386614f69d
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 19 10:16:08 2014 +0100

    Avoid a use-after-free when caplitalizing words

    https://bugzilla.gnome.org/show_bug.cgi?id=728533

M	src/easytag.c
M	src/scan_dialog.c
M	src/scan_dialog.h

commit 12afb792cf1ff5b5f0ed094867b78836edaa22d4
Author: David King <amigadave@amigadave.com>
Date:	Thu Apr 17 23:15:07 2014 +0100

    Add missing break in switch

    Found with Coverity (CID 1163345)

M	src/prefs.c

commit f2871ad88af1ba9ff006c6fd9471ad6841e4e182
Author: David King <amigadave@amigadave.com>
Date:	Thu Apr 17 22:42:04 2014 +0100

    Remove unused code when reading MP4 header

    Found with Coverity (CID 1203406)

M	src/mp4_header.cc

commit dd99ec94f5d46e433cf785ba5bfc849dd0987f78
Author: David King <amigadave@amigadave.com>
Date:	Thu Apr 17 22:01:43 2014 +0100

    Refactor GIO error checking in C++ wrapper

    Check the return value of g_output_stream_write_all().

    Found with Coverity (CID 1203401, CID 1203402 and CID 1203403)

M	src/gio_wrapper.cc

commit b8e9808c256b60b22f202c97007e04b6682771c9
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 15 20:39:45 2014 +0100

    Port from GApplication to GtkApplication

M	src/application.c
M	src/application.h
M	src/easytag.c

commit 77d6aeb33ca4697602a39fc6f1c7ad1c9d51851d
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 15 14:43:40 2014 +0100

    Document libid3tag requirement in README

M	README

commit 858a1ec356b8574cf79279ae6f38a497ffb4411c
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Tue Apr 15 14:15:23 2014 +0200

    Updated Spanish translation

M	po/es.po

commit 73efd41d8d4d2f9bc77d799418a1152283c92fab
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:	Mon Apr 14 23:05:58 2014 +0000

    Updated Brazilian Portuguese translation

M	po/pt_BR.po

commit 5b8b65d47c1dd2b8f589f68492d7ee3b08161c71
Author: Roman Bogorodskiy <bogorodskiy@gmail.com>
Date:	Mon Apr 14 12:00:24 2014 +0100

    Fix C++ ID3 wrapper compilation

    https://bugzilla.gnome.org/show_bug.cgi?id=728113

M	src/id3lib/c_wrapper.cpp

commit 93201c3d62ee423af712c36085a8e314a0fcd960
Author: Santtu Lakkala <inz@inz.fi>
Date:	Mon Apr 14 11:17:59 2014 +0300

    Drop sizeof when using G_N_ELEMENTS

    The refactorization left extraneous sizeof when changing to
    G_N_ELEMENTS.

M	src/gio_wrapper.cc

commit 58b4f1e9a352fe2c870986fadd802d033f7a1f2f
Author: Aurimas Černius <aurisc4@gmail.com>
Date:	Sun Apr 13 23:09:25 2014 +0300

    Updated Lithuanian translation

M	po/lt.po

commit b9b8824e56f14681afba97cb8c215009e5491a3f
Author: Balázs Úr <urbalazs@src.gnome.org>
Date:	Sun Apr 13 15:48:59 2014 +0200

    Updated Hungarian translation

M	po/hu.po

commit fc78f9e1e14f238eeba9f729dba0cdd2cb37960a
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 13 09:09:58 2014 +0100

    Correct buffer type in C++ GIO wrapper

M	src/gio_wrapper.cc

commit ddf003b219799b82f4a72c7568fbcbe913e45f26
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 13 08:58:09 2014 +0100

    Fix compilation if TagLib is not available

    Thanks to Abhinav for the report.

M	src/gio_wrapper.cc
M	src/gio_wrapper.h

commit 40e2787c8dbb75f36f0b2c69cdf6270aa5df7b28
Author: Abhinav <abhijangda@hotmail.com>
Date:	Sun Apr 13 11:05:17 2014 +0530

    Add only numeric characters to TPOS in ID3 Tags

    https://bugzilla.gnome.org/show_bug.cgi?id=726467

M	src/id3_tag.c
M	src/id3_tag.h
M	src/id3v24_tag.c

commit 172139f7dade030eb76ad8c99b2e3d90dd67d886
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 12 20:17:36 2014 +0100

    Update README to only mention GTK+ 3

M	README

commit 58c4d16a0662ce96a7c9455e33978967d908b70f
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 12 20:07:03 2014 +0100

    Set the inline-toolbar style on the images toolbar

M	src/easytag.c

commit 2e723c5f855a7a700ebf924e9e44de136dd818bc
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 12 19:57:13 2014 +0100

    Set the primary-toolbar style on the main toolbar

M	src/bar.c

commit eaae7f8479c2881f3965e354cf72ad4b743a49fa
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 12 19:48:37 2014 +0100

    Remove some GTK+ 2 compatibility code

M	src/gtk2_compat.c
M	src/gtk2_compat.h
M	src/misc.c

commit ab96820183cce6bedfdc8923ceb7cebc69234d68
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 12 19:45:03 2014 +0100

    Use the license-type property of GtkAboutDialog

M	src/about.c

commit ba312a2a1fdeff913afea6b33cf749fc6df47bf2
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 12 19:43:39 2014 +0100

    Depend on GTK+ 3 only

M	configure.ac

commit ecf51caab3c414846a9d9806a4ee9ef8474ec178
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Sat Apr 12 18:59:51 2014 +0200

    Updated Slovenian translation

M	po/sl.po

commit 98f092caf16e10aa0296de7e6d33da585f73abb3
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 12 14:05:20 2014 +0100

    Bump TagLib dependency to 1.9.1 for MP4 codec enum

M	configure.ac

commit 5a73d051b844e8c8e01f0f8d51e8839e4de3bf1a
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 12 13:14:38 2014 +0100

    Use CXXFLAGS from environment

    Fix a typo when checking for warning options to pass to the C++
    compiler, and ensure that CXXFLAGS set in the environment are
    passed to
    the compiler.

M	configure.ac

commit 049a6bef4fda3edb3701f11ec6adb438bbb4dac9
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 11 23:48:39 2014 +0100

    Update NEWS for 2.2.0 release

M	NEWS
M	configure.ac

commit 4201a7a75e11efca9f6ccabc341ecdf71994ba3d
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 11 23:56:08 2014 +0100

    Update man page for new format support

M	doc/easytag.xml

commit 33493b81c5de9f340702b4a10233498d6ff6f307
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 11 23:42:14 2014 +0100

    Hide help contents menuitem on Windows

    Until Yelp runs on Windows, or the Mallard help is on help.gnome.org,
    this will remain hidden.

M	src/ui_manager.h

commit c6a7d7b900766e29091ecec91bd992f8e8c7ee25
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 11 23:07:48 2014 +0100

    Update SOURCES for the upcoming 2.2.0 release

M	SOURCES
M	easytag-win32-installer.nsi.in

commit a9b66c883f6eee2759d0a2aa418463af76788aec
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 11 21:55:56 2014 +0100

    Use TagLib namespace for ulong typedef

    Under MinGW, ulong is not defined.

M	src/gio_wrapper.cc
M	src/gio_wrapper.h

commit 4ddf4c8465cc39db88d21379d3cd298a8c372327
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 11 21:13:01 2014 +0100

    Mark changed files as bold by default

    Marking changed files as red means that they are difficult to discern
    when selected.

M	src/setting.c

commit 3c4f2f8873e5fec51f43888ed0f79de2a44f478d
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Fri Apr 11 21:06:59 2014 +0100

    Review problems-ogg-split help page

M	help/C/problems-ogg-split.page

commit 4ccfaed1c85091124b1cf5c88d5713233bf14532
Author: David King <amigadave@amigadave.com>
Date:	Thu Apr 10 00:21:15 2014 +0100

    Add help page on Ogg tag splitting

A	help/C/problems-ogg-split.page
M	help/Makefile.am

commit 5929722b0c30193c48cf0c8d7f0daeb6d4ca6f71
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 11 14:13:01 2014 +0100

    Update DOAP file for new file format support

M	easytag.doap

commit 7803968bb2ce6248efec6f3c71591d91593c0b89
Author: David King <amigadave@amigadave.com>
Date:	Thu Apr 10 10:38:32 2014 +0100

    Update help now that MP4 cover art is supported

M	help/C/image.page

commit f5957ed28b1c197f66f05aa16d1fb2f4adabde2d
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 11 11:29:07 2014 +0100

    Remove auto pointer template

    Additionally, unref the stream on destruction of GIO_InputStream, as
    closing the stream is not sufficient.

M	src/gio_wrapper.cc

commit e776981890fd7313996bf752a376cf2187eb5805
Author: Santtu Lakkala <inz@inz.fi>
Date:	Fri Apr 11 12:01:16 2014 +0300

    Add basic error reporting to mp4_header.cc

    Add some error reporting enabled by updates in GIO wrapper to
    mp4_header.cc.

M	src/mp4_header.cc

commit 0955b0b8b3866f060d8b3a4a2661a1e023763dcb
Author: Santtu Lakkala <inz@inz.fi>
Date:	Fri Apr 11 12:01:15 2014 +0300

    Add basic error reporting to mp4_tag.cc

    Add some error reporting enabled by updates in GIO wrapper to
    mp4_tag.cc.

M	src/mp4_tag.cc

commit 0bf00a1dce794cfc8fc6fefa6c75e3274369b0a9
Author: Santtu Lakkala <inz@inz.fi>
Date:	Fri Apr 11 12:01:14 2014 +0300

    Improve error handling in GIO/TagLib wrapper

    Add some error checks and a method for getting the error to the
    GIO/TagLib compatibility layer.

M	src/gio_wrapper.cc
M	src/gio_wrapper.h

commit 3b3f81a72c9de5dfb0fbd3f06eb7a6957bc944cd
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 11 08:46:27 2014 +0100

    Use GIO wrappers in mp4_header.cc

M	src/mp4_header.cc

commit 3a53d419f6c1b4d197f6c421f462cb2093f40612
Author: Santtu Lakkala <inz@inz.fi>
Date:	Thu Apr 10 11:01:53 2014 +0300

    Use GIO wrappers in mp4_tag.cc

    Make mp4_tag.cc use GIO wrapper for reading and writing MP4 tags with
    TagLib.

M	src/mp4_tag.cc

commit 44ee383fb2d981c165c72e3d962df0a6dd131add
Author: Santtu Lakkala <inz@inz.fi>
Date:	Thu Apr 10 11:01:52 2014 +0300

    Add GIO/TagLib compatibility layer

    Create GIO based implementations of TagLib::IOStream, so TagLib can
    be used
    over GIO. The implementation still lacks almost all error handling,
    but works
    in normal situations.

M	Makefile.am
A	src/gio_wrapper.cc
A	src/gio_wrapper.h

commit 30798d62f77a92d96c97ae7c95d66efa5a60a1c6
Author: David King <amigadave@amigadave.com>
Date:	Thu Apr 10 16:50:56 2014 +0100

    Use C++ TagLib API for MP4 header information

M	Makefile.am
M	configure.ac
M	po/POTFILES.in
R071	src/mp4_header.c	src/mp4_header.cc
M	src/mp4_header.h
M	src/mp4_tag.cc

commit e561c91e19342f2ecd475b36d1cc7e7793a95c13
Author: Santtu Lakkala <inz@inz.fi>
Date:	Thu Apr 10 09:32:42 2014 +0100

    Support album artist in MP4 files

    Use the atom directly, rather than going through the properties
    convenience API.

M	src/easytag.c
M	src/mp4_tag.cc

commit db6d50178a5f1b2e80faed02638a49be89b0a96e
Author: Santtu Lakkala <inz@inz.fi>
Date:	Thu Apr 10 08:32:29 2014 +0300

    Implement cover art support for MP4

    Adds support for saving cover image into MP4 files, and show the
    images
    tab for them as well. Add G_BEGIN_DECLS and G_END_DECLS in picture.h.

    https://bugzilla.gnome.org/show_bug.cgi?id=701506

M	src/easytag.c
M	src/mp4_tag.cc
M	src/picture.h

commit e23ea390d7ec8a687fc0e82fb2d2542e71efe378
Author: David King <amigadave@amigadave.com>
Date:	Sat Mar 15 10:33:48 2014 +0000

    Support extended fields for MP4 tags

    Support the extended tags that are supported by TagLib, including
    total
    track number, disc number (and total), composer, copyright and encoded
    by.

    https://bugzilla.gnome.org/show_bug.cgi?id=701506

M	src/easytag.c
M	src/mp4_tag.cc

commit dd2ce06e05705ed3587dbbdfefff4fc15d1fd94a
Author: Santtu Lakkala <inz@inz.fi>
Date:	Fri Apr 11 12:07:38 2014 +0300

    Detect good set of warning flags for C++ compiler

    At least gcc's g++ does not like all warning flags that the C compiler
    does, so try them separately. Use -Werror to get failures, as
    the wrong
    flags only cause a warning.

M	Makefile.am
M	configure.ac

commit 70a8891b4a2b35b9bd2df3c5af8fb7cff66f5caf
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 6 23:38:39 2014 +0000

    Use C++ TagLib API for MP4 tags

    Eventually, this will enable handling of cover art and extended
    tags for
    MP4 files.

M	Makefile.am
M	configure.ac
M	po/POTFILES.in
R062	src/mp4_tag.c	src/mp4_tag.cc
M	src/mp4_tag.h

commit 4d0d294e00b7153e927c1df0037e360a95d2b227
Author: David King <amigadave@amigadave.com>
Date:	Thu Apr 3 17:38:26 2014 +0100

    Update NEWS for 2.1.10.99 preview release

M	AUTHORS
M	NEWS
M	configure.ac

commit df33e49df640f774520b76f7c7764c7dfc94a2b8
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 11 13:59:20 2014 +0100

    Fix ETFileDescription length

M	src/et_core.c

commit 46a2208d70f115f6e4849aebb23c44126f052f21
Author: Santtu Lakkala <inz@inz.fi>
Date:	Fri Apr 11 15:35:39 2014 +0300

    Move file type table contents

    The file type table was defined as static in a header, which
    meant that
    every object reading the header had a copy. Move the table to a source
    file.

M	src/et_core.c
M	src/et_core.h

commit b6f54eadbc5cdca9244653d5f7df881b08bf7bfd
Author: David King <amigadave@amigadave.com>
Date:	Thu Apr 10 00:04:09 2014 +0100

    Add help page on ID3 tag version problems

    Also see https://bugs.launchpad.net/ubuntu/+source/easytag/+bug/684352

M	help/C/index.page
A	help/C/problems-id3.page
M	help/Makefile.am

commit 72712d730c6d0deb3c26895f1f41a0f9d469dd29
Author: David King <amigadave@amigadave.com>
Date:	Wed Apr 9 23:36:13 2014 +0100

    Update supported format list in help

M	help/C/introduction.page

commit daf24d5062be84d609cb6cf9998a96c8919fa80a
Author: Praveen Illa <mail2ipn@gmail.com>
Date:	Fri Apr 11 02:44:51 2014 +0530

    Added Telugu initial Translation

M	po/LINGUAS
A	po/te.po

commit dae0a35755b421485e48ec2e5aad4c7fbb9331e5
Author: David King <amigadave@amigadave.com>
Date:	Thu Apr 10 21:36:16 2014 +0100

    Set default size on image properties dialogue

    This gives a better result than setting a size request on the image
    types tree view.

M	src/picture.c

commit 553ba87d0311e4e4c64f2321b5aa654df0c4ae29
Author: Santtu Lakkala <inz@inz.fi>
Date:	Thu Apr 10 20:20:24 2014 +0100

    Refactor Scan_Convert_P20_Into_Space()

    https://bugzilla.gnome.org/show_bug.cgi?id=726108

M	src/scan.c

commit 882f7ff40138fe7530c7ee5a46f8cf03a5c25705
Author: David King <amigadave@amigadave.com>
Date:	Thu Apr 10 17:14:10 2014 +0100

    Avoid C++ string conversion warnings

    Change the type of string literals to const gchar * in
    ET_File_Description.

M	src/et_core.h

commit b92ca8fa6de7cabc2179dca5c308f4414bbef6b5
Author: Marek Černocký <marek@manet.cz>
Date:	Wed Apr 9 14:24:29 2014 +0200

    Updated Czech translation

M	po/cs.po

commit 745e88d5129d574f957bc9dc22ac386efea4695a
Author: David King <amigadave@amigadave.com>
Date:	Wed Apr 9 09:31:55 2014 +0100

    Update British English translation

M	po/en_GB.po

commit 6d878e8a48fb2bb78c235d90fdce129526060c21
Author: Abhinav <abhijangda@hotmail.com>
Date:	Wed Apr 9 12:43:00 2014 +0530

    Avoid NULL deref in Scan_Rename_File_Prefix_Path()

    Check if the current path is non-empty before trying to use the
    name of
    the currently-displayed file.

    https://bugzilla.gnome.org/show_bug.cgi?id=727876
    https://retrace.fedoraproject.org/faf/problems/1641130/

M	src/scan_dialog.c

commit d8d6d47db19617d174bdbc881aaae4cb95f66b91
Author: Gianvito Cavasoli <gianvito@gmx.it>
Date:	Tue Apr 8 19:26:44 2014 +0200

    [l10n] Updated Italian translation.

M	po/it.po

commit 00ab3f419f63b6711b63ed7568f7f0ef2375f683
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 7 22:56:04 2014 +0100

    Use gtester and add test and report make targets

    Use the GLib testing utilities gtester and gtester-report to log and
    generate reports from tests. Create targets for tests and test
    reporting, and add further targets for more granular selection
    of tests.
    Use "make full-report" to run all GTest tests and generate an HTML
    report of the results.

M	.gitignore
M	Makefile.am
M	TODO
M	configure.ac

commit 30a0e93495e5e589941a35eb007a438dab04fc68
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 7 22:31:17 2014 +0100

    Add simple performance tests for scanner functions

M	tests/test-scan.c

commit f43c0a65e1404535c5a11a0caf7576a69a576f70
Author: Abhinav <abhijangda@hotmail.com>
Date:	Mon Apr 7 21:08:59 2014 +0100

    Improve scanner functions and fix tests

    https://bugzilla.gnome.org/show_bug.cgi?id=726108

M	src/easytag.c
M	src/scan.c
M	src/scan.h
M	src/scan_dialog.c
M	tests/test-scan.c

commit 55bc12913becad6c49894b18a7eb8816aa5346b6
Author: Abhinav <abhijangda@hotmail.com>
Date:	Mon Apr 7 18:38:58 2014 +0100

    Add a test for scanner string functions

    https://bugzilla.gnome.org/show_bug.cgi?id=726108

M	.gitignore
M	Makefile.am
A	tests/test-scan.c

commit b34a2284d1da35dd642645dd73956ecde900477f
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 7 18:19:20 2014 +0100

    Split scanner dialog off into scan_dialog.[c|h]

    Prepare to add some tests and benchmarks for the scanner
    string-handling
    functions.

M	Makefile.am
M	po/POTFILES.in
M	src/bar.c
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/misc.c
M	src/scan.c
M	src/scan.h
C096	src/scan.c	src/scan_dialog.c
C077	src/scan.h	src/scan_dialog.h
M	src/setting.c

commit e92d01df738c167580c23adfc0ef3a7bb3893aa5
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Mon Apr 7 19:06:20 2014 +0200

    Updated Polish translation

M	po/pl.po

commit bf7256bc3e4b4855052af74d69ca0b0144af3f92
Author: Wolfgang Stöggl <c72578@yahoo.de>
Date:	Mon Apr 7 13:48:43 2014 +0000

    Updated German translation

M	po/de.po

commit 8cdd8146c8091b0fc0a2a13aa906070851ad0bd7
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Mon Apr 7 12:16:43 2014 +0200

    Updated Spanish translation

M	po/es.po

commit 87fe06a5e4966ce11f72d2621b5fb313c46719e7
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 7 08:35:43 2014 +0100

    Fix typo in proxy tooltip string

    https://bugzilla.gnome.org/show_bug.cgi?id=727721

M	src/prefs.c

commit 3c7afc68f88bbdc35fc4e5015ead83906eb3089e
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	Sun Apr 6 23:53:04 2014 +0000

    Updated French translation

M	po/fr.po

commit c7b73721d6bdca411627dba57ce4dc6bbc9a1d69
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:	Sun Apr 6 23:47:05 2014 +0000

    Updated French translation

M	po/fr.po

commit 480e68ff48bb1a0f32976089c199d0a804250c7b
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Sat Apr 5 21:46:49 2014 +0200

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit 3b983605f4a828ac8856520363291f483662b11f
Author: Marek Černocký <marek@manet.cz>
Date:	Sat Apr 5 17:15:34 2014 +0200

    Updated Czech translation

M	po/cs.po

commit e6adc18f915201e1ad410a159094fa1af436abeb
Author: Wolfgang Stöggl <c72578@yahoo.de>
Date:	Sat Apr 5 10:35:33 2014 +0000

    Updated German translation

M	po/de.po

commit ea93fe3ec0f4e414549515d1e4f67090f1c6d11c
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 4 17:40:28 2014 +0100

    Update about dialogue credits

M	po/en_GB.po
M	src/about.c

commit a6b44d7abbf150235bcdc3233fe1161c3191c0b5
Author: Santtu Lakkala <inz@inz.fi>
Date:	Fri Apr 4 08:06:35 2014 +0300

    Reimplement Roman numeral detection

    Roman numeral detection code used complicated process of check, parse,
    build, compare to detect if a string was a valid Roman numeral.
    Reimplemented as a single step, that only checks for the validity (and
    well-formedness) of the string, without computing its value.

    It uses the same modern Roman numeral notation, including subtractive
    notation.

M	src/scan.c

commit 8a5acffa8ed6749aa0de9306ea53349a5fe34fb0
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Fri Apr 4 10:01:42 2014 +0200

    Updated Spanish translation

M	po/es.po

commit 476068994d89ee939e89e296a13884d642830fc8
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu Apr 3 22:25:15 2014 +0100

    Small optimization for scanner functions

    Discovered while fixing bug 726108.

M	src/scan.c

commit ba436215925aba8bbab0dc7eb5a8d6aab34c7fe9
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:	Thu Apr 3 17:13:03 2014 +0000

    Updated Brazilian Portuguese translation

M	po/pt_BR.po

commit 46f71f0ae7b9d473c1da046f9af57d20b11f15d1
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Thu Apr 3 18:54:26 2014 +0200

    Updated Polish translation

M	po/pl.po

commit 67bdf5f9ae13d9aeb9bdef4c1676645b7ff993cc
Author: David King <amigadave@amigadave.com>
Date:	Thu Apr 3 17:44:23 2014 +0100

    Update British English translation

M	po/en_GB.po

commit af6bf46fd7b33d13e341e45ac5f74b2ec63465d8
Author: David King <amigadave@amigadave.com>
Date:	Thu Apr 3 17:41:37 2014 +0100

    Mention Ogg Speex support in AppData description

M	data/easytag.appdata.xml.in

commit 1d6c063e9bad986ed9bda60bca5aabef94780026
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:	Thu Apr 3 10:56:43 2014 +0000

    Updated Brazilian Portuguese translation

M	po/pt_BR.po

commit ee30ce13211495ff1b77fb3708b004689529cfb5
Author: David King <amigadave@amigadave.com>
Date:	Wed Apr 2 19:43:00 2014 +0100

    Rearrange Opus/Speex Ogg checks

    Place the checks inside the path where Opus/Speex support is
    enabled, to
    prevent superfluous errors.

M	configure.ac

commit a6a18f5b624880f9f280324ee238981ff61daaaf
Author: David King <amigadave@amigadave.com>
Date:	Wed Apr 2 17:52:22 2014 +0100

    Error out if Ogg disabled but Speex/Opus enabled

    Opus and Speex support depend on Ogg support for parsing of Vorbis
    comments, used in both formats.

M	configure.ac

commit 32e494edc029bcb24b4148ed65cc355e17a25aef
Author: David King <amigadave@amigadave.com>
Date:	Wed Apr 2 17:41:43 2014 +0100

    Update AppData for Opus file support

M	data/easytag.appdata.xml.in

commit e8296e2848c9dd28bf4a1399f853e5aebef89f61
Author: David King <amigadave@amigadave.com>
Date:	Wed Apr 2 17:21:24 2014 +0100

    Fix reading header information from Opus files

    Correctly read the sample rate and duration from Opus files.
    Additionally, handle images in an Opus comment.

M	src/opus_header.c
M	src/picture.c

commit 2b685a83e84b76dc4afa1180fc89918d115e12b5
Author: Abhinav <abhijangda@hotmail.com>
Date:	Sat Mar 29 21:32:58 2014 +0530

    Support for writing tags to Ogg Opus files

    https://bugzilla.gnome.org/show_bug.cgi?id=692389

M	src/et_core.c
M	src/ogg_tag.h
M	src/vcedit.c
M	src/vcedit.h

commit c636cd01eca6cdc4d741050790ac00354014d7a4
Author: Abhinav <abhijangda@hotmail.com>
Date:	Mon Mar 24 23:45:51 2014 +0530

    Support reading tags from Ogg Opus files

    https://bugzilla.gnome.org/show_bug.cgi?id=692389

M	Makefile.am
M	README
M	configure.ac
M	po/POTFILES.in
M	src/easytag.c
M	src/et_core.c
M	src/et_core.h
M	src/ogg_tag.c
M	src/ogg_tag.h
A	src/opus_header.c
A	src/opus_header.h
A	src/opus_tag.c
A	src/opus_tag.h

commit b22129be5b931dccef89457bb2ab963a2c7057e3
Author: David King <amigadave@amigadave.com>
Date:	Mon Mar 31 16:49:14 2014 +0100

    Show progress bar text with GTK+ 3

M	src/bar.c
M	src/gtk2_compat.c
M	src/gtk2_compat.h

commit 5ce6487893c911c9b7cbca5f35c3904eceb8facf
Author: David King <amigadave@amigadave.com>
Date:	Sun Mar 30 20:29:44 2014 +0100

    Switch to use GTK+ 3 by default

M	configure.ac

commit 47754d8f31f8711993dd6a730ef7c0eece6cac69
Author: David King <amigadave@amigadave.com>
Date:	Sat Mar 29 14:50:59 2014 +0000

    Avoid a potentially-uninitialised variable

    https://bugzilla.gnome.org/show_bug.cgi?id=727295

M	src/browser.c

commit 12a6ef9c339a87b229da5c05d1377d990a6c3bce
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 28 22:44:14 2014 +0000

    Use G_BEGIN_DECLS in more headers

    This makes it easier to test the C++ TagLib API for reading MP4 tags.

M	src/charset.h
M	src/et_core.h
M	src/log.h
M	src/misc.h
M	src/mp4_tag.h

commit 86d61b60e69e8289d7c49bf51f3f33b06f9524a8
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Fri Mar 28 21:14:41 2014 +0100

    Updated Polish translation

M	po/pl.po

commit 8d5b0e9fbff770d24f93a41e89aa922c251798b6
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 28 11:42:28 2014 +0000

    Fix a double free when opening a command-line path

    https://retrace.fedoraproject.org/faf/problems/1625976/

M	src/easytag.c

commit 15b332dfe322c6cf590c799202c39b3985af4f57
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Mon Mar 24 22:23:04 2014 +0100

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit 1f8be8569550ed424d174107a846cc8aff9f2a87
Author: Andre Klapper <a9016009@gmx.de>
Date:	Sun Mar 23 21:16:44 2014 +0100

    User docs: Make page ID the same as file name

M	help/C/image-export.page

commit 17fa304530e32f1f2b6e866a56b9c49122ab112c
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 20 10:29:44 2014 +0000

    Add British English translation

    Created with en_GB.pl: https://wiki.gnome.org/BritishEnglish

M	po/LINGUAS
A	po/en_GB.po

commit 030db34a07aeca90bde7807b2c2eceaee8cfd72a
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu Mar 20 12:59:30 2014 +0530

    Check before flushing ogg stream in vcedit_write

M	src/vcedit.c

commit a27a8fe8cbd12dac86f0e615fbda068f8bdd4a10
Author: Abhinav <abhijangda@hotmail.com>
Date:	Tue Mar 18 15:28:33 2014 +0530

    Avoid truncating Vorbis file when saving tags

    Rather than writing to the same Vorbis file that tags are being read
    from, and thus truncating the file while saving changed tags, write
    to a
    GMemoryOutputStream and then replace the on-disk contents with the
    memory stream once it has been completely written.

    https://bugzilla.gnome.org/show_bug.cgi?id=721351

M	src/vcedit.c

commit a84d6677a63fe65e2ec871e4b7432163683a1b49
Author: David King <amigadave@amigadave.com>
Date:	Sun Mar 16 11:47:17 2014 +0000

    Ask for confirmation when overwriting a file

    When file renaming was rewritten to use GIO as part of bug 700500,
    renames were set to overwrite the destination file. Change this
    behaviour back to the original behaviour, to avoid data loss.

    https://bugzilla.gnome.org/show_bug.cgi?id=726448

M	src/easytag.c

commit 61eddd3d0b97c172e6dad193b4626aa2001e49d6
Author: ck Lux <lux.r.ck@gmail.com>
Date:	Sat Mar 15 20:39:01 2014 +0800

    Set unusable artist/album radio action insensitive

    When no files are shown in the file list, make the artist/album radio
    action insensitive.

    https://bugzilla.gnome.org/show_bug.cgi?id=699957

M	src/easytag.c

commit 2117d62979dc4225a934949128ce375b6e31f321
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:	Fri Mar 14 14:50:10 2014 +0000

    Updated Brazilian Portuguese translation

M	po/pt_BR.po

commit 67d69800c2ee131c99ab58c67768022db3da02e1
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Thu Mar 13 18:21:52 2014 +0100

    Updated Spanish translation

M	po/es.po

commit a03be6bcf20e80a169c745498181271fce3e86df
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Wed Mar 12 18:21:02 2014 +0100

    Updated Spanish translation

M	po/es.po

commit 23c95052f23a6938e64fe0e08dde355488e32c06
Author: Aurimas Černius <aurisc4@gmail.com>
Date:	Tue Mar 11 16:25:41 2014 +0200

    Updated Lithuanian translation

M	po/lt.po

commit a69d481e878d1b4e49698d6bcce3a12a662036a7
Author: Attila Hammer <hammera@pickup.hu>
Date:	Sat Mar 8 23:00:29 2014 +0000

    Updated Hungarian translation

M	po/hu.po

commit f41120807e464e89e26b69c87c7262d6e0ff8cac
Author: Marek Černocký <marek@manet.cz>
Date:	Sat Mar 8 21:00:57 2014 +0100

    Updated Czech translation

M	po/cs.po

commit e0c7574ef2ea5a6a3cc8ff92bd03d72d3f73e739
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 7 23:15:06 2014 +0000

    Fix load from text file dialogue response

    Avoid an assert by fixing the accepted response types to include those
    given at construction.

    https://retrace.fedoraproject.org/faf/problems/1581387/

M	src/misc.c

commit ff711176d57064efc130207cbd6047f91ee63e0c
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 7 21:09:52 2014 +0000

    Convert GIF images to PNG when saving Vorbis tags

M	src/ogg_tag.c

commit 51b9e859a969fff66f3893e15dbedc1afca87616
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 7 20:41:11 2014 +0000

    Support writing GIF image data to files

M	src/id3_tag.c
M	src/picture.c
M	src/picture.h

commit 6563a0989a6d35d618a950262bd81d2ac50ed0ed
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 7 22:41:43 2014 +0000

    Avoid crash when saving unknown image types

    https://retrace.fedoraproject.org/faf/problems/1586225/

M	src/picture.c

commit 17afda799f95c97263e52ab41fa8c9676aba3021
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 7 15:34:08 2014 +0000

    Avoid crash when declining deleting a file

    https://retrace.fedoraproject.org/faf/problems/1586226/

M	src/easytag.c

commit f432ebd26c9bf5fc060eecb0c90635ca4acd3abd
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu Mar 6 15:57:33 2014 +0530

    Improved asynchronous loading and saving of images

    https://bugzilla.gnome.org/show_bug.cgi?id=725399

M	src/picture.c

commit f77f63eb9ce7cf8b58bbc2251f2ef32c9352d6f4
Author: Abhinav <abhijangda@hotmail.com>
Date:	Wed Mar 5 20:55:47 2014 +0530

    Load and save images asynchronously, bug 725399

M	src/picture.c

commit 0dd8052061cb90a5dc006403cf464293c444f440
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 6 10:02:29 2014 +0000

    Fix memory leak in Browser_List_Remove_File()

M	src/browser.c

commit e43447037ef994976961c015bfe00fc4163dc2ea
Author: Santtu Lakkala <inz@inz.fi>
Date:	Thu Mar 6 08:20:29 2014 +0200

    Fix Roman numeral capitalization

    Roman numeral capitalization was broken by the leak fix in commit
    ae3dd7b81ba283ba0e9ea3d4aff326deedcc077e due to wrong variable usage.

M	src/scan.c

commit b55faaec5c20b0baba86e2b1dcf986bf70764088
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 5 22:56:48 2014 +0000

    Handle delete-event response from dialogues

    GTK_RESPONSE_NONE only occurs if the dialogue is shown
    programatically,
    which is not the case in EasyTAG, so handle GTK_RESPONSE_DELETE_EVENT
    instead.

M	src/browser.c
M	src/easytag.c

commit 00a51984865ee079cb27f19c6199a09d40e68c7f
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 5 22:51:37 2014 +0000

    Refactor GList handling to iterate with for loops

M	src/browser.c
M	src/easytag.c
M	src/et_core.c
M	src/id3_tag.c
M	src/id3v24_tag.c

commit 8a40b3c9f765dc2e9a9e9256c17a44ff38455e3a
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 5 22:47:13 2014 +0000

    Fix a memory leak when loading images

M	src/picture.c

commit 5442958d1ea34a992007bbb2bc047a9a5515387d
Author: David King <amigadave@amigadave.com>
Date:	Mon Mar 3 16:19:28 2014 +0000

    Return a gboolean from delete-event handler

    Avoid undefined behaviour (manifesting as a crash on Fedora Rawhide)
    by
    correctly returning a gboolean in the main window delete-event
    handler.
    If the delete event was propagated by accident, the default handler
    would destroy the window and lead to many subsequent problems.

    Thanks to Igor Gnatenko for the bug report.

    https://bugzilla.gnome.org/show_bug.cgi?id=725568
    https://bugzilla.redhat.com/show_bug.cgi?id=1071563

M	src/easytag.c

commit df638532e2a0e343d97ceddd276506c95d2f25d2
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 23 13:06:38 2014 +0000

    Refactor GList handling when saving Vorbis tags

M	src/ogg_tag.c

commit ca662dfd2ac2c21843db52b3316c3d21db5b4087
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 23 13:04:52 2014 +0000

    Refactor GList handling in et_core.c

    Refactor ET_Remove_File_From_Artist_Album_List() to use for loops to
    iterate over a GList.

M	src/et_core.c

commit 069d2d755235d6c8549a6baed9a0f18c1e61f549
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu Feb 27 11:17:42 2014 +0530

    Use GFileEnumerator instead of opendir()

    https://bugzilla.gnome.org/show_bug.cgi?id=725223

M	src/browser.c

commit 3557f72e5c4c5fd2e7881473febb35dd6359c063
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 26 21:12:30 2014 +0000

    Fix another leak in ogg_tag_read_file_tag()

M	src/ogg_tag.c

commit ad49c309811981aed03d376a37ae43217dbdce25
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 26 20:43:35 2014 +0000

    Fix memory leak in ogg_tag_read_file_tag()

M	src/ogg_tag.c

commit 4f9508505542ec19f63a0f0ecf95283d7ce77b4b
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 24 18:05:49 2014 +0000

    Mark Vorbis tags with deprecated images as changed

    Ensure that old COVERART fields containing cover art in Vorbis
    tags are
    migrated to the new METADATA_BLOCK_PICTURE by marking the tag as
    modified, so that a save will be suggested (in the new format).

    https://bugzilla.gnome.org/show_bug.cgi?id=689420

M	src/ogg_tag.c

commit 58e3d9489bd0ca38787b6b82b4a9321c52c51d22
Author: Abhinav <abhijangda@hotmail.com>
Date:	Mon Feb 24 18:57:52 2014 +0530

    Support for writing new Vorbis cover art

    http://wiki.xiph.org/index.php/VorbisComment#Cover_art

    https://bugzilla.gnome.org/show_bug.cgi?id=689420

M	src/ogg_tag.c

commit bbcd91f4ca2e89ba36a02a0d9b21c23cba98090e
Author: Abhinav <abhijangda@hotmail.com>
Date:	Sat Feb 22 11:20:31 2014 +0530

    Support for reading new Vorbis cover art

    http://wiki.xiph.org/index.php/VorbisComment#Cover_art

    https://bugzilla.gnome.org/show_bug.cgi?id=689420

M	src/ogg_tag.c

commit b4c060d02732af1771c451be0aebaf42960ba1a0
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 24 17:43:18 2014 +0000

    Fix memory leak in ET_Save_File_Tag_To_HD

M	src/et_core.c

commit eb48363cfab4b128d55f83ea5ab693416892412f
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 24 14:25:03 2014 +0000

    Refactor querying of package installation path

M	src/win32/win32dep.c
M	src/win32/win32dep.h

commit d8ad4bc6c1f12463ec02ba24b0b53431bedb6fa0
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 24 14:05:58 2014 +0000

    Remove lots of Win32 cruft

M	src/win32/win32dep.c
M	src/win32/win32dep.h

commit 1ce50a1d534bb448c0c4cd713987cdab3d9d245f
Author: Balázs Úr <urbalazs@src.gnome.org>
Date:	Sun Feb 23 16:40:17 2014 +0100

    Updated Hungarian translation

M	po/hu.po

commit 8486dcd79a0958d0fde6062960a36585bf69bc98
Author: Enrico Nicoletto <liverig@gmail.com>
Date:	Fri Feb 21 14:08:13 2014 +0000

    Updated Brazilian Portuguese translation

M	po/pt_BR.po

commit 1e55068cd7eaa78eda892a27fe52450edd99c496
Author: Marek Černocký <marek@manet.cz>
Date:	Thu Feb 20 23:18:20 2014 +0100

    Updated Czech translation

M	po/cs.po

commit ecd99b088b935562740745b1f080257caab44924
Author: Aurimas Černius <aurisc4@gmail.com>
Date:	Thu Feb 20 22:23:29 2014 +0200

    Updated Lithuanian translation

M	po/lt.po

commit b27805dc163dff4d7b301b9be10a8d29b54a8a91
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 19 20:20:58 2014 +0000

    Update NEWS for 2.1.10 release

M	AUTHORS
M	NEWS
M	SOURCES
M	THANKS
M	configure.ac

commit a80df787d0389ced85c838c2f99494136dda2772
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Wed Feb 19 21:13:51 2014 +0100

    Updated Polish translation

M	po/pl.po

commit 42ecdcda50fd047bf2f2466d112a3746edde8611
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 19 19:50:50 2014 +0000

    Add Help item to About menu

M	src/bar.c
M	src/bar.h
M	src/misc.c
M	src/misc.h
M	src/ui_manager.h

commit 6b8f7464f74fbafd8ccce4861694ea2c6b9ca6a7
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 19 18:00:11 2014 +0000

    Use LOCALAPPDATA for NSIS user data uninstall

M	easytag-win32-installer.nsi.in

commit 9eda06ce6518075c8d93dbec9a73b35e1f0ce828
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 19 17:55:00 2014 +0000

    Launch application after NSIS installation

M	easytag-win32-installer.nsi.in

commit 2373022ee3a5cb7b1cca82d1d2ed2f488a98843f
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 19 17:23:41 2014 +0000

    Default to an icons style toolbar on Windows

M	easytag-win32-installer.nsi.in

commit 56ff61aff7e6fc20a0496a1eaa74e4106a101edd
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 19 17:21:34 2014 +0000

    Add folder icons and emblem to NSIS installer

M	easytag-win32-installer.nsi.in

commit 6d28bb7afe5ffe11bd23f9b0d365b0bea6d1d6fa
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 18 22:34:33 2014 +0000

    Refactor process spawning code

    Refactor the process spawning code so that it handles additional
    arguments, as it did before switching to use g_spawn_async(). Use a
    single et_run_program() method for spawning processes, and merge the
    existing implementations.

M	src/browser.c
M	src/misc.c
M	src/misc.h

commit 0f55daa993955f0b07a8164d4d0393083c3f528d
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 7 17:03:27 2014 +0000

    Use g_spawn_async() on Windows

    Remove Windows-specific code to spawn processes. Bundle the GLib spawn
    helper in the Windows installer.

M	TODO
M	easytag-win32-installer.nsi.in
M	src/browser.c
M	src/misc.c

commit 89711f22cb736d979612f1f55e447cc3338bc7d7
Author: Abhinav <abhijangda@hotmail.com>
Date:	Tue Feb 18 20:05:34 2014 +0530

    Use GFileInfo instead of stat() in prefs.c

    https://bugzilla.gnome.org/show_bug.cgi?id=724608

M	src/prefs.c

commit 3313129cb0e750dd1817c11f4f1ce187d005abd2
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 16 21:09:46 2014 +0000

    Fix memory leak in Create_Tag_Area()

M	src/easytag.c

commit aa20526caa45d213cf36b18c27bfbffc3618eccc
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 16 21:06:32 2014 +0000

    Avoid critical warnings with invalid default path

    Rather than calling Browser_Tree_Select_Dir() directly, call
    g_application_open() to use the same open codepath throughout.

    https://bugzilla.redhat.com/show_bug.cgi?id=1065765

M	src/browser.c

commit 2c803c58791645af443a20039df1b9478f83c0ff
Author: Abhinav <abhijangda@hotmail.com>
Date:	Sun Feb 16 18:11:43 2014 +0530

    Convert stat() usage to GFileInfo in et_core.c

    Found with Coverity (CID 1163367 and CID 1163368)

    https://bugzilla.gnome.org/show_bug.cgi?id=724461

M	src/et_core.c

commit c4da4b18295afb94a985b7b81858f3bc0ee1e925
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 15 23:18:38 2014 +0000

    Remove bogus comparison in Id3tag_Read_File_Tag

    Found with cppcheck.

M	src/id3v24_tag.c

commit 618700ae5bfa971a895e567a01b50de3e683905b
Author: Aurimas Černius <aurisc4@gmail.com>
Date:	Sat Feb 15 19:16:12 2014 +0200

    Updated Lithuanian translation

M	po/lt.po

commit 91cef7e1d57fb7aae65b209d4aecf4c70d68d0a3
Author: Abhinav <abhijangda@hotmail.com>
Date:	Sat Feb 15 12:11:15 2014 +0530

    Convert stat() to GFileInfo in Save_List_Of_Files

    https://bugzilla.gnome.org/show_bug.cgi?id=724400

M	src/easytag.c

commit 4381597a181c96b8786857825eb8f9b05bb48e50
Author: Abhinav <abhijangda@hotmail.com>
Date:	Fri Feb 14 19:59:23 2014 +0530

    Use GFileInfo instead of stat() in src/browser.c

    The lack of error-checking in expand_cb() was found by Coverity (CID
    1163359).

    https://bugzilla.gnome.org/show_bug.cgi?id=724357

M	src/browser.c

commit 80a649add920eb716818381b9b29599782698910
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 13 18:47:12 2014 +0000

    Replace use of stat() in file list ctime sorting

    Use GFileInfo to query the ctime attribute, and explicitly ignore
    errors.

    Found with Coverity (CID 1163370).

M	src/et_core.c

commit 81a1e7cf4bcb7897abd7c7ac4f6bfe0f0a038395
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu Feb 13 19:27:48 2014 +0530

    Only add dummy browser row if the path is readable

    Prevent empty rows from appearing in the browser when parent
    directories
    are deleted externally. Additionally, delete the parent directory from
    the tree if it is not found.

    https://bugzilla.gnome.org/show_bug.cgi?id=722380

M	src/browser.c

commit a220a6d4c0bd51bd8e532ec863af8ead299de8af
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 11 19:25:33 2014 +0000

    Use g_format_size() instead of custom code

    Replace Convert_Size() and Convert_Size_1() with g_format_size() to
    avoid potential invalid memory accesses.

    Found with Coverity (CID 1163338 and CID 1163339).

M	src/cddb.c
M	src/et_core.c
M	src/flac_header.c
M	src/misc.c
M	src/misc.h
M	src/monkeyaudio_header.c
M	src/mp4_header.c
M	src/mpeg_header.c
M	src/musepack_header.c
M	src/ogg_header.c
M	src/picture.c
M	src/wavpack_header.c

commit 2ab505068d708a1a81775df558fdcfc42612dceb
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 11 19:05:44 2014 +0000

    Remove a bogus sign check

    Found with Coverity (CID 1163351).

M	src/scan.c

commit b93a38b07fc9a6a7e655e61a502bbd3046114137
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 11 18:59:02 2014 +0000

    Remove bogus conditional check

    Found with Coverity (CID 1163350).

M	src/misc.c

commit aa8fb4b82606540c5edfd96aadcd12fbe7124c1a
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 11 18:41:55 2014 +0000

    Remove a bogus GtkTreeIter assignment

    Found with Coverity (CID 1163324).

M	src/cddb.c

commit 09f96fd0c9056c48e041fc3ec92a845c6840eeae
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 11 10:27:42 2014 +0000

    Fix memory leak in et_get_file_size()

    Unref the GFileInfo and GFile after use.

M	src/misc.c

commit ae3dd7b81ba283ba0e9ea3d4aff326deedcc077e
Author: Santtu Lakkala <inz@inz.fi>
Date:	Tue Feb 11 10:16:37 2014 +0000

    Fix two memory leaks in scanner

    Free the result of g_utf8_strup() in
    Scan_Process_Fields_First_Letters_Uppercase() Roman numeral handling.

M	src/scan.c

commit d7bda2d1681f4c52920a0b6d83ce66f610da849c
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 10 22:34:55 2014 +0000

    Add estimated size to NSIS installer

    Additionally, use MUI2 rather than MUI, which should be faster.

M	easytag-win32-installer.nsi.in

commit 16a66debb404726c34331c6159e32bf99ff107a5
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 10 20:06:06 2014 +0000

    Check iter in Browser_Tree_Rename_Directory

    Found with Coverity (CID 1163371).

M	src/browser.c

commit 15fc326f8eda8f3df86d31d9dd362efae66fd2de
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 10 20:01:49 2014 +0000

    Check for a valid iter in Browser_Tree_Select_Dir

    Found with Coverity (CID 1163372).

M	src/browser.c

commit 7bfab6120fed8d56019056daf937c6a7011effff
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 10 18:08:52 2014 +0000

    Do not override the primary toolbar style

    Users should be able to override the style of the primary toolbar.

M	src/bar.c

commit ea8396a03888494c8b9bc14c572b058e237d9a74
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 10 17:15:49 2014 +0000

    Remove Quit action from toolbar

    Having an infrequently-used item such as Quit on the toolbar is
    against
    the toolbar guidelines in the GNOME HIG:

    https://developer.gnome.org/hig-book/stable/toolbars-appearance.html

M	src/ui_manager.h

commit 7f4d721a8f4dcfa7c099a4d7125c11941c1dc611
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 6 23:07:28 2014 +0000

    Fix context menu shortcut in NSIS installer

    https://bugzilla.gnome.org/show_bug.cgi?id=723795

M	easytag-win32-installer.nsi.in

commit 23517574058cd25e07777326dcff8bcbbbb5472f
Author: Marek Černocký <marek@manet.cz>
Date:	Sun Feb 9 09:23:05 2014 +0100

    Updated Czech translation

M	po/cs.po

commit 1a9f7b798082c9e398bcd9b85deb66fbb1de91ba
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Feb 9 01:52:25 2014 +0100

    Updated Polish translation

M	po/pl.po

commit 240bc63b4f67d98cf94f55a7a385b5a9dd0e100b
Author: David King <amigadave@amigadave.com>
Date:	Sat Feb 8 23:11:13 2014 +0000

    Return 0 from et_get_file_size() on error

    Found by Coverity (CID 1170175).

M	src/misc.c

commit 02d199b2cac7c34b36cb534a48eda32172efb941
Author: David King <amigadave@amigadave.com>
Date:	Wed Jan 22 17:37:28 2014 +0000

    Add AppData XML using APPDATA_XML macro

M	.gitignore
M	Makefile.am
M	README
M	configure.ac
A	data/easytag.appdata.xml.in
M	po/POTFILES.in

commit 6c70f15269bd66936b2e7d65e62c8a80bc38fc9f
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 6 22:56:09 2014 +0000

    Do not unref GFile in GApplication::open handler

    https://retrace.fedoraproject.org/faf/problems/1504917/

M	src/easytag.c

commit c01a3ee46ca0b8e35fafa5008d5b6ef5e8e66592
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 6 22:32:11 2014 +0000

    Avoid a crash when handling invalid arguments

    Do not try to dereference a NULL ETCore pointer.

M	src/et_core.c

commit 712bbffee0243317baf0644dd84c6fca8789b6d2
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 6 23:38:43 2014 +0000

    Clear the statusbar timeout ID when it expires

    Avoids a critical warning that the source had already been removed.

M	src/bar.c

commit 076d45f59d5eaa57a33961acfe928ad99b898c20
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 6 10:41:18 2014 +0000

    Add id3lib and libid3tag to Windows installer

    Additionally, update SOURCES.

M	SOURCES
M	easytag-win32-installer.nsi.in

commit 200562fce40833510713a1f0b71092821984ae66
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 3 16:54:59 2014 +0000

    Replace use of stat() in Get_File_Size()

    Use g_file_info_get_size() and check for errors, instead of calling
    stat(). Rename Get_File_Size() to et_get_file_size().

    Found with Coverity (CID 1163369).

M	src/flac_header.c
M	src/misc.c
M	src/misc.h
M	src/mp4_header.c
M	src/mpeg_header.c
M	src/ogg_header.c

commit 7305451e0e967a2fdd5e0d59e364357a9a338fcb
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 3 16:31:46 2014 +0000

    Remove bogus conditional check in settings parser

    Found with Coverity (CID 1163352).

M	src/setting.c

commit ebb19c7ed0f60156224c01bdca43a2212d933617
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 3 16:28:23 2014 +0000

    Add a comment about id3_file_fdopen()

    Passing a file descriptor to id3_file_fdopen() causes it to take
    ownership of the descriptor, so that only a matching id3_file_close()
    is
    required to close the resulting file.

    Found with Coverity (CID 1163335).

M	src/id3v24_tag.c

commit 2e07b5f5c8970a6e26e14723e25f1292ba7e6d1d
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 3 22:34:16 2014 +0000

    Remove gettimeofday and pid_t configure.ac checks

M	configure.ac

commit 1d0a255ca85d964141945a29f6e92d2ba0d89714
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 3 22:30:28 2014 +0000

    Fix memory leak in Parse_Date()

M	src/misc.c

commit d7bd51145e045a31e2e0be05f73c0b3b09f553a5
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:	Sun Feb 2 14:15:11 2014 +0000

    Updated Brazilian Portuguese translation

M	po/pt_BR.po

commit 8db3b218984ff1b1d1568de6e3d9a692a4702304
Author: David King <amigadave@amigadave.com>
Date:	Wed Jan 29 13:47:21 2014 +0000

    Add programming language to DOAP file

M	easytag.doap

commit 90e2f4edf99408225e931e051bb4ffc7badcac2a
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Tue Jan 28 17:59:03 2014 +0100

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit 6b01c678f92cc4f554e98840523bff2bac6903f3
Author: Marek Černocký <marek@manet.cz>
Date:	Sat Jan 25 22:39:58 2014 +0100

    Updated Czech translation

M	po/cs.po

commit d744a661921a9aa678fe0ebdc38ebb7f5ae0942c
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Wed Jan 22 02:14:12 2014 +0100

    Updated Polish translation

M	po/pl.po

commit afad898b0394b6eafeaf6f89cf411ac5c0e96ab0
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 21 19:42:09 2014 +0000

    Fix memory leak in Log_Format_Date()

M	src/log.c

commit c9d92605a62206a9046770d947ac7c6ff57e99bc
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 21 19:28:48 2014 +0000

    Use g_spawn_async() to launch media player

M	src/misc.c

commit c04889482be6f2b6baa20b321cf2581dc606c8ff
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 21 19:18:37 2014 +0000

    Use g_spawn_async() to launch open with process

M	src/browser.c
M	src/misc.c
M	src/misc.h

commit b698dad4c31ffc702121cc06200ff1a0e1e89864
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 21 16:21:32 2014 +0000

    Remove Unix signal handlers, bug 721943

M	src/easytag.c

commit dd4f3bd815bd186e3e58752e0ac7999c6c645fd7
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 19 09:26:57 2014 +0000

    Check for failure of g_output_stream_write_all()

    Flip an incorrect check for the return value of
    g_output_stream_write_all() when svaing Vorbis tags. Fixes bug 722522.

M	src/vcedit.c

commit 192aa2201320bcc2d7b5bcf64fa3a015c21478b3
Author: David King <amigadave@amigadave.com>
Date:	Thu Jan 16 21:30:36 2014 +0000

    Avoid unreffing a NULL GFileInfo in the browser

M	src/browser.c

commit bdb4476177a06c7bbd15ea90229d3056a6a95d7a
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 6 09:03:37 2014 +0000

    Update Santtu Lakkala's email address

M	AUTHORS
M	src/about.c
M	src/dlm.c
M	src/dlm.h

commit 7b487c7571bc6b65759cd0673de4c223e00b6297
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 3 10:44:29 2014 +0000

    Clarify licensing of dlm.c and dlm.h, bug 721385

    Signed-off-by: Santtu Lakkala <inz@inz.fi>

M	src/dlm.c
M	src/dlm.h

commit 7cadc2e0a6eb2e5929f5c82e903ed92b978433f9
Author: Wolfgang Stöggl <c72578@yahoo.de>
Date:	Sun Jan 5 09:05:35 2014 +0100

    [l10n] Updated German translation

M	po/de.po

commit 109681d07d7af62fb5f0ca46cb9bfbfc4d4b4839
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 4 15:39:25 2014 +0000

    Update copyright year in about dialogue

M	src/about.c

commit 0765d4ae643fb24debcfb8ced276ba77a1eb93fc
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 4 11:54:07 2014 +0000

    Update NEWS for 2.1.9 release

M	NEWS
M	configure.ac

commit 83d0df099514c39701e93d95519acb4a410fe1d4
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 4 11:57:51 2014 +0000

    Add SOURCES to the Windows installer

M	easytag-win32-installer.nsi.in

commit 6217ac89e8d7e048a6431cda21dbf33d8cb5f444
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Fri Jan 3 22:28:12 2014 +0100

    Updated Slovenian translation

M	po/sl.po

commit ebaa7d0e0153cd66985b6e61445981c7c73cc71b
Author: William Jon McCann <william.jon.mccann@gmail.com>
Date:	Wed Dec 18 07:16:55 2013 -0500

    Update project homepage url

M	README
M	configure.ac
M	easytag.doap
M	src/win32/easytag.rc.in

commit ff773bd929b1e293826876aaa9e552d2a45b4d88
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 11 08:31:51 2013 +0000

    Use new-style GTK+ deprecation defines

    Target GTK+ 3.4, as that is the version of GTK+ 3 that is in Debian
    stable, which a future GTK+ 3-only version of EasyTAG can comfortably
    depend on. Ignore deprecations in versions of GTK+ 3 > 3.4. Keep the
    GTK+ 2 behaviour the same, as no new deprecations should be added.

    https://wiki.gnome.org/HowDoI/Deprecations

M	configure.ac

commit ef367520a1bc6249c2d9d111b700cf31762e5def
Author: David King <amigadave@amigadave.com>
Date:	Mon Dec 9 23:59:29 2013 +0000

    Resize NSIS installer images

M	data/nsis/easytag-header.bmp
M	data/nsis/easytag-sidebar.bmp

commit 83eadf0b5ecd9f7008c464047b6da944d3857888
Author: David King <amigadave@amigadave.com>
Date:	Mon Dec 9 23:28:09 2013 +0000

    Add manifest for Windows executable

M	.gitignore
A	src/win32/easytag.manifest

commit 82bb42e2a0c86f60de4d9459de1eb47b332cfd02
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Mon Dec 9 22:54:32 2013 +0000

    Add new images for the Windows installer

    Use same icon for easytag.exe and installer.

M	Makefile.am
M	data/nsis/easytag-header.bmp
A	data/nsis/easytag-header.svg
D	data/nsis/easytag-install.bmp
D	data/nsis/easytag-install.ico
A	data/nsis/easytag-sidebar.bmp
A	data/nsis/easytag-sidebar.svg
D	data/nsis/easytag-uninstall.bmp
M	easytag-win32-installer.nsi.in

commit 7e69190b9928b554b154ce8a42d9553334a3c0a5
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 5 19:26:34 2013 +0000

    Fix MPEG 2.5 header information

    Found with cppcheck.

M	src/mpeg_header.c

commit 9a4517f5ecaced7e18c314bfcb5093e96d4c3a6e
Author: Marek Černocký <marek@manet.cz>
Date:	Mon Dec 2 16:59:16 2013 +0100

    Updated Czech translation

M	po/cs.po

commit 158d735b9c4e434bde45f88c9ab24d89c2b8e095
Author: Milagros Alessandra Infante Montero <maim92@gmail.com>
Date:	Wed Nov 27 10:34:33 2013 +0100

    Updated Spanish translation

M	po/es.po

commit a7889e4a7f2539cd4a37caa02ce58f6e7242efbe
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 19 13:29:57 2013 +0000

    Update wiki reference in DOAP file

M	easytag.doap

commit 707fadb66ba6930ee013f7ee6a0bd1a8f788749b
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 18 19:41:01 2013 +0000

    Update weasytag_locale_dir() for new locale path

M	src/easytag.c
M	src/win32/win32dep.c

commit 54c97e652c77c9f2ae4913ae55e7232e40fc7f37
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 18 18:52:00 2013 +0000

    Use a macro to install translations with NSIS

    Additionally, install the ATK, GDK-Pixbuf, GLib and GTK+ translations.

M	easytag-win32-installer.nsi.in

commit d51ef13cb1fd447a764dab495c6142eeb889852a
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 18 18:25:23 2013 +0000

    Use same locale path as intltool.m4

M	Makefile.am

commit bda7536fbec87f09b67f94797d1c584a0fe98e65
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 18 18:14:13 2013 +0000

    Remove unused PACKAGE_DATA_DIR define

M	Makefile.am

commit 35e57ca4829fb97221a76537b99dcc263ef549b2
Author: David King <amigadave@amigadave.com>
Date:	Mon Nov 18 14:48:23 2013 +0000

    Fix crash when searching CDDB in Japanese locale

    A string in the Japanese translation swapped an integer and string
    format string in a printf-formatted string. This caused a crash at
    runtime. Use the positional syntax of gettext to substitute the
    correct
    variable into the string.

    http://www.gnu.org/software/gettext/manual/gettext.html#c_002dformat-Flag
    https://bugs.launchpad.net/ubuntu/+source/easytag/+bug/642556

M	po/ja.po

commit fe84c978ef0b2cc7047e8b83668fda2a87b462b2
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 14 08:54:55 2013 +0000

    Fix USE_NLS conditional test in configure

M	configure.ac

commit 1efaee2f5d810f8ee8dec70a4cb3d0ac178f5847
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 14 08:13:42 2013 +0000

    Fix localization by defining ENABLE_NLS correctly

    Since the switch to use intltool and not gettext in commit
    98065d10b09bb27a2dee1e79f9b0eef0cee549a0, localization hsa been
    broken,
    as ENABLE_NLS is not defined by IT_PROG_INTLTOOL but is used in
    an ifdef
    in main().

    Additionally, includes of <glib/gi18n-lib.h> were corrected to
    <glib/gi18n.h>. Finally, gtk_action_group_set_translation_domain() was
    set on action groups, to ensure translations of actions.

    Fixes bug 712250.

M	configure.ac
M	src/about.c
M	src/ape_tag.c
M	src/bar.c
M	src/browser.c
M	src/cddb.c
M	src/charset.c
M	src/easytag.c
M	src/et_core.c
M	src/flac_header.c
M	src/flac_tag.c
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/log.c
M	src/misc.c
M	src/monkeyaudio_header.c
M	src/mp4_header.c
M	src/mp4_tag.c
M	src/mpeg_header.c
M	src/musepack_header.c
M	src/ogg_header.c
M	src/ogg_tag.c
M	src/picture.c
M	src/prefs.c
M	src/scan.c
M	src/setting.c
M	src/vcedit.c
M	src/wavpack_header.c
M	src/wavpack_tag.c

commit 3635de8c38eee1fcfe4510c96cdd26061c5f2a89
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:	Wed Nov 13 23:31:18 2013 -0200

    Updated Brazilian Portuguese Translation

M	po/pt_BR.po

commit ec126e4f61dc390a04523eed7b593a5754eb01aa
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Mon Nov 11 02:45:28 2013 +0100

    Updated Polish translation

M	po/pl.po

commit 7a33c84bbe80caa39b25a8c8ca834b5501cf9ebe
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Mon Nov 11 02:40:50 2013 +0100

    Updated Polish translation

M	po/pl.po

commit c93e1b40447f28ec5dcda5d35aae587b2eeeed2c
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 10 21:27:10 2013 +0000

    Add SOURCES file for future 2.1.9 Windows release

A	SOURCES

commit f0c366201cfd984d875d2504892df083cb56ab23
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 10 19:02:52 2013 +0000

    Include CD audio icon in NSIS installer

M	easytag-win32-installer.nsi.in

commit 121a9a4fe8d80f83746a36da3a8a0c28e4c7938a
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 23 21:57:23 2013 +0100

    Use g_win32_error_message() with GetLastError()

M	src/browser.c
M	src/misc.c

commit 726325cb6042832f8491f5e0c66c56a246809123
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 9 19:18:53 2013 +0100

    Add DOS line endings to NSIS installer gtkrc

M	easytag-win32-installer.nsi.in

commit 34cb7ab06d4ad58fd369a468aa12c5a29e58fbaf
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 9 19:02:55 2013 +0100

    Remove some old win32 cruft

M	Makefile.am
M	src/easytag.c
D	src/win32/gtkwin32dep.c
D	src/win32/gtkwin32dep.h
D	src/win32/win_easytag.c

commit 48b46925b297efc2b0b9f3d2e884d07ad7096d91
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 3 10:36:43 2013 +0000

    Error out from configure if yelp.m4 is not found

M	configure.ac

commit dd418d953620891e34aca542147e6ea0e628b980
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 2 11:59:38 2013 +0000

    Remove album pixmap, use themed icon instead

    Use the media-optical-cd-audio icon to replace the album pixmap,
    and use
    it in the artist and album view.

M	Makefile.am
D	data/pixmaps/album.xpm
M	src/browser.c
M	src/browser.h
M	src/misc.c

commit 23650fd329cf91dd4bcf70cb087ce8cde2fdb648
Author: Krzysztof Pater <k.pater@op.pl>
Date:	Sat Nov 2 11:07:38 2013 +0000

    Update selection pixmaps

M	data/pixmaps/invert_selection.xpm
M	data/pixmaps/unselect_all.xpm

commit 947f349337cf8f4aca9e3754825d77091c3d97c1
Author: David King <amigadave@amigadave.com>
Date:	Tue Oct 22 22:54:32 2013 +0100

    Annotate GSource with g_source_set_name_by_id()

    http://www.hadess.net/2013/10/reducing-wake-ups-2013-edition.html

M	src/bar.c
M	src/easytag.c

commit 1713943ce05cbc1d589a8136fb03f999951b4b8b
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Mon Oct 14 00:10:23 2013 +0200

    Updated Slovenian translation

M	po/sl.po

commit 32aaa5245d321475706d75c265daf98439e47755
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Sun Oct 13 23:43:18 2013 +0200

    Updated Slovenian translation

M	po/sl.po

commit d932d0320290464aa01c58448479c2e71b833a4f
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 9 18:17:03 2013 +0100

    Include missing icons in NSIS script

    These icons come from the GNOME icon theme, and are the only ones
    missing from the fallback hicolor theme.

M	easytag-win32-installer.nsi.in

commit 3f5768c382ccf356a8a6903a744aaf0815e122bb
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 9 09:13:50 2013 +0100

    Build resource and manifest into Windows binary

    This adds some supplementary information into the binary, as well
    as the
    icon.

M	.gitignore
M	Makefile.am
M	configure.ac
D	src/win32/easytag.rc
A	src/win32/easytag.rc.in

commit 9e74802f23075e76b27a1ee4ebe0e67dca96f7b3
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 9 00:24:23 2013 +0100

    Update NEWS for Windows 2.1.9alpha1 release

M	NEWS
M	configure.ac

commit 088c8a30878ccef478946997b5ad30ec9b6452fe
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 9 00:12:40 2013 +0100

    Do not show a command prompt on Windows

M	Makefile.am

commit 7a37c781bdecd11e4c78da177126b8c2e089dfb4
Author: David King <amigadave@amigadave.com>
Date:	Wed Oct 9 00:08:03 2013 +0100

    Update NSIS installer script

    Add a Makefile target for creating a Windows installer binary. Install
    to a temporary DESTDIR and create the installer using the installed
    data.

M	Makefile.am
M	easytag-win32-installer.nsi.in
M	src/win32/win32dep.c

commit fe19980e6d5c55c84d09ad7566deaa7b62b461d8
Author: David King <amigadave@amigadave.com>
Date:	Tue Oct 8 19:07:06 2013 +0100

    Cast DWORD to guint32 when calling Log_Print()

M	src/browser.c
M	src/misc.c

commit 49d5c597876d8d27c22f21ac750e275f959b0f1a
Author: David King <amigadave@amigadave.com>
Date:	Tue Oct 8 17:57:21 2013 +0100

    Depend on yelp-tools so that help is installed

M	Makefile.am
M	README
M	configure.ac

commit e1680c86850c2b40061d46a3c379bf2bf7b5b093
Author: David King <amigadave@amigadave.com>
Date:	Mon Oct 7 09:30:21 2013 +0100

    Remove old and outdated HTML documentation

M	Makefile.am
D	doc/EasyTAG_Documentation.html
D	doc/EasyTAG_Documentation_fr.html
D	doc/EasyTAG_Documentation_sv.html
D	doc/users_guide_french/USERS-GUIDE-11_fr1.html
D	doc/users_guide_french/USERS-GUIDE-11_fr2.html
D	doc/users_guide_french/USERS-GUIDE-11_fr3.html
D	doc/users_guide_french/USERS-GUIDE-11_fr4.html
D	doc/users_guide_french/USERS-GUIDE-11_fr5.html
D	doc/users_guide_french/USERS-GUIDE-11_fr6.html
D	doc/users_guide_french/USERS-GUIDE.css
D	doc/users_guide_french/images/bouton_arbo.png
D	doc/users_guide_french/images/bouton_img1.png
D	doc/users_guide_french/images/bouton_img2.png
D	doc/users_guide_french/images/bouton_img3.png
D	doc/users_guide_french/images/bouton_scan1.png
D	doc/users_guide_french/images/bouton_scan2.png
D	doc/users_guide_french/images/bouton_scan3.png
D	doc/users_guide_french/images/bouton_scan4.png
D	doc/users_guide_french/images/bouton_scan5.png
D	doc/users_guide_french/images/bouton_scan6.png
D	doc/users_guide_french/images/bouton_scan7.png
D	doc/users_guide_french/images/fen_boutons.png
D	doc/users_guide_french/images/fen_cddb1.png
D	doc/users_guide_french/images/fen_cddb2.png
D	doc/users_guide_french/images/fen_fic_txt.png
D	doc/users_guide_french/images/fen_fich.png
D	doc/users_guide_french/images/fen_lect1.png
D	doc/users_guide_french/images/fen_lect2.png
D	doc/users_guide_french/images/fen_playlist.png
D	doc/users_guide_french/images/fen_rech1.png
D	doc/users_guide_french/images/fen_scan1.png
D	doc/users_guide_french/images/fen_scan2.png
D	doc/users_guide_french/images/fen_scan3.png
D	doc/users_guide_french/images/fen_scan4.png
D	doc/users_guide_french/images/fen_sel1.png
D	doc/users_guide_french/images/fen_sel2.png
D	doc/users_guide_french/images/fen_sel3.png
D	doc/users_guide_french/images/fen_tag_bout1.png
D	doc/users_guide_french/images/fen_tag_bout2.png
D	doc/users_guide_french/images/fen_tag_gen.png
D	doc/users_guide_french/images/fen_tag_img.png
D	doc/users_guide_french/images/interface.png
D	doc/users_guide_french/images/menu_context1.png
D	doc/users_guide_french/images/menu_context2.png
D	doc/users_guide_french/images/menu_context3.png
D	doc/users_guide_french/images/menu_div.png
D	doc/users_guide_french/images/menu_fic.png
D	doc/users_guide_french/images/menu_pref.png
D	doc/users_guide_french/images/menu_recherche.png
D	doc/users_guide_french/images/menu_recherche1.png
D	doc/users_guide_french/images/menu_recherche2.png
D	doc/users_guide_french/images/menu_scan.png
D	doc/users_guide_french/images/menu_sel.png
D	doc/users_guide_french/images/sousmenu_fic1.png
D	doc/users_guide_french/images/sousmenu_fic2.png
D	doc/users_guide_german/bedienung1.htm
D	doc/users_guide_german/bedienung2.htm
D	doc/users_guide_german/easy.css
D	doc/users_guide_german/einleitung.htm
D	doc/users_guide_german/images/EasyTAG.png
D	doc/users_guide_german/images/eigensch.png
D	doc/users_guide_german/images/filelist.png
D	doc/users_guide_german/images/playlist.png
D	doc/users_guide_german/images/search.png
D	doc/users_guide_german/images/t_easytag.jpg
D	doc/users_guide_german/images/treeview.png

commit dd6f1e940d30815ea4f0d8b351c810c220bb4a57
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Oct 6 23:15:33 2013 +0100

    Add cddb-search help page

A	help/C/cddb-search.page
M	help/Makefile.am

commit ade6a1cb3187766091a308fdb91afbc3ccc59253
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Oct 6 21:52:00 2013 +0100

    Add playlist-generate help page

A	help/C/playlist-generate.page
M	help/Makefile.am

commit 887344f32e9c0697bdb6861385b5ae12ce7ca515
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Oct 6 21:05:09 2013 +0100

    Split file selection help off to a separate page

M	help/C/file-rename.page
A	help/C/file-select.page
M	help/Makefile.am

commit 5c8ad63fac2ecb3cd3697e887e8c415e90c70c2d
Author: David King <amigadave@amigadave.com>
Date:	Mon Oct 7 23:39:52 2013 +0100

    Make several misc.h declarations static

M	src/misc.c
M	src/misc.h

commit 88886d2d3da232594e8ad431fe206fbbb6dcc4c5
Author: David King <amigadave@amigadave.com>
Date:	Mon Oct 7 23:26:46 2013 +0100

    Make several easytag.h declarations static

M	src/easytag.c
M	src/easytag.h
M	src/misc.c

commit 36d0a48ea067bc2bf49d9090e3dcde3dbce4dc9a
Author: David King <amigadave@amigadave.com>
Date:	Mon Oct 7 22:02:43 2013 +0100

    Refactor cddb.h to only include prototypes

    Move declarations from cddb.h to cddb.h and make them static.

M	src/cddb.c
M	src/cddb.h

commit 99a53fbce3c36650b82504fcc0bb30560696c6b8
Author: David King <amigadave@amigadave.com>
Date:	Sun Oct 6 17:49:59 2013 +0100

    Hide the images tab when images are not supported

M	src/easytag.c
M	src/easytag.h

commit b8998aa2c9ca2773c147d5a9c04f9c738f5510c1
Author: David King <amigadave@amigadave.com>
Date:	Sun Oct 6 11:10:50 2013 +0100

    Mark string array as containing const pointers

M	src/scan.c

commit 0fe89f4e592c7d957d2ea50716f98986adcbafb7
Author: David King <amigadave@amigadave.com>
Date:	Sun Oct 6 11:08:16 2013 +0100

    Remove some unnecessary includes

M	src/easytag.c
M	src/scan.c

commit 4bdd0d94c9810cd343b0168fb12036727648a7b9
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Oct 6 12:05:06 2013 +0100

    Add a Makefile for the user help

A	help/Makefile.am

commit e7209177cb8ed500e5f13ba2af39d7fe7b13fef4
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Oct 6 12:03:18 2013 +0100

    Move help images from figures/ to media/

M	help/C/index.page
R100	help/C/figures/icon.png help/C/media/icon.png

commit ec626307aa878f39d3b39aee5c382de9a89eb3c5
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Oct 6 11:49:20 2013 +0100

    Stub unwritten help pages

R100	help/C/applying-changes.page	help/C/applying-changes.page.stub
R100	help/C/tag-current.page help/C/tag-current.page.stub
R100	help/C/tag-edit.page	help/C/tag-edit.page.stub
R100	help/C/tag-save.page	help/C/tag-save.page.stub
R100	help/C/tag-selection.page	help/C/tag-selection.page.stub

commit 4648207792cede8773199dfb3dd1ed00025cc0b0
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Oct 6 11:29:39 2013 +0100

    Update keyboard-shortcuts help

M	help/C/keyboard-shortcuts.page

commit 791c5b0100fcac12ee8ec8f09f5dfc3c14f48ca8
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Oct 6 11:28:27 2013 +0100

    Prepare help index for a release

M	help/C/index.page

commit 47ef864bc542e72b0a94deb19239bea03b9a21aa
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Oct 6 11:28:07 2013 +0100

    Fix whitespace in help

M	help/C/format-specifier.page

commit f57adbdfd8db1863374125add075f387c944dc15
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Oct 6 11:22:56 2013 +0100

    Fix validation errors in help

M	help/C/applying-changes.page
M	help/C/tag-current.page
M	help/C/tag-edit.page
M	help/C/tag-save.page
M	help/C/tag-selection.page

commit d62f14b347152f62c47a33eaa3c89973bf7e1192
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Oct 6 11:13:41 2013 +0100

    Add another format specifier to help

M	help/C/format-specifier.page

commit 3857b11f4179f5fb32c83977cde0f7ce7f29a57e
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Oct 6 11:12:54 2013 +0100

    Tidy up file-rename help page

R071	help/C/rename-file.page help/C/file-rename.page
M	help/C/scanner.page

commit ff3084dd694153e311a8f5b3293d27c4c68118bd
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Oct 6 11:08:40 2013 +0100

    Finish scanner help page

M	help/C/scanner.page

commit c3b8728863f76c3ded465dfe45d212502a1505cc
Author: David King <amigadave@amigadave.com>
Date:	Sat Oct 5 14:28:39 2013 +0100

    Revert "[patch] debian/patches/01-autoload.patch"

    This reverts commit 820c5ae2ddc319073d23d308204069850c1682a2.

    A bug where EasyTAG would not load a directory passed as an
    argument was
    fixed and released in version 2.1.7:

    https://bugs.launchpad.net/ubuntu/+source/easytag/+bug/230873

    However, the underlying cause was an invalid read when checking if the
    current path in the browser was valid, in Browser_Update_Current_Path.
    Fixing the underlying cause exposed a problem introduced by the
    original
    patch, which lead to the initial directory being loaded twice.

    Fixes bug 689445.

M	src/easytag.c

commit 4042a4a976f87afd7a22d62e549732d2cc844118
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Wed Oct 2 00:01:52 2013 +0200

    Updated Slovenian translation

M	po/sl.po

commit bf50b5932c4604952c5e7a2a7e6b1d4bcda92ebc
Author: Muhammet Kara <muhammetk@gmail.com>
Date:	Sun Sep 29 17:45:26 2013 +0300

    [l10n]Updated Turkish translation

M	po/tr.po

commit 7e24d7b661af674bde14f8aa9939caf5686a6526
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Sun Sep 29 13:58:10 2013 +0200

    Updated Slovenian translation

M	po/sl.po

commit 21f775122bd0fae34d925886a8752e9ffa69563c
Author: David King <amigadave@amigadave.com>
Date:	Sat Sep 28 16:19:37 2013 +0100

    Disable preservation of mtime by default

    As mentioned in bug 708962, EasyTAG preserves the modication time of
    files when writing metadata, which causes any application that
    monitors
    the mtime for changes to not notice that the file has changed. Change
    the default to update the mtime of the file and the parent directory.

M	src/setting.c

commit 26b84237478b4ba199e5a1fd74da77408a668f13
Author: Martin Srebotnjak <miles@filmsi.net>
Date:	Tue Sep 24 20:51:08 2013 +0200

    Updated Slovenian translation

M	po/sl.po

commit eaf6512e8a96df6648cde518adcc614b995f4f7b
Author: David King <amigadave@amigadave.com>
Date:	Wed Sep 11 19:33:48 2013 +0100

    Fix double free in Rename_Directory()

    Fix double free added inadvertently in commit
    1235ca9469d3d625f1b5a38cf3da504c76469794.

M	src/browser.c

commit 3bde1032d574b5cd3cb02ddf731d02f2f1cad1d3
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Mon Sep 9 22:01:03 2013 +0200

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit d26dc3c8a5db5b9f0413dc022d66e2834ad581d5
Author: David King <amigadave@amigadave.com>
Date:	Fri Sep 6 09:54:51 2013 +0100

    Activate the path entry when opening a directory

    As reported in bug 707577, opening a directory from the main
    window with
    the button adjacent to the path entry only updates the entry, and does
    not open the directory in the file browser. Emit the "activate" signal
    on the GtkEntry to browse to the directory after opening it.

M	src/misc.c

commit 10828198f3aa6a034df8e8907bc65e5f7ff5a557
Author: Aurimas Černius <aurisc4@gmail.com>
Date:	Thu Sep 5 21:03:38 2013 +0300

    Updated Lithuanian translation

M	po/lt.po

commit 02804b4c5e69d3ac5f5a8df6a38009ef6cb90672
Author: Milagros Alessandra Infante Montero <maim92@gmail.com>
Date:	Wed Sep 4 12:27:48 2013 +0200

    Updated Spanish translation

M	po/es.po

commit 61c753b10bfed9ffc5a4b4de7ac101da9ef1c468
Author: David King <amigadave@amigadave.com>
Date:	Tue Sep 3 13:14:08 2013 +0100

    Fix categories in desktop file

    If the categories include AudioVideo, one of Audio or Video should
    also
    be included.

M	data/easytag.desktop.in

commit b18c6c74f173b40ac7c1140ea8f945acaa7097c9
Author: Balázs Úr <urbalazs@src.gnome.org>
Date:	Mon Aug 26 19:16:07 2013 +0200

    Updated Hungarian translation

M	po/hu.po

commit 1b9de6a9b435eb989010a7bb904aa947fd1c8fc3
Author: Enrico Nicoletto <liverig@gmail.com>
Date:	Fri Aug 23 20:01:36 2013 -0300

    Updated Brazilian Portuguese translation

M	po/pt_BR.po

commit a21f8e5fa594d4c6c5a275c029be39ac8e66a2cb
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Fri Aug 23 01:21:30 2013 +0200

    Updated Polish translation

M	po/pl.po

commit 960ffcb991994b20723bc9979a43bed2e8b8d417
Author: David King <amigadave@amigadave.com>
Date:	Wed Aug 21 22:51:19 2013 +0100

    Add repository location and license to DOAP file

M	easytag.doap

commit 90d8f15f2ac55ba0f33813ede1ac609f282b1a0b
Author: Marek Černocký <marek@manet.cz>
Date:	Tue Aug 20 13:41:40 2013 +0200

    Updated Czech translation

M	po/cs.po

commit 69dbd02480ae2d6503c5cefbe5af30a3e0223feb
Author: David King <amigadave@amigadave.com>
Date:	Mon Aug 19 23:41:53 2013 +0100

    Consistently use typographic quotes in UI string

    As pointed out in bug 705952.

M	src/id3v24_tag.c

commit 1f15ebcf47d58b9511309445f8f7e910f147f469
Author: David King <amigadave@amigadave.com>
Date:	Sun Aug 18 11:05:18 2013 +0100

    Use correct platform-specific accelarator modifier

    GTK+ 2.24.7 (and GTK+ 3.2.1) introduced the concept of a
    platform-agnostic accelerator modifier, "Primary", which can be used
    instead of "Control". Using "Primary", the correct modifier is chosen
    depending on the platform, for example the Option key would be used on
    Mac OS X.

    Use the new "Primary" modifier and bump the GTK+ dependencies to build
    with versions which include the support.

M	configure.ac
M	src/bar.c

commit f02b8154747e00042ba4034d3d6214a8e65fc33b
Author: Milagros Alessandra Infante Montero <maim92@gmail.com>
Date:	Fri Aug 16 11:22:50 2013 +0200

    Updated Spanish translation

M	po/es.po

commit 17715f72315db49fb84c076b0da1db0c98b18257
Author: Aurimas Černius <aurisc4@gmail.com>
Date:	Thu Aug 15 20:58:20 2013 +0300

    Updated Lithuanian translation

M	po/lt.po

commit 105117b43da8e7dee6036d463f5fc74a5497dd25
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Thu Aug 15 02:36:42 2013 +0200

    Updated Polish translation

M	po/pl.po

commit c5f606f5ff9ca923103031d65cd8fd29e8b3c3d7
Author: Enrico Nicoletto <liverig@gmail.com>
Date:	Wed Aug 14 12:00:54 2013 -0300

    Updated Brazilian Portuguese translation

M	po/pt_BR.po

commit 18b7a3d0b4ba915272b811e2ec8a6bfb997c3fb8
Author: Marek Černocký <marek@manet.cz>
Date:	Wed Aug 14 15:35:21 2013 +0200

    Updated Czech translation

M	po/cs.po

commit 262a7b44ff76eb00443f2ced3f311878e291e347
Author: Andrea Veri <av@gnome.org>
Date:	Wed Aug 14 11:51:29 2013 +0200

    Fix <name> to exactly match repository's name.

M	easytag.doap

commit 3fd5461eda337ef2dacca873e9608e5d393b8375
Author: David King <amigadave@amigadave.com>
Date:	Wed Aug 14 09:02:53 2013 +0100

    Avoid macro in translatable string, bug 705952

    Avoid using G_GSIZE_FORMAT in a translatable string, as xgettext does
    not extract such strings correctly:

    http://savannah.gnu.org/bugs/index.php?19086

M	src/id3v24_tag.c

commit 4b675626838e1e05dd638590f6e6f3b0832d54a4
Author: Milagros Alessandra Infante Montero <maim92@gmail.com>
Date:	Tue Aug 13 11:19:41 2013 +0200

    Updated Spanish translation

M	po/es.po

commit 0bd3a28efef2e3d0c43074517e565d2912712b6f
Author: David King <amigadave@amigadave.com>
Date:	Mon Aug 12 17:38:25 2013 +0100

    Fix sizeof operand in libapetag_maloc_cont_int

    Found with the Clang static analyzer.

M	src/libapetag/apetaglib.c

commit cf46e0368bd53412643a80941b278fd60ffdb605
Author: David King <amigadave@amigadave.com>
Date:	Mon Aug 12 16:43:06 2013 +0100

    Refactor ET_Detect_Changes_Of_File_Tag()

    Improve for loop for iterating pictures associated with the tag, and
    avoid a potential NULL dereference found with the Clang static
    analyzer.

M	src/et_core.c

commit 927415f0338a6c5262973ff19497239b1749264d
Author: David King <amigadave@amigadave.com>
Date:	Mon Aug 12 16:42:00 2013 +0100

    Refactor ET_Detect_Changes_Of_File_Name()

    Express the conditional checks more clearly, and avoid a potential
    NULL
    dereference found by the Clang static analyzer.

M	src/et_core.c

commit db1580b731ee5075ee2f3ea6b6f1a082c09bd4de
Author: David King <amigadave@amigadave.com>
Date:	Mon Aug 12 16:40:26 2013 +0100

    Fix arguments passed to Log_Print()

    The recent change to mark Log_Print() as a printf-style function
    exposed
    a few instances where an incorrect format specifier was used.

M	src/id3v24_tag.c
M	src/misc.c

commit 647bc74ed8935d746016c3532aa2392838532bb4
Author: David King <amigadave@amigadave.com>
Date:	Mon Aug 12 16:39:27 2013 +0100

    Mark insert_locales() with G_GNUC_NULL_TERMINATED

M	src/charset.c

commit 6fa1490e92aa887799ad87b2cdf2475845ea7be0
Author: David King <amigadave@amigadave.com>
Date:	Mon Aug 12 16:38:23 2013 +0100

    Mark Log_Print() with G_GNUC_PRINTF

    GCC can type-check arguments passed to printf-style functions.

M	src/log.h

commit 5e5028234e27ad49cb3ab8b44e8b43ae7ca4f6cb
Author: David King <amigadave@amigadave.com>
Date:	Mon Aug 12 16:36:53 2013 +0100

    Refactor Set_Config() slightly

    Check and report if a configuration key is not found and also if an
    empty value is found.

M	src/setting.c

commit 1235ca9469d3d625f1b5a38cf3da504c76469794
Author: David King <amigadave@amigadave.com>
Date:	Mon Aug 12 16:36:03 2013 +0100

    Avoid memory leak in Rename_Directory()

    Found with the Clang static analyzer.

M	src/browser.c

commit 89dbc6163b1c6ac7dd9398053a85104fbc2332ba
Author: David King <amigadave@amigadave.com>
Date:	Mon Aug 12 16:34:42 2013 +0100

    Return early if gtk_tree_model_return_iter failed

M	src/cddb.c
M	src/picture.c

commit 55615028df7e2bbb7de82e8bdd70a56e595d8984
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 10 23:00:21 2013 +0100

    Avoid bogus comparison due to operator precedence

    Found with the Clang static analyzer.

M	src/misc.c

commit ae3ed103659887647e0c5edfe01ea4387557fe40
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 10 23:16:20 2013 +0100

    Avoid comparison with uninitialized values

    Found with the Clang static analyzer.

M	src/misc.c

commit c75426d3cd8fe18df075928e59bf7567b24da958
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 10 22:57:54 2013 +0100

    Mark Id3tag_Read_File_Tag() filename as const

M	src/id3_tag.h
M	src/id3v24_tag.c

commit 2af5eced21fd5a74d46e34a4db2a34e7b30f5655
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 10 22:55:48 2013 +0100

    Fix several instances of g_return_if_fail()

    When checking multiple conditions, ensure that all are checked. Found
    with the Clang static analyzer.

M	src/easytag.c
M	src/et_core.c
M	src/id3v24_tag.c
M	src/mp4_tag.c
M	src/picture.c
M	src/scan.c

commit aaf340588f96b657e527942b810cf190d5b176b5
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 10 22:53:46 2013 +0100

    Fix disc number tag writing for WavPack

    The track number was being used, which could lead to a NULL pointer
    dereference. Found by the Clang static analyzer.

M	src/wavpack_tag.c

commit 40d53066c2c0b0829d04719bc2fb98a11aa0a2bd
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 10 22:51:30 2013 +0100

    Add missing g_return_if_fail() calls

    Found with the Clang static analyzer.

M	src/browser.c
M	src/misc.c
M	src/setting.c

commit b7f399c65db5b09a375dc43cfa7bba9cda2167fe
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 10 22:49:46 2013 +0100

    Avoid setting argument unnecessarily

    Found with the Clang static analyzer.

M	src/cddb.c

commit b31ab1f7335e7b9cd345328e70f4e32b646a79ab
Author: Antonio Fernandes C. Neto <fernandesn@gnome.org>
Date:	Tue Aug 6 16:25:19 2013 -0300

    Updated Brazilian Portuguese translation

M	po/pt_BR.po

commit ff9f0832228e0250dd452ee9cc53967beb70c22f
Author: Enrico Nicoletto <liverig@gmail.com>
Date:	Tue Aug 6 10:42:29 2013 -0300

    Updated Brazilian Portuguese translation by Rafael Ferreira and me

M	po/pt_BR.po

commit df010e97b0ddb2d254dac1503c6d273e6b159ff4
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Mon Aug 5 21:50:14 2013 +0200

    Updated Polish translation

M	po/pl.po

commit e062c31df205d964977a610025686b8ee711bab5
Author: Marek Černocký <marek@manet.cz>
Date:	Sun Aug 4 21:44:23 2013 +0200

    Updated Czech translation

M	po/cs.po

commit 039f4f885a2c7881c8dfbecaad3b91df6e6b4c0d
Author: David King <amigadave@amigadave.com>
Date:	Tue Jul 30 16:48:27 2013 +0100

    Refactor Cddb_Open_Connection()

    Use GLib networking API rather than the obsolete gethostbyname().

M	src/cddb.c

commit c7218132fe499c5518ea01618bd1d561b737fd70
Author: David King <amigadave@amigadave.com>
Date:	Sat Aug 3 09:55:15 2013 +0100

    Remove version number from window title

    The version number is shown in the about dialogue.

M	src/easytag.c

commit f346277ca9cb27c9b12817f03934738477f5eebd
Author: David King <amigadave@amigadave.com>
Date:	Thu Aug 1 12:05:29 2013 +0100

    Remove out-of-date README_win32.txt

M	Makefile.am
D	README_win32.txt

commit 3a54038196cb885c6811d29840ad0c4fd202bf4b
Author: Marek Černocký <marek@manet.cz>
Date:	Tue Jul 30 00:45:40 2013 +0200

    Updated Czech translation

M	po/cs.po

commit d7d906f1445aed7b6b3f9ff60e7b40b4dc00194e
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Mon Jul 29 21:18:41 2013 +0200

    Updated Polish translation

M	po/pl.po

commit b1ae132a992f5fd4f0f06d9806b4ad8b4b13c272
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 13 22:59:43 2013 +0100

    Fix invalid reads when searching the file list

    Do not double-free the disc and track numbers.

M	src/misc.c

commit a4b1865d06ce750c742af6901ff3078b9a56e43a
Author: Mathias Reineke <saihtam@gmx.net>
Date:	Mon Jul 8 10:58:18 2013 +0200

    Add total discs support to WavPack tag parser

M	src/wavpack_tag.c

commit fc1755664d0d74d3950bc3e78c4e85c20f43a0f7
Author: Mathias Reineke <saihtam@gmx.net>
Date:	Mon Jul 8 10:58:09 2013 +0200

    Add total discs support to Vorbis tag parser

M	src/ogg_tag.c

commit f3aa5c9e56008baf66c848110985529cdf8a59a3
Author: Mathias Reineke <saihtam@gmx.net>
Date:	Mon Jul 8 10:58:00 2013 +0200

    Add total discs support to MP3/MP2 tag parser

M	src/id3_tag.c
M	src/id3v24_tag.c

commit b8ce05b2ad9b04b9961a8cef9fd353821ad057d4
Author: Mathias Reineke <saihtam@gmx.net>
Date:	Mon Jul 8 10:57:41 2013 +0200

    Add total discs support to FLAC tag parser

M	src/flac_tag.c

commit b88341f1fe54e042a3093b27ee3c6ec86dcdf95e
Author: Mathias Reineke <saihtam@gmx.net>
Date:	Mon Jul 8 10:56:22 2013 +0200

    Add total discs support to APE tag parser

M	src/ape_tag.c

commit 79128c2444def9738bc2e78435d3c24fcdec2434
Author: Mathias Reineke <saihtam@gmx.net>
Date:	Mon Jul 8 10:53:06 2013 +0200

    Added scanner mask for total number of discs "%x"

M	src/scan.c

commit 12c258d54ab82c340913de85bae86df179695187
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 13 20:03:58 2013 +0100

    Automatically split and combine disc numbers

    Using '/' as the separator, split the disc number text entry
    field into
    a disc number and the total number of discs. Combine the two tag
    fields
    into one for display in the UI.

M	src/easytag.c
M	src/et_core.c

commit 014407371ea02397239c4ba40f878d693ad2a04c
Author: Mathias Reineke <saihtam@gmx.net>
Date:	Mon Jul 8 10:50:00 2013 +0200

    Add support for "total number of discs"

M	src/browser.c
M	src/easytag.c
M	src/et_core.c
M	src/et_core.h
M	src/flac_tag.c
M	src/misc.c

commit 20aa21b2bd68275cec5fbd9e36186b4c7e6eb14f
Author: Mathias Reineke <saihtam@gmx.net>
Date:	Mon Jul 8 10:42:15 2013 +0200

    Add settings to control padding of disc numbers

M	src/misc.c
M	src/misc.h
M	src/prefs.c
M	src/prefs.h
M	src/setting.c
M	src/setting.h

commit 6d56c28043c789d767c745d8fa0dd0b23415cada
Author: Martin Srebotnjak <miles@filmsi.net>
Date:	Fri Jul 26 21:18:31 2013 +0200

    Updated Slovenian translation

M	po/sl.po

commit 6624ef4b2985f796fb89a13f31330a8bd436475d
Author: David King <amigadave@amigadave.com>
Date:	Mon Jul 22 22:25:03 2013 +0100

    Remove executable bit from source files

M	src/log.c
M	src/misc.c

commit f07ea380af15e193ddcdc362b367695547711d5b
Author: Pinak Ahuja <pinak.ahuja@gmail.com>
Date:	Sat Jul 20 18:09:45 2013 +0100

    Use GDateTime instead of localtime()

M	src/log.c
M	src/misc.c

commit d2f6953d4f9b44ce7b688ff1a26c22393b568244
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 20 00:04:50 2013 +0100

    Use g_strstrip() instead of Strip_String()

M	src/cddb.c
M	src/et_core.c
M	src/id3v24_tag.c
M	src/misc.c
M	src/misc.h
M	src/picture.c

commit a9214fa96b422e2b5c608d942b5a7ad0620f3a17
Author: Aurimas Černius <aurisc4@gmail.com>
Date:	Sun Jul 14 22:31:17 2013 +0300

    Updated Lithuanian translation

M	po/lt.po

commit 6d245ae2860382154c9636f9a79994946c43b0cb
Author: Christian Kirbach <christian.kirbach@gmail.com>
Date:	Sun Jul 14 11:43:36 2013 +0200

    Updated German translation

M	po/de.po

commit d29e765df594d8eecc65a7d6d3e68d63bbb32878
Author: David King <amigadave@amigadave.com>
Date:	Sat Jul 13 18:16:44 2013 +0100

    Set default response on quit dialog

M	src/easytag.c

commit 41d6717f7349b760f28fa705f6036a7bb6b567da
Author: Dimitris Spingos <dmtrs32@gmail.com>
Date:	Fri Jul 12 12:11:33 2013 +0300

    Updated Greek translation

M	po/el.po

commit d722f8375c7d2ad974d726cd2516f5b797a7dd35
Author: Milagros Alessandra Infante Montero <maim92@gmail.com>
Date:	Thu Jul 11 09:52:16 2013 +0200

    Updated Spanish translation

M	po/es.po

commit 5cb7ebb2d7f46855f6b34bd84068c86b304fe748
Author: Mathias Reineke <saihtam@gmx.net>
Date:	Mon Jul 8 10:44:19 2013 +0200

    Add APE tag "part" constant

M	src/ape_tag.c
M	src/libapetag/apetaglib.h
M	src/libapetag/id3v2_read.c

commit 10705705a02cd1b7ded3a4ce6c370e8940766dac
Author: Mathias Reineke <saihtam@gmx.net>
Date:	Mon Jul 8 10:13:50 2013 +0200

    Refactor track number to string formatting

    Add et_track_number_to_string() to consistently handle track number
    formatting.

M	src/ape_tag.c
M	src/cddb.c
M	src/easytag.c
M	src/et_core.c
M	src/flac_tag.c
M	src/id3v24_tag.c
M	src/misc.c
M	src/misc.h
M	src/mp4_tag.c
M	src/ogg_tag.c
M	src/wavpack_tag.c

commit a7647f787df41313c73bf4323a6cb2fb33b4e67c
Author: Mathias Reineke <saihtam@gmx.net>
Date:	Mon Jul 8 09:59:36 2013 +0200

    Avoid continual growth of TrackEntryComboModel

M	src/misc.c

commit 69acba53b662afff948dd55219d2143c78aa4888
Author: Marek Černocký <marek@manet.cz>
Date:	Tue Jul 9 23:52:18 2013 +0200

    Updated Czech translation

M	po/cs.po

commit bd27511d7ee1e7931e9df72338bc8ad40f71294c
Author: Milagros Alessandra Infante Montero <maim92@gmail.com>
Date:	Mon Jul 8 13:30:08 2013 +0200

    Updated Spanish translation

M	po/es.po

commit af3467250aff8b0574f1c50a97a9f0bd8028d110
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Jul 7 22:20:40 2013 +0200

    Updated Polish translation

M	po/pl.po

commit bde255765ffeab0dc59f29ce366a74ab164e2d99
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 7 15:37:55 2013 +0100

    Fix Roman numeral check button startup sensitivity

    Rather than always setting the Roman numeral check button sensitive in
    the scan dialog, do so only if the associated capitalizatin radio
    button
    is active.

M	src/scan.c

commit 80bb13fd9f9e4b544005b986b4c105d510235266
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 7 15:00:42 2013 +0100

    Visually group radio buttons in the scan dialog

    Use a new GtkBox per group of radio buttons, and add spacing
    between the
    groups so that it is more obvious to which group each option belongs.

M	src/scan.c

commit 89fcce5b8a374f98ad23c1f6365346428de7ce5b
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 7 14:36:34 2013 +0100

    Allow the scan files button to be made default

M	src/scan.c

commit 5db7d7b0ed2ffd90a42feb29ba4e362faf018946
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 7 14:26:27 2013 +0100

    Remove redundant grouping of scanner radio buttons

    As the scan dialog radio buttons are in built-in groups, there is no
    need to add them to additional groups and manage the toggled state
    inside EasyTAG.

M	src/scan.c

commit 880cc2a09465831653970d41d5196f143c506b0c
Author: David King <amigadave@amigadave.com>
Date:	Sun Jul 7 14:20:59 2013 +0100

    Use radio buttons in scan dialog

    Convert check buttons in scan dialog to logical groups of radio
    buttons.

M	src/scan.c

commit e44a4a0daf30b353228e54a35ba0133c24356982
Author: Marek Černocký <marek@manet.cz>
Date:	Sat Jul 6 13:22:45 2013 +0200

    Updated Czech translation

M	po/cs.po

commit 51743a7d2bdc2951877aa708c25f1875be40a22f
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Fri Jul 5 21:17:08 2013 +0200

    Updated Polish translation

M	po/pl.po

commit b972cc1316909293260d74a29873de6b19eda672
Author: David King <amigadave@amigadave.com>
Date:	Thu Jul 4 21:57:45 2013 +0100

    Make application startup similar to GtkApplication

    Call gtk_init() at the end of startup, to act similarly to
    GtkApplication. Move startup handler to EtApplication. Move gettext
    initialisation to main().

M	src/application.c
M	src/easytag.c

commit 4553b5d17edbc33a015a23d6207feea3bf45fc96
Author: David King <amigadave@amigadave.com>
Date:	Thu Jul 4 20:36:02 2013 +0100

    Use GOptionContext for --help output

M	src/application.c

commit 209fca39a7fede760cc88f169b09b285a9ef63cf
Author: David King <amigadave@amigadave.com>
Date:	Mon Jul 1 23:09:12 2013 +0100

    Set default response ID on GtkDialogs

    Set a default response ID, so that the affirmative action is the
    default
    action for dialogs.

M	src/browser.c
M	src/easytag.c
M	src/misc.c
M	src/prefs.c
M	src/scan.c

commit 74c767cd9fc42b1affd467f1f3d603e13b14058d
Author: Milagros Alessandra Infante Montero <maim92@gmail.com>
Date:	Mon Jul 1 11:18:46 2013 +0200

    Updated Spanish translation

M	po/es.po

commit c6423e03573c908dad3031cfcdbfddfda25b305e
Author: Marek Černocký <marek@manet.cz>
Date:	Wed Jun 26 18:36:01 2013 +0200

    Updated Czech translation

M	po/cs.po

commit 94c066cae83cba68f3c2a99f40325b3c9c1f5907
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Wed Jun 26 16:48:55 2013 +0200

    Updated Polish translation

M	po/pl.po

commit 8af6f153396e6d297f8da4254bc2dcc59a25ca89
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed Jun 26 00:11:50 2013 +0100

    Mark introduction help pages as candidate

M	help/C/introduction.page
M	help/C/starting.page

commit c993ce78d8846c883f2626db68bb48202dd6ce0f
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed Jun 26 00:10:43 2013 +0100

    Update the keyboard shortcuts help page

M	help/C/keyboard-shortcuts.page

commit abc2ae96e05546bbf567faa693bd5ddfe6ffa863
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed Jun 26 00:10:10 2013 +0100

    Finish the format specifier help page

M	help/C/format-specifier.page

commit c2cfd7402a38106cac8ac9113bd6af6d3e76fdc8
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed Jun 26 00:07:38 2013 +0100

    Improve undo tooltip capitalisation

M	src/bar.c

commit 2694cea716c4b56282a4a31da145403b237c692f
Author: Marius Gavrilescu <marius@ieval.ro>
Date:	Tue Jun 25 11:20:10 2013 +0300

    Map "illustration" in picture name to correct type

M	src/picture.c

commit e2bb656cb477ea77be5e9e36b06413d88235bdea
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Mon Jun 24 23:57:17 2013 +0100

    Review image help pages

M	help/C/image-delete.page
M	help/C/image-export.page
R100	help/C/image-reset.page help/C/image-properties.page.stub
R100	help/C/image-properties.page	help/C/image-reset.page.stub
M	help/C/image.page

commit 941cc977d71a8ed593d8d423d4960903d1898232
Author: Milagros Alessandra Infante Montero <maim92@gmail.com>
Date:	Mon Jun 24 10:47:10 2013 +0200

    Updated Spanish translation

M	po/es.po

commit 60c0ee5aa54f65d92201aee5913228268cb2afb4
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 23 22:43:51 2013 +0100

    Avoid empty file list NULL pointer dereference

M	src/et_core.c

commit 2aa432144b6dee0737ddd44dbdc4d70bbd2de6e0
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 23 22:14:07 2013 +0100

    Do not clear finalized scanner GtkListStores

    The GtkListStores are finalized when the scanner window is destroyed.

M	src/scan.c

commit e13ae0f587d460befb7a4b7a03c7288a2b73a29a
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:	Sun Jun 23 23:10:57 2013 +0200

    Updated German translation

M	po/de.po

commit 7837f8906d3126bc5774c348d9cf06a231d35022
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 23 20:22:51 2013 +0100

    Use GApplication::startup

    Move initialisation code to on_application_startup() to better
    fit with
    how GApplication should be used:

    https://live.gnome.org/HowDoI/GtkApplication

M	src/easytag.c

commit 48df5ca2652f3ddef9037b377d471ddd1e425797
Author: David King <amigadave@amigadave.com>
Date:	Tue Jun 11 19:02:54 2013 +0100

    Unref GtkListStores and a GtkTreeStore

    GtkListStore and GtkTreeStore inherit from GObject and not
    GInitiallyUnowned, and so start with a reference count of 1 and no
    floating reference. Therefore, they must be unreffed after adding to a
    view in order to be finalized when the view is destroyed.

    The remaining list stores are difficult to disentangle from the
    surrounding code, so have been left unchanged.

M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/log.c
M	src/misc.c
M	src/picture.c
M	src/scan.c

commit 7fffb3ebdbeaa018c1708b3b63493386b050879f
Author: David King <amigadave@amigadave.com>
Date:	Wed Jun 12 08:10:34 2013 +0100

    Do not keep track of the number of log items

    Query the number of items in the log list store with
    gtk_tree_model_iter_n_children() rather than holding the state in a
    separate variable.

M	src/log.c

commit 9a8dd29975a6032a64e870eba94fe2b0f423c229
Author: David King <amigadave@amigadave.com>
Date:	Tue Jun 11 22:09:32 2013 +0100

    Connect to GApplication::shutdown

    Slightly rearrange the exit sequence to use the "shutdown" signal of
    GApplication. Return from main() rather than calling exit().

M	src/easytag.c

commit e0442b607de8bc5c67357a8ad7137920201313a8
Author: David King <amigadave@amigadave.com>
Date:	Tue Jun 11 19:00:37 2013 +0100

    Remove unneccesary key-press-event signal handlers

    GtkDialog handles the Escape key being pressed without the need for a
    custom handler.

M	src/cddb.c
M	src/misc.c

commit d61d2aad019f681884bdc51e24cbef79de2cdd1e
Author: David King <amigadave@amigadave.com>
Date:	Tue Jun 11 07:30:33 2013 +0100

    Translate Images notebook menu string, bug 701963

M	src/et_core.c

commit 0c86c6a57ef185253f5cc9eabcf4c93c27e6f02f
Author: David King <amigadave@amigadave.com>
Date:	Mon Jun 10 23:16:34 2013 +0100

    Add several items to TODO

M	TODO

commit c1bfe1f271ea6fbd983cd27cc89cf363ccd7a2d0
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Fri Jun 7 18:53:50 2013 +0200

    Updated Polish translation

M	po/pl.po

commit e8c617774eaa35c86ff685675d3f49dd15b61a6f
Author: David King <amigadave@amigadave.com>
Date:	Wed Jun 5 22:53:54 2013 +0100

    Apply the disc number to all selected files

    Fix a typo made when refactoring use of GList, and loop through
    all the
    selected files when applying the disc number to the selection rather
    than just taking the first file.

M	src/easytag.c

commit d47c6cb97515199ce336751da62bcbeafde0525c
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 2 22:18:36 2013 +0100

    Fix Ogg header and body length format specifier

    The length is a long and not a gsize.

M	src/vcedit.c

commit 60e0e23a91e3cbbe5407ffa50388937e703bdb5e
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Jun 2 22:23:49 2013 +0100

    Finish content for deleting and saving images help

M	help/C/image-delete.page
M	help/C/image-export.page

commit 2c188d3efaa5928b0b421583bd4e42843cd1613d
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 2 20:59:33 2013 +0100

    Use GtkSpinButton for selecting CDDB port numbers

    Using a spin button makes it unnecessary to restrict input to
    digits, as
    this is done automatically.

M	src/prefs.c

commit 700c86aadc6e16e4941ceb06a37cfb0b9e57b4b0
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 2 18:12:21 2013 +0100

    Port ogg_header.c to use GFile instead of POSIX IO

    Fixes bug 701467.

M	src/ogg_header.c
M	src/ogg_header.h

commit c8bc7d4bb842f8431cd3124d45ca1a633d87c663
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 2 13:26:49 2013 +0100

    Adjust keyboard accelerators to fit the GNOME HIG

    Only use Control as an accelerator prefix. Make the reload action use
    Control+R rather than F5. Use Control+E for removing (erasing) tags.

M	src/bar.c

commit 4a51e046d58c82706d76c2d481f4f8c9e09a247e
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 2 13:17:37 2013 +0100

    Improve collapse and reload directory tooltips

M	src/bar.c

commit 8eefaf5af3329089818c1a216ae75cc7868a79d4
Author: David King <amigadave@amigadave.com>
Date:	Sun Jun 2 09:36:26 2013 +0100

    Use g_output_stream_write_all() throughout

    As with commit 6eb3d68f9afa0f44922aa275f11368a61ce79a6b, use the
    _all()
    variant when writing a chunk of data to a stream. Only report
    errors on
    failure to write the whole chunk.

M	src/id3_tag.c
M	src/log.c
M	src/misc.c
M	src/vcedit.c

commit 6eb3d68f9afa0f44922aa275f11368a61ce79a6b
Author: David King <amigadave@amigadave.com>
Date:	Sat Jun 1 23:29:24 2013 +0100

    Use _all() variants with streams when appropriate

    Use the _all() variants of g_input_stream_read() and
    g_output_stream_write() when accessing a required chunk from the
    stream.
    Only report errors on failure to read or write the whole chunk.

M	src/crc32.c
M	src/ogg_tag.c
M	src/picture.c

commit 1d6aa8737acd03ac98bea60bceb168f14e8b11c8
Author: David King <amigadave@amigadave.com>
Date:	Sat Jun 1 22:57:04 2013 +0100

    Fix memory leak in ogg_tag_write_file_tag()

M	src/ogg_tag.c

commit af6820acc069d23d955538850b3f523749912687
Author: David King <amigadave@amigadave.com>
Date:	Sat Jun 1 22:37:47 2013 +0100

    Avoid setting the playlist basename unnecessarily

    Found by cppcheck.

M	src/misc.c

commit 5f4850ff100356cc7c0f549f038addaef5e3fded
Author: David King <amigadave@amigadave.com>
Date:	Sat Jun 1 21:41:59 2013 +0100

    Return TRUE on succesful Ogg tag writing

    When vcedit_write() was converted to return a gboolean rather than an
    int, it was not also converted to return TRUE on success, and instead
    continued to return 0. Fix this to avoid an assert when successfully
    writing Ogg tags.

M	src/vcedit.c

commit 48230067e4fff6631a6e047e09a9a265e3b85a42
Author: David King <amigadave@amigadave.com>
Date:	Thu May 30 22:56:52 2013 +0100

    Ignore Ogg EOF and EOS errors when reading packets

    The errors do not indicate failure, but merely the end of stream and
    file, so ignore them.

M	src/easytag.c
M	src/misc.c
M	src/vcedit.c

commit 66011431dd4da6463c9e2e4ef664e3af13150c6f
Author: David King <amigadave@amigadave.com>
Date:	Sat Jun 1 19:15:57 2013 +0100

    Use gtk_[list|tree]_store_insert_with_values()

    Rather than inserting or appending a row and then setting values
    on it,
    simply insert a new row and set values in a single call.

M	src/browser.c
M	src/cddb.c
M	src/log.c
M	src/misc.c
M	src/picture.c
M	src/scan.c
M	src/setting.c

commit 4391979a38d5a95ec3de051e85f27b0c7a1cacca
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sat Jun 1 00:38:28 2013 +0200

    Updated Polish translation

M	po/pl.po

commit eef302d96805d1adfcafaeaf95110198dd07172a
Author: David King <amigadave@amigadave.com>
Date:	Thu May 30 22:26:14 2013 +0100

    Improve reporting of Ogg tagging errors

M	src/easytag.c
M	src/ogg_tag.c
M	src/ogg_tag.h

commit 656a4d8780bfc05287d01826fc6cf571cfb44914
Author: David King <amigadave@amigadave.com>
Date:	Thu May 30 22:11:55 2013 +0100

    Do not set function arguments to NULL

    Avoid setting function arguments to NULL, as the change will have no
    effect outside the function. Found with cppcheck.

M	src/et_core.c

commit 460e1c39444a5a4e2ad391af51b1c87fa51dbd39
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed May 29 21:23:07 2013 +0100

    Add help for keyboard shortcuts

A	help/C/keyboard-shortcuts.page

commit ed372e15c67abc7471625baf3c9378f9fbafa439
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed May 29 21:18:19 2013 +0100

    Update starting help page as the UI changed

M	help/C/starting.page

commit 5f32823e169e79c52651ff7f47c89bdc39dd35b2
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed May 29 21:17:11 2013 +0100

    Add untranslatable markup to help introduction

M	help/C/introduction.page

commit 4bb1f0cd275e2daea8ebc433e058d30e36d4bfc5
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed May 29 21:08:29 2013 +0100

    Update help for tagging

R065	help/C/tag-field.page.stub	help/C/tag-field.page
M	help/C/tag.page

commit 7ddc6edc346e794f835e5b3d664dac3ba9e30407
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed May 29 21:07:28 2013 +0100

    Update help for the image tag field

A	help/C/image-delete.page
A	help/C/image-export.page
M	help/C/image.page

commit 9d4fffdeb3cdaf7d84ef912a8b847c28ccafcbdf
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed May 29 21:05:36 2013 +0100

    Add new sections to the index page

M	help/C/index.page

commit 3e659fe63cb1137b66a3b2c5a32fc1848ddf8804
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed May 29 21:02:18 2013 +0100

    Link scanner help to format specifier help

M	help/C/scanner.page

commit b9598b0a6bb9e186c79399d3c5f55385664b41d0
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed May 29 20:59:36 2013 +0100

    Add help page for the format specifier legend

A	help/C/format-specifier.page

commit 470bce483dccef811b154e8219c02e57ce1efcad
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Tue May 28 20:33:08 2013 +0100

    Remove use of GDataInputStream

    None of the features of GDataInputStream over GFileInputStream were
    used, so it was unnecessary.

M	src/ogg_tag.c
M	src/vcedit.c
M	src/vcedit.h

commit 6d4452f0d939993b5323d535f4329d9a8424ee55
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Tue May 28 20:22:01 2013 +0100

    Correct type of TagType in error string

M	src/et_core.c

commit b6167847bce012167acaf5f25dddcfef545181b9
Author: David King <amigadave@amigadave.com>
Date:	Mon May 27 20:09:46 2013 +0100

    Refactor list handling in flac_tag.c

    Iterate over GList with a for loop. Use g_list_next() rather than
    GList->next directly.

M	src/flac_tag.c

commit 344038d846ed0f8d1546c098a5e67af8b876656a
Author: David King <amigadave@amigadave.com>
Date:	Fri May 24 00:00:51 2013 +0100

    Refactor list handling in bar.c

    Use g_list_prepend() rather than g_list_append() to populate a GList.
    Reverse the resulting list with g_list_reverse().

M	src/bar.c

commit edaa4ccb37611e4b73895fb07e9ad68ff969654c
Author: David King <amigadave@amigadave.com>
Date:	Wed May 22 22:24:57 2013 +0100

    Refactor list handling in misc.c

    Use a for loop to iterate over GList. Use g_list_next() to access the
    next list element, rather than GList->next. Use g_list_free_full() to
    free lists with dynamically-allocated elements. Do not check wither a
    GList has a length of 0. Keep a pointer to the start of a list so that
    it can be freed later.

M	src/misc.c

commit a6cbb7812df1cd303695762f4895ff2c0ffe7192
Author: David King <amigadave@amigadave.com>
Date:	Wed May 22 21:17:18 2013 +0100

    Refactor list handling in picture.c

    Use g_list_next() rather than GList->next to access the next
    element in
    a list. Use g_list_free_full() to free lists with
    dynamically-allocated
    elements. Keep a pointer to the start of the list for freeing
    it later.
    Free the GtkTreePaths returned from
    gtk_tree_selection_get_selected_rows().

M	src/picture.c

commit 2b69b2f78350f58ce4be74ba680b55019b7116f0
Author: David King <amigadave@amigadave.com>
Date:	Wed May 22 20:13:19 2013 +0100

    Refactor list handling in cddb.c

    Do not check if a GList has 0 length. Use a for loop to iterate over
    GList. Use g_list_free_full() to free a list with
    dynamically-allocated
    elements. Use g_list_next() rather than GList->next to access the next
    element in a list. Keep a pointer to the start of the list so that it
    can be freed later. Populate GList by prepending to it, rather than
    appending.

M	src/cddb.c

commit c4cadecfe89ffa0640bbbde60949ee32ac1563e5
Author: David King <amigadave@amigadave.com>
Date:	Wed May 22 20:12:58 2013 +0100

    Refactor list handling in browser.c

    Do not check if a GList has a length of 0. Use g_list_free_full() to
    free lists with dynamically-allocated elements. Use for loops
    to iterate
    over GList. Store a pointer to the start of the list so that it can be
    freed later. Prepend to a list, rather than appending, when populating
    it.

M	src/browser.c

commit d85977a6e5f893de12903571b59dfa4a3072d6db
Author: David King <amigadave@amigadave.com>
Date:	Thu May 23 19:59:56 2013 +0100

    Refactor list handling in scan.c

    Use a for loop to iterate over GList. Use g_list_next() rather than
    GList->next to access the next list element. Keep a pointer to
    the start
    of the list so that it can be freed later. Do not check if the
    length of
    a list is 0. Use g_list_free_full() to free lists with
    dynamically-allocated elements.

M	src/scan.c

commit 98d756f597eb74ff79a36f1c13ce0aad0fe3b416
Author: David King <amigadave@amigadave.com>
Date:	Thu May 23 19:59:47 2013 +0100

    Refactor list handling in log.c

    Iterate over GList with a for loop. Keep a pointer to the start of the
    list so that it can be freed later.

M	src/log.c

commit dfa15f2a071a959068d7a3b5808d37dc58fadeaa
Author: David King <amigadave@amigadave.com>
Date:	Thu May 23 19:59:37 2013 +0100

    Refactor list handling in et_core.c

    Iterate over GList with a for loop. Use g_list_free_full() to
    free lists
    with dynamically-allocate elements. Keep a pointer to the start of the
    list so that it can be freed later. Fix some invariant checks against
    lists.

M	src/et_core.c

commit 83f92578b246dc07c27ee974900bf5976bf5e5c5
Author: David King <amigadave@amigadave.com>
Date:	Thu May 23 19:59:26 2013 +0100

    Refactor list handling in easytag.c

    Use a for loop to iterate over GList. Prepend, rather then append,
    when
    populating a GList. Keep a pointer to the start of the list so that it
    can be freed later. Use g_list_free_full to free lists with
    dynamically-allocated elements.

M	src/easytag.c

commit 1fe509111785ee8421f72e72d0cae834e75e7680
Author: Milagros Alessandra Infante Montero <maim92@gmail.com>
Date:	Mon May 27 11:11:26 2013 +0200

    Updated Spanish translation

M	po/es.po

commit 2a732c26288c03d964a204a782c8a05cfb067665
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Fri May 24 19:53:25 2013 +0200

    Updated Polish translation

M	po/pl.po

commit 4959a6463af656db6d2852128f4245579e5f717e
Author: Abhinav <abhijangda@hotmail.com>
Date:	Fri May 24 20:20:52 2013 +0530

    Use GFile instead of stdio in ogg_tag.c

    Fixes bug 700949.

M	src/et_core.c
M	src/ogg_tag.c
M	src/ogg_tag.h

commit 949acb18409c64cc6fd6c9f6eafba175e254f90d
Author: Muhammet Kara <muhammetk@gmail.com>
Date:	Fri May 24 19:02:59 2013 +0300

    [l10n] Added tr to LINGUAS

M	po/LINGUAS

commit ec58624c4c65386ef467b04f7df1982776267379
Author: Osman Karagöz <osmank3@gmail.com>
Date:	Fri May 24 19:00:59 2013 +0300

    [l10n] Added Turkish translation

A	po/tr.po

commit 55472b35587555374ea2b70a5a2eb5c32f702424
Author: David King <amigadave@amigadave.com>
Date:	Fri May 24 08:49:15 2013 +0100

    Fix memory leak in Save_List_Of_Files

    Free a tree path when returning early.

M	src/easytag.c

commit 8dc229ab7ea3663ac0f94ed27a4cbce61fd5914c
Author: David King <amigadave@amigadave.com>
Date:	Thu May 23 22:05:54 2013 +0100

    Replace GTK+ include with GIO include

M	src/vcedit.c

commit 94b6a68b51347d10e6a5c9a07dc035a3e3ce025c
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu May 23 23:13:59 2013 +0530

    Use GFile instead of stdio in vcedit.c, bug 700874

M	src/ogg_header.c
M	src/ogg_header.h
M	src/ogg_tag.c
M	src/vcedit.c
M	src/vcedit.h

commit 3d9438aa9159991ca5cb4b92e2d4a18f85d76cbc
Author: David King <amigadave@amigadave.com>
Date:	Thu May 23 07:31:47 2013 +0100

    Fix a memory leak in ET_File_Name_Generate

    Free the UTF-8 directory name before returning.

M	src/et_core.c

commit 2b3043e923a41b5684faedafe5c7ec1652e5dfd2
Author: David King <amigadave@amigadave.com>
Date:	Wed May 22 20:09:36 2013 +0100

    Fix memory leak in CDDB search dialog

M	src/cddb.c

commit 2ecd8b2ffc4d4287a5acfd8ea5e8fc42dc986134
Author: David King <amigadave@amigadave.com>
Date:	Wed May 22 00:06:57 2013 +0100

    Use GApplication::open to open paths

    Add a handler for the "open" signal, and use it to load
    paths. Refactor
    et_local_command_line() to always handle the commandline arguments in
    full (and therefore return TRUE). Remove the "command-line" handler.

M	src/application.c
M	src/easytag.c

commit 88b92c670ef2e98cd12369a680efe128ab7c8277
Author: David King <amigadave@amigadave.com>
Date:	Tue May 21 18:16:15 2013 +0100

    Remove custom signal to string function

    Use g_strsignal() to convert a signal ID to a string, instead of a
    custom function.

M	src/easytag.c

commit a4881d320d7f083c76bb489b9d29e9f777929b62
Author: David King <amigadave@amigadave.com>
Date:	Tue May 21 18:17:18 2013 +0100

    Use ngettext to handle CDDB search plural forms

M	src/misc.c

commit 0d54875085dab9fe541d743c7ed6546909dfaf93
Author: Abhinav <abhijangda@hotmail.com>
Date:	Tue May 21 17:24:00 2013 +0530

    Improve FLAC file header handling

    Avoid checking whether the file exists before trying to read
    it. Remove
    some unused includes.

M	src/flac_header.c

commit b4ef8260a60d7a7642728cd01e58624b5343fef4
Author: David King <amigadave@amigadave.com>
Date:	Tue May 21 08:16:45 2013 +0100

    Improve MP4 file error handling

    Do not check if the file exists before reading or writing tags to the
    file, but handle errors if they occur and return an appropriate result
    on failure. Remove some unused includes.

M	src/mp4_tag.c

commit f4773b7cc1782f65e27817a34fd8c50285d99f63
Author: David King <amigadave@amigadave.com>
Date:	Mon May 20 22:52:16 2013 +0100

    Avoid crash when escaping from delete file dialog

    Handle the delete event response from the delete file dialog.

M	src/easytag.c

commit f8c17ed415c03a45cd34f94373afb03ff12a05a2
Author: David King <amigadave@amigadave.com>
Date:	Mon May 20 22:49:55 2013 +0100

    Remove unused custom file list search handler

    The stock GtkTreeView handler was used instead, making this redundant.

M	src/browser.c

commit f3cde87a6cc185c411552af76f945a5c14257e9e
Author: David King <amigadave@amigadave.com>
Date:	Mon May 20 22:41:29 2013 +0100

    Avoid a shadow variable in Browser_Tree_Select_Dir

M	src/browser.c

commit c726854e1a7baad9356a0022378d63629f3b8866
Author: David King <amigadave@amigadave.com>
Date:	Mon May 20 22:37:50 2013 +0100

    Check if the full commandline path is hidden

    The last element of the commandline path was skipped when checking for
    hidden paths, so rearrange the check so that all elements of the path
    are tested.

M	src/easytag.c

commit af04f26b17a63d916f58278481a1702a9989c941
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Mon May 20 21:57:10 2013 +0100

    Improve tooltip for Save Files action

M	src/bar.c

commit c6e7e9ff14f71ce990d21f74db042367d12d6ca7
Author: David King <amigadave@amigadave.com>
Date:	Mon May 20 21:24:46 2013 +0100

    Avoid critical warning when saving preferences

    Use the correct path for the browse hidden directory menu item in
    the UI
    manager.

M	src/bar.c

commit c06b8893ecfa73f3640912f823e0d3d53cdcd1a6
Author: David King <amigadave@amigadave.com>
Date:	Mon May 20 18:57:44 2013 +0100

    Canonicalize relative commandline paths

    Use GFile in the commandline handler to do some trivial
    canonicalization
    of paths, which avoids a crash when passing a relative path as a
    commandline argument.

M	src/easytag.c

commit 0b7e08d7184d50425142d0afc673ca114f614ba1
Author: David King <amigadave@amigadave.com>
Date:	Mon May 20 16:04:21 2013 +0100

    Use unabbreviated "frequency" in UI string

    There is enough space in the header information to use the
    unabbreviated
    word.

M	src/easytag.c

commit 86bd3c561cd645fa9f4b36de95f159f3a301d41d
Author: Adrian Bunk <bunk@stusta.de>
Date:	Mon May 20 16:03:11 2013 +0100

    Remove duplicate Serbian Latin script translation

    Fixes bug 700722.

M	po/LINGUAS
D	po/sr@Latn.po

commit aad2aebd458e4ce649c7eb831c9e8bb5fd93b819
Author: Adrian Bunk <bunk@stusta.de>
Date:	Mon May 20 17:25:44 2013 +0300

    Stop supporting to write ID3 tags into FLAC files

    This is not (anymore?) supported at all by libflac, with e.g.  oggenc
    erroring out with:
      ERROR: Input file "song.flac" is not a supported format

    Even as an option it does more harm than good due to people
    accidentally
    enabling it.

    FLAC pictures are supported since EasyTAG 2.1.4. Fixes bug 700724.

M	src/flac_tag.c
M	src/prefs.c
M	src/prefs.h
M	src/setting.c
M	src/setting.h

commit a500ac81a0bb376e72d82989d7c4f8f079486578
Author: David King <amigadave@amigadave.com>
Date:	Mon May 20 15:55:11 2013 +0100

    Do not use bell in translatable string, bug 700723

M	src/easytag.c

commit 1ee20d90f4c85fbcb1472df94e57fec193b53c54
Author: Dimitris Spingos <dmtrs32@gmail.com>
Date:	Mon May 20 12:56:09 2013 +0300

    Updated Greek translation

M	po/el.po

commit c1395b0963facb01b25b84a5de8b40b983882fb0
Author: Abhinav <abhijangda@hotmail.com>
Date:	Mon May 20 11:21:38 2013 +0530

    Use GFile instead of stdio in misc.c, bug 700690

M	src/misc.c

commit 511a1348c7b33d00a5ceb31bc93c6bc7d1473234
Author: Abhinav <abhijangda@hotmail.com>
Date:	Sun May 19 18:36:10 2013 +0530

    Use GFile instead of stdio in crc32.c, bug 700636

M	src/crc32.c
M	src/crc32.h
M	src/scan.c

commit f7c0cc8ccebcd9c98cc7a1fcfb863c63f859142f
Author: David King <amigadave@amigadave.com>
Date:	Sun May 19 16:36:24 2013 +0100

    Use g_return_val_if_fail() for more invariants

    Additionally, refactor Cddb_Get_Pixbuf_From_Server_Name() to avoid a
    cppcheck warning about duplicate if and else branches.

M	src/cddb.c
M	src/picture.c

commit 73db9b439b3216809cf12427316c94fcb6c907dd
Author: David King <amigadave@amigadave.com>
Date:	Sun May 19 15:47:50 2013 +0100

    Fix three memory leaks when saving settings

M	src/setting.c

commit 4ed0b3ee7871c6fd47067c3c241a0f325d929f40
Author: David King <amigadave@amigadave.com>
Date:	Sun May 19 12:42:03 2013 +0100

    Use ngettext for status bar found files message

    Handle plural forms in the status bar message to report the number of
    files found in a directory.

M	src/easytag.c

commit 311128b0cdee64f5a72aec396e8d16322fd17b65
Author: David King <amigadave@amigadave.com>
Date:	Sun May 19 11:15:50 2013 +0100

    Fix CRC calculation function return value

    Return TRUE on success and FALSE on error, as mentioned in the
    crc32_file_with_ID3_tag documentation comment. Do not try to close a
    NULL file stream pointer.

M	src/crc32.c

commit 8072eb66a9561cf3d7bd8690c1726e7f39816f6a
Author: Abhinav <abhijangda@hotmail.com>
Date:	Sat May 18 20:18:08 2013 +0530

    Update file list after renaming, bug 700500

M	src/easytag.c

commit 8f26298550ad88b62bbf7d19d986d9baf291fcc5
Author: Abhinav <abhijangda@hotmail.com>
Date:	Sat May 18 16:11:25 2013 +0530

    Fix GLib critical warning in et_core.c, bug 700359

M	src/et_core.c

commit 5fae33d307cccfdcfbd1594f2c727d51cb38571e
Author: Abhinav <abhijangda@hotmail.com>
Date:	Sat May 18 17:17:08 2013 +0530

    Uses GFile instead of stdio in easytag.c

    Fixes bug 700500.

M	src/easytag.c

commit 7389fb3ff2005ac104fddb42a9a3de518df0373a
Author: David King <amigadave@amigadave.com>
Date:	Sat May 18 12:55:58 2013 +0100

    Use stock "up" icon for parent directory action

M	src/bar.c

commit a1aae3d38e9c439a2ecac02a8393f95619e707e3
Author: David King <amigadave@amigadave.com>
Date:	Sat May 18 12:39:12 2013 +0100

    Move parent directory action to the Go menu

M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/browser.h
M	src/ui_manager.h

commit 0d970246720420bc4281f5dc908043a3babd8af9
Author: David King <amigadave@amigadave.com>
Date:	Sat May 18 10:39:26 2013 +0100

    Use g_return_val_if_fail() for more invariants

    Found while looking through locations of "return NULL;".

M	src/browser.c
M	src/charset.c
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/misc.c
M	src/scan.c

commit 6d7e7e338eb72f0b6813e9a0bd2814a21732e9bf
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Fri May 17 19:25:46 2013 +0200

    Updated Polish translation

M	po/pl.po

commit bde0909d1a87c5110c107483b70ac38fe488b769
Author: David King <amigadave@amigadave.com>
Date:	Fri May 17 07:50:03 2013 +0100

    Use g_return_val_if_fail() for more invariants

    Convert tagging functions to use g_return_val_if_fail() to check
    invariants.

M	src/ape_tag.c
M	src/flac_header.c
M	src/flac_tag.c
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/mp4_header.c
M	src/mp4_tag.c
M	src/ogg_header.c
M	src/ogg_tag.c
M	src/wavpack_tag.c

commit 9e60cbd498d6cf469c42cdd74419a7e8191eef06
Author: David King <amigadave@amigadave.com>
Date:	Fri May 17 00:21:11 2013 +0100

    Fix check of unsigned duration type

    Do not check for values less than 0, as the comparison is pointless
    for
    unsigned types.

M	src/misc.c

commit a6a47f77827b55e950d0e00c892ed9acc0bc61b6
Author: David King <amigadave@amigadave.com>
Date:	Fri May 17 00:18:21 2013 +0100

    Drop unused sample format from FLAC header loader

    This allows sample formats of other than 8 and 16 bits per sample
    to be
    shown in the header information.

M	src/flac_header.c

commit df505cd8542cc93363b06d1bdc8f7eb0ab31610f
Author: David King <amigadave@amigadave.com>
Date:	Thu May 16 23:09:46 2013 +0100

    Replace chown() on Windows with 0

    Define chown() to be 0, the successful return value.

M	src/win32/win32dep.h

commit 7d64bff0492987d91339683397ebf107a1600155
Author: David King <amigadave@amigadave.com>
Date:	Thu May 16 23:07:57 2013 +0100

    Use g_return_val_if_fail() for more invariants

M	src/browser.c
M	src/cddb.c
M	src/et_core.c

commit c9b9c5413a7db5c92f64408403531af37d63d63c
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu May 16 23:39:11 2013 +0530

    Use GFile instead of stdio in id3_tag.c

    Fixes bug 700454.

M	src/id3_tag.c

commit 0d682b5d4da9952f1b0b8bf1a1ce6be38a1e68d9
Author: Martin Srebotnjak <miles@filmsi.net>
Date:	Thu May 16 22:24:28 2013 +0200

    Updated Slovenian translation

M	po/sl.po

commit 3a59cafa31c0e6fcfdb1a79c24b12bf740977121
Author: David King <amigadave@amigadave.com>
Date:	Wed May 15 23:35:10 2013 +0100

    Make unusable actions insensitive, bug 699957

M	src/bar.h
M	src/easytag.c

commit f048c43dc435392c4f703642eb75aa160f994c0e
Author: David King <amigadave@amigadave.com>
Date:	Wed May 15 22:26:49 2013 +0100

    Show menu item tooltips in the status bar

    Refactor the existing status bar code to add a separate context for
    permanent messages, temporary messages and tooltip messages. Add proxy
    handlers to the application-wide GtkUIManager to push and pop status
    messages when menu items are selected and deselected.

M	src/bar.c

commit 565b229d55ba7cbd34adeacd52a441699126ecfc
Author: David King <amigadave@amigadave.com>
Date:	Wed May 15 18:06:19 2013 +0100

    Make the main status bar context static

M	src/bar.c
M	src/bar.h

commit ace584e56ab3de44a5548d920f01985cf6e36307
Author: David King <amigadave@amigadave.com>
Date:	Wed May 15 17:43:59 2013 +0100

    Improve et_core_read_file_info invariant check

    Use g_return_val_if_fail() for the invariant check. Add a gtk-doc
    style
    comment above the function.

M	src/et_core.c

commit b37e622a8358864b9f2e0317ad014d709a5d6af1
Author: Abhinav <abhijangda@hotmail.com>
Date:	Wed May 15 14:00:17 2013 +0530

    Use GIO instead of stdio for et_core.c, bug 700359

M	src/et_core.c
M	src/et_core.h

commit ad1c4a60b27b9999440d3310ac016139f366ea88
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Wed May 15 11:32:37 2013 +0200

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit edcdc1db08d74af96f52a25c0985a92d79f25080
Author: David King <amigadave@amigadave.com>
Date:	Tue May 14 17:22:50 2013 +0100

    Improve image file loading and saving

    Use header capitalization for the file choose dialog title. Allow
    non-local files, as either URIs or GFile are used to reference
    the files
    selected in the file chooser. Use GTK+ file overwrite confirmation
    dialog. Improve error handling when loading images.

M	src/picture.c

commit d0d458325bc40bbb82da4fc37dc81a64a930333d
Author: Abhinav <abhijangda@hotmail.com>
Date:	Tue May 14 17:18:58 2013 +0530

    Use GIO instead of stdio in picture.c, bug 700050

M	src/picture.c

commit ef7666bddfe92ccbdcd1eea48da96f538696d42c
Author: David King <amigadave@amigadave.com>
Date:	Mon May 13 23:47:44 2013 +0100

    Use GFile when loading images

    As part of solving bug 700050, use GFile when loading images in
    order to
    avoid explicitly converting between encodings when dealing with
    filenames.

M	src/picture.c

commit 0ac8f0d6d0fb8076b7a508a3abd0fb0a0b32b98a
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun May 12 23:37:07 2013 +0200

    Updated Polish translation

M	po/pl.po

commit 85d374b4726c7816ea5aba6b3e58a86decfb9ef3
Author: Milagros Infante Montero <maim92@gmail.com>
Date:	Sun May 12 20:05:55 2013 +0200

    Updated Spanish translation

M	po/es.po

commit 2d9cd3a106141ef58367be524dff0fcaea52547d
Author: David King <amigadave@amigadave.com>
Date:	Sat May 11 10:28:23 2013 +0100

    Do not close the log file iostream explicitly

    The stream is automatically closed when the last reference is dropped,
    so there is little benefit in explicitly closing it.

M	src/log.c

commit 5896ede63e4e8a94972ec0d92eb45ed37bc98eaa
Author: David King <amigadave@amigadave.com>
Date:	Sat May 11 08:49:20 2013 +0100

    Ignore error when closing and writing the log file

    Only report a single error when closing the log file fails, instead of
    reporting an error when the write fails and another if the close
    fails.

M	src/log.c

commit b4dcd29cc83d2644509a504095951df388c58463
Author: David King <amigadave@amigadave.com>
Date:	Fri May 10 22:18:47 2013 +0100

    Fix spurious log message about list file writing

    Use a GString to construct the list file buffer, and check that the
    buffer was successfully written.

M	src/setting.c

commit 48c4f09e2b681c0d82fb79b16f1f26886626b9d1
Author: David King <amigadave@amigadave.com>
Date:	Fri May 10 19:47:58 2013 +0100

    Make unselect all a generic action, bug 699958

    Move the unselect all item to the edit menu, and apply it to the
    currently-focused widget.

M	src/bar.c
M	src/bar.h
M	src/easytag.c
M	src/easytag.h
M	src/ui_manager.h

commit 51ddfdfe1d5b060c699c0cc032418142d48bb243
Author: David King <amigadave@amigadave.com>
Date:	Fri May 10 18:08:18 2013 +0100

    Use more appropriate icons for log items

M	src/log.c

commit 31beeb7903700e6e28f2c3c9c8e8f6302a3dab0b
Author: Abhinav <abhijangda@hotmail.com>
Date:	Fri May 10 20:21:44 2013 +0530

    Use GFile rather than stdio in log.c, bug 700050

M	src/log.c

commit 014b74d257b469b9639859a878b7ce191e16d855
Author: David King <amigadave@amigadave.com>
Date:	Fri May 10 14:47:18 2013 +0100

    Check modifier state in key-press-event handler

    As pointed out by Alexander Shaduri in bug 699813, this is necessary
    to
    ignore unwanted modifiers such as numlock and caps lock.

M	src/easytag.c

commit 11b2601d87de7bad50ff50ce0156d36ec7280102
Author: David King <amigadave@amigadave.com>
Date:	Fri May 10 14:08:40 2013 +0100

    Fix return type of key-press-event handler

    Return TRUE if the event was handled and FALSE if the event should
    propagate further.

M	src/easytag.c

commit 4fed848e6dcded7208674acf2b0838566aeadd00
Author: David King <amigadave@amigadave.com>
Date:	Thu May 9 23:36:04 2013 +0100

    Make Ctrl+Return in tag fields apply to selection

    Apply the current tag field across the selected files when Ctrl+Return
    is pressed. Fixes bug 699813.

M	src/easytag.c

commit ecbd9e6aa5b32acf5c8feda3868e5acddc802745
Author: David King <amigadave@amigadave.com>
Date:	Thu May 9 22:05:07 2013 +0100

    Remove handling of activation of tag field entries

    Now that the tag field GtkEntrys have icons for applying the tag to
    selected files, the focus chain is significantly shorter. Remove the
    functionality to jump to the next field by activating the current
    GtkEntry, as it incorrectly duplicates the focus chain order.

M	src/easytag.c

commit 95d34d6981afe72f6f0a1b30596f6005519d34e3
Author: David King <amigadave@amigadave.com>
Date:	Thu May 9 21:20:45 2013 +0100

    Fix libapetag unused result warnings, bug 699979

M	src/libapetag/apetaglib.c
M	src/libapetag/info_mac.c
M	src/libapetag/info_mpc.c
M	src/libapetag/is_tag.c

commit 656c87bbc6d225e1a4926099ca93e346855712d5
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu May 9 20:06:20 2013 +0100

    Fix cddb.c unused result warnings, bug 699979

M	src/cddb.c

commit 134da63109b26840b8979ec4b3567878b5ba5b9c
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu May 9 23:35:21 2013 +0530

    Fix et_core.c unused result warnings, bug 699979

M	src/et_core.c
M	src/log.c

commit bfdfcc879b8d251abbc9a6805e755987ab230fb0
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu May 9 19:48:09 2013 +0530

    Fix log.c unused result warnings, bug 699979

M	src/log.c

commit 96f2700578ab143214221de2c7762a9c9be0a167
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu May 9 23:13:42 2013 +0530

    Fix setting.c unused result warnings, bug 699979

    Additionally, fix build error in previous patch.

M	src/id3v24_tag.c
M	src/setting.c

commit 661dab454a47390ff9e5d4d7b2a76f70961c6ba7
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu May 9 23:10:26 2013 +0530

    Fix id3v24_tag.c unused result warning, bug 699979

M	src/id3v24_tag.c

commit e63c39bbb9cc88f00014e4746bfa2b1037107490
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu May 9 22:59:01 2013 +0530

    Fix easytag.c unused result warnings, bug 699979

M	src/easytag.c

commit 4c1e6a0f7bf4fa57e44b1085035689a8f4336302
Author: David King <amigadave@amigadave.com>
Date:	Wed May 8 22:36:41 2013 +0100

    Rearrange menus and menu items

    Attempt to comply with the GNOME HIG with regards to the style and
    placement of menus.

M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/misc.c
M	src/scan.c
M	src/ui_manager.h

commit 1d66fd330356887c78d0440d24ceea2177bb03d7
Author: David King <amigadave@amigadave.com>
Date:	Wed May 8 21:18:23 2013 +0100

    Rename discard to cancel when saving a single file

M	src/easytag.c

commit 5d10d7acf57a1b33e47032811aaa6a84b4f55725
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Wed May 8 18:42:09 2013 +0200

    Updated Polish translation

M	po/pl.po

commit 589907351458a13f0feabfe96cc7cfd7eb9924e6
Author: David King <amigadave@amigadave.com>
Date:	Sun May 5 21:27:48 2013 +0100

    Make some XPM data static

    Found by findstatic.pl.

M	data/pixmaps/freedb.xpm
M	data/pixmaps/gnudb.xpm
M	data/pixmaps/musicbrainz.xpm

commit 2efdf5fe5954576d642c9d9f931d0306c91aab55
Author: David King <amigadave@amigadave.com>
Date:	Sun May 5 21:25:23 2013 +0100

    Make Scanner_Option_Menu_Items static and const

    Found with findstatic.pl.

M	src/scan.c

commit 2397a12a309b7e3c729cc344ba856a2028195ace
Author: David King <amigadave@amigadave.com>
Date:	Sun May 5 21:23:34 2013 +0100

    Refactor loading of default masks

    Make mask arrays static and const.

M	src/scan.c
M	src/setting.c
M	src/setting.h

commit fc3610b47cd61565ed8b2a0075e338efa1e61e01
Author: David King <amigadave@amigadave.com>
Date:	Sun May 5 21:12:00 2013 +0100

    Make configuration variable struct static

    Found with findstatic.pl.

M	src/setting.c

commit 2a3a5ab88e21bf6f796170221cb9039a728e579d
Author: David King <amigadave@amigadave.com>
Date:	Sun May 5 21:09:12 2013 +0100

    Remove unused Create_Pixmap_Icon_With_Event_Box

    Found with findstatic.pl.

M	src/misc.c
M	src/misc.h

commit e5bedc72ccd4d22b0b07a382a81c1ee6799b4d02
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Sat May 4 21:54:12 2013 +0200

    Updated Slovenian translation

M	po/sl.po

commit 6ed0e4fe109b580a320c7ac1fe5aa745de126f44
Author: David King <amigadave@amigadave.com>
Date:	Sat May 4 19:29:30 2013 +0100

    Move remaining mask warning images into GtkEntrys

M	src/browser.c
M	src/scan.c
M	src/scan.h

commit a1815436957629c306767b24cae5d19d91f866cf
Author: David King <amigadave@amigadave.com>
Date:	Sat May 4 18:40:59 2013 +0100

    Replace playlist mask warning with entry icons

    Move the warning icon into the GtkEntry.

M	src/misc.c

commit 8b2d654cff803a785510e60edb7cae2a4595e8aa
Author: David King <amigadave@amigadave.com>
Date:	Sat May 4 17:55:19 2013 +0100

    Remove useless "edit masks" playlist button

M	src/misc.c

commit 4c0e49f5939e58559f7597e646fed53bab28f582
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sat May 4 17:51:00 2013 +0100

    Make playlist labels consistent

M	src/bar.c
M	src/misc.c

commit 8a61b2b299cfa3f4ecd8f3b757f3fed60f991ce7
Author: David King <amigadave@amigadave.com>
Date:	Sat May 4 17:46:41 2013 +0100

    Use same string for both playlist write errors

M	src/misc.c

commit f33d4af3b7498fa4a4f0d9188a6d92add56663be
Author: DarshanMn <darshan.trin@gmail.com>
Date:	Sat May 4 18:52:45 2013 +0530

    Make the file list treeview sortable, bug 694310

    When a column header is clicked, the file list gets sorted by the
    contents of that column and the sort order option in the preferences
    dialogue gets automatically updated and vice-versa.

M	src/browser.c
M	src/browser.h
M	src/et_core.c
M	src/setting.c

commit b6707afd59697f96a4e43e69876c436cd15f6e91
Author: David King <amigadave@amigadave.com>
Date:	Sat May 4 14:02:15 2013 +0100

    Fix invalid read in rename file dialog

    Set the pointer to the preview label to NULL when destroying the
    dialog.

M	src/browser.c

commit 014aefad41820552bee5604804631533066a3aee
Author: David King <amigadave@amigadave.com>
Date:	Sat May 4 13:48:04 2013 +0100

    Remove obsolete PNG icon factory code

M	src/misc.c

commit 93c521c185c93c2f84f635f29c6e3e97e608f798
Author: David King <amigadave@amigadave.com>
Date:	Sat May 4 13:07:45 2013 +0100

    Move Entry_Changed_Disable_Object to browser.c

    Make Entry_Changed_Disable_Object static and rename it to
    empty_entry_disable_widget to better reflect its purpose.

M	src/browser.c
M	src/misc.c
M	src/misc.h

commit 4fd027c30b6dae90535f9fe1c40bd601f5a30dc2
Author: David King <amigadave@amigadave.com>
Date:	Sat May 4 12:12:15 2013 +0100

    Make the find files window a GtkDialog

    Additionally, use a uniform box spacing of six pixels.

M	src/misc.c

commit 8c53b7ddf45891cb3e6c1423e8b66efe35cadaab
Author: David King <amigadave@amigadave.com>
Date:	Sat May 4 12:06:23 2013 +0100

    Make the CDDB search window a GtkDialog

    Additionally, add a uniform box spacing of 6 pixels. Use "CDDB"
    consistently in the UI rather than "CD Database".

M	src/bar.c
M	src/cddb.c
M	src/prefs.c

commit 68ed7074fa5d26cbfb58b889e520eb47c0fc3310
Author: David King <amigadave@amigadave.com>
Date:	Sat May 4 10:31:09 2013 +0100

    Add "encoded by" column to files list treeview

M	src/browser.c

commit f7f8c9861ba3bcca4a807b068880def27837c704
Author: David King <amigadave@amigadave.com>
Date:	Fri May 3 16:46:32 2013 +0100

    Use a GtkDialog for the run program on file window

M	src/browser.c

commit 6609e87048ab303d444d497b7be9a9d1a9d88bdc
Author: David King <amigadave@amigadave.com>
Date:	Thu May 2 23:13:45 2013 +0100

    Make run program on directory window a GtkDialog

M	src/browser.c

commit d90eb7b7d0ad55c067c1fdc8159ebb5b58b9dc79
Author: David King <amigadave@amigadave.com>
Date:	Thu May 2 22:44:40 2013 +0100

    Make the rename directory window a GtkDialog

M	src/browser.c

commit ce9ece8bb83022e860288446d74574c883820ffc
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Thu May 2 19:58:55 2013 +0200

    Updated Polish translation

M	po/pl.po

commit a362a5dd5d2b6c6a439076f4f9881afbe1157f32
Author: David King <amigadave@amigadave.com>
Date:	Wed May 1 20:16:43 2013 +0100

    Remove settings for preferences window dimensions

    The defaults for these were useless, as the preferences window
    was much
    larger than the defaults.

M	src/prefs.c
M	src/setting.c
M	src/setting.h

commit f1b751b8037a9223a32337dfb84fd97a9ffff2eb
Author: David King <amigadave@amigadave.com>
Date:	Wed May 1 20:10:39 2013 +0100

    Make load filenames window a GtkDialog

    Adjust box spacing to be a consistent 6 pixels. Remove the redundant
    outer frame.

M	src/misc.c

commit bedb39936276ccd31998cd9986909898e37f8006
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 30 22:03:50 2013 +0100

    Remove the playlist window dimensions

    Remove the dimensions from the settings header.

M	src/setting.h

commit 76cd35ded040d2f7430ac4bd0ddc8e67f88f2ba2
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 30 21:58:44 2013 +0100

    Do not save the write playlist window dimensions

    The window size is determined by the contained widgets, so there is
    little point in resizing it and storing the new size.

M	src/misc.c
M	src/setting.c

commit b236239a1678e44894da34e1bb43865acd6ca6e9
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 30 21:23:46 2013 +0100

    Make the write playlist window a GtkDialog

    Additionally, use a consistent padding of 6 pixels for boxes.

M	src/misc.c

commit c59463c3ccb39da4b6a6284a0f129906160a3d69
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 29 22:46:08 2013 +0100

    Make the searching for files window a GtkDialog

M	src/easytag.c

commit 945fdf87432dba74787572544e2691b6e6736da0
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 29 21:36:37 2013 +0100

    Move Preferences to a new Edit menu

M	src/bar.c
M	src/bar.h
M	src/ui_manager.h

commit f73952c5ee9980e76b06dc6906a5e76e1e1c2b3c
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 29 21:01:08 2013 +0100

    Remove extra frame in confirmation preferences tab

M	src/prefs.c

commit 3a167aa87d1a44a12b885199ec82a8ba7f2844e2
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 29 20:58:39 2013 +0100

    Remove extra frame in CDDB preferences tab

M	src/prefs.c

commit 71abc361a838ef0bdb4dc67b07f6565e8e75e627
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 29 20:48:38 2013 +0100

    Remove extra frame in scanner preferences tab

M	src/prefs.c

commit 6760adbf5d391df140745d3a8de61d974a2a7b4b
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 29 20:36:54 2013 +0100

    Remove extra frame in ID3 tag settings preferences

M	src/prefs.c

commit 943f67a11bb2ad970db081616d4374d337ab126f
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 29 20:28:42 2013 +0100

    Remove extra frame in tag settings preferences

M	src/prefs.c

commit 6b27fc685bb6fe93119d16dc395bf8274279aaf0
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 29 20:20:11 2013 +0100

    Remove extra frame in file settings preferences

M	src/prefs.c

commit 0125c911bc6412f14a3dcd578900e81a47d288c9
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 29 18:43:07 2013 +0100

    Remove extra frame in misc preferences tab

M	src/prefs.c

commit 635ba53fec21225206c234e7b7a5025f2eefd7b6
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 29 18:28:54 2013 +0100

    Remove extra frame in browser preferences tab

M	src/prefs.c

commit 5568cf3a70f27bdb8f0eb894973cef5415d5a55c
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 29 17:02:02 2013 +0100

    Make the preferences dialogue a GtkDialog

    Use a GtkDialog with a "response" handler to replace the existing
    dialogue.

M	src/prefs.c

commit d63f59141697469b84419a3ec99c5dedd0dd4291
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Mon Apr 29 21:16:18 2013 +0200

    Updated Polish translation

M	po/pl.po

commit 564520eb261c86e67ed690cde655ecea6981736f
Author: Milagros Alessandra Infante Montero <maim92@gmail.com>
Date:	Mon Apr 29 10:33:38 2013 +0200

    Updated Spanish translation

M	po/es.po

commit c6cc5f0914fa3b1b7d16fe2d597b146fb71ed332
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Mon Apr 29 00:19:54 2013 +0100

    Rename tag-image.page help page to image.page

M	help/C/image.page
D	help/C/tag-image.page

commit 399742abf6dccb5da249cbfd5e0881036a2f9b33
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Mon Apr 29 00:19:19 2013 +0100

    New help page for the scanner dialog

A	help/C/scanner.page

commit 58d1e68f78ce8efa1c348fef52b003bed62e2f89
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 29 00:02:10 2013 +0100

    Make the scan files button internal to the dialog

    Set the sensitivity of the "scan files" button with
    gtk_dialog_set_response_sensitive() and hide it from external users of
    the dialog.

M	src/easytag.c
M	src/scan.c
M	src/scan.h

commit a97344ba4c925badc990811f75b839961a58e7d1
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 28 23:43:53 2013 +0100

    Use a GtkDialog for the scanner window

    Use GtkDialog and the _with_buttons() constructor to create a
    GtkDialog
    and use it for the scanner window. Add a "response" handler. Move the
    "close" and "scan files" buttons to the dialog action area.

M	src/scan.c

commit f15934f1caccc9ea6e19416a7f8090c75dc5e71a
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Apr 28 21:58:40 2013 +0200

    Updated Polish translation

M	po/pl.po

commit c8216e3c2a7366ca3819ecec342879498de0ebf2
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 28 18:44:25 2013 +0100

    Improve access to the scanner dialogue, bug 699122

    Convert the scanner mode actions to radio actions. Add a toggle action
    for showing the scanner dialogue.

M	src/bar.c
M	src/bar.h
M	src/easytag.c
M	src/easytag.h
M	src/scan.c
M	src/scan.h
M	src/ui_manager.h

commit bde0d6309ef753225fb968ebe1401d142d05f70d
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sun Apr 28 15:10:06 2013 +0100

    Add padding to the legend in the scanner dialog

M	src/gtk2_compat.c
M	src/gtk2_compat.h
M	src/scan.c

commit 8d12f32750f0e9ac109e09371984223273426ca4
Author: Valeri Nistor <nistor.valeri@gmail.com>
Date:	Sun Apr 28 15:25:49 2013 +0300

    Update images number in notebook title, bug 699005

M	src/picture.c

commit 49cb67b700786093fce0153488a4fde2b7b97896
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 28 11:49:31 2013 +0100

    Set a fallback drive icon for mingw

M	src/browser.c

commit a4203cccc14cbe3122dae453d39b836669a381e0
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 28 10:18:24 2013 +0100

    Move drive icon code to avoid C90 error

    Declarations must appear before code in standard C.

M	src/browser.c

commit 366bad57877c899bdd2e5f7f2a9d59cb1dd181da
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 27 22:41:48 2013 +0100

    Use ifdef for conditional mingw compilation

    Avoid testing the build host in the Makefile and altering which files
    will be built based on it, and instead test for G_OS_WIN32 with ifdef.

M	Makefile.am
M	src/browser.c
M	src/cddb.c
M	src/charset.c
M	src/easytag.c
M	src/et_core.c
M	src/id3v24_tag.c
M	src/log.c
M	src/ogg_tag.c
M	src/picture.c
M	src/prefs.c
M	src/setting.c
M	src/win32/win32dep.c

commit db7cd7942386c3d751f5f8b275223a241eadc60c
Author: Aurimas Černius <aurisc4@gmail.com>
Date:	Sat Apr 27 23:28:27 2013 +0300

    Updated Lithuanian translation

M	po/lt.po

commit 6eaa42ea630fd1e8a6af73c3ca1740a0a92b0c79
Author: Martin Srebotnjak <miles@filmsi.net>
Date:	Sat Apr 27 21:26:33 2013 +0200

    Updated Slovenian translation

M	po/sl.po

commit e87a8ab6a1c32d09825f61c49bee75abc27265af
Author: David King <amigadave@amigadave.com>
Date:	Sat Apr 27 16:53:14 2013 +0100

    Avoid crash when using MusicBrainz CDDB search

    When running the CDDB search, set the freed server request message
    pointer to NULL to avoid a double free which would occur after
    making a
    request to the second CDDB server listed in the preferences. Thanks to
    Alexander Shaduri for the report. Fixes bug 699022.

M	src/cddb.c

commit afe36a753ce414b8be125d0a3a7b466b3a22233f
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Fri Apr 26 22:31:36 2013 +0100

    Add help page stub about adding fields to a tag

A	help/C/tag-field.page.stub

commit ad7ce0bc57fd3f9e6ee9f43d6b15bca626286562
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Fri Apr 26 22:29:45 2013 +0100

    Update tag-image help page links to guide pages

M	help/C/tag-image.page

commit 161d8bd6981ef669c8e5d16ba8eff7c560a5ee32
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Fri Apr 26 22:26:30 2013 +0100

    Add help page about tags

M	help/C/tag.page

commit 7f89f8e481eaa0642971ecc1b42124134f28bff5
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 26 22:28:57 2013 +0100

    Remove "select all" from the toolbar

    As there is a global handler for select all, it is misleading to
    have a
    select all button next to the invert selection button in the toolbar.

M	src/ui_manager.h

commit 34ba004155132a1a548c7aa94747d1624865f267
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 26 22:07:42 2013 +0100

    Minor update to TODO

M	TODO

commit 3605bd5f06dfe1ae79afd707b0f4867f434ba3df
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 26 21:22:51 2013 +0100

    Do not split FLAC and OGG tags by default

    There have been several bugs about the tag splitting behaviour, so
    disable the splitting by default. See bug 689443.

M	src/setting.c

commit d6501d58fb64d06d3986b0a05b094905f24ac285
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 26 21:15:27 2013 +0100

    Add 22×22 and 24×24 icon sizes

    Thanks to Michael Monreal for noticing the omission in bug 689474.

M	Makefile.am
A	data/icons/22x22/easytag.png
A	data/icons/24x24/easytag.png

commit c35c18b949ac4c47a241cdd2c8ebe945689b4b0c
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 26 21:01:41 2013 +0100

    Default to use "xdg-open" instead of "xmms -p"

    xdg-open seems like a sane default until the port to GTK+ 3 (and
    GtkAppChooserButton).

M	src/setting.c

commit 9f6a871d0fc25c9b8ac346d0288760589314d860
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 26 20:54:12 2013 +0100

    Remove ID3 and Vorbis comment documentation

    Both sets of documentation are available online:

    http://www.xiph.org/vorbis/doc/v-comment.html
    http://id3.org/Developer%20Information

M	Makefile.am
D	doc/id3/easy.html
D	doc/id3/id3v2.3.0.html
D	doc/id3/id3v2_blocks.gif
D	doc/id3/mpeghdr-19991222.htm
D	doc/vorbis/v-comment.html
D	doc/vorbis/white-ogg.png

commit 77485d2b62060f9311a33b4cec820793834a07d9
Author: Abhinav <abhijangda@hotmail.com>
Date:	Thu Apr 25 16:15:08 2013 +0530

    Browse subdirectories of executable paths

    Allow browsing subdirectories of paths with only executable
    permissions.
    Fixes bug 689439.

M	src/browser.c

commit 2c192f334f8d2714c7bb2d54bbe3d73e8b7a78d3
Author: DarshanMn <darshan.trin@gmail.com>
Date:	Tue Apr 23 17:48:06 2013 +0530

    Update the file property sort order automatically

    When the sort order is selected in the file menu, and is a property of
    the file (rather than a tag property), the file list sort order is not
    automatically updated.

    This patch makes the file list sort automatically after setting
    the sort
    order in the file menu. Fixes bug 698378.

M	src/bar.c

commit 4bbfe020cac253be741c6d600533c2ff2df808dc
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 23 06:42:45 2013 +0100

    Improve get_gicon_for_path()

    Add another parameter indicating the desired state of the folder icon
    (open or closed). Use GFile to read the file permissions. Test whether
    the path is writable.

M	src/browser.c

commit 507aad490e98e64b60ac41a5dea15061b244ee54
Author: Adolfo Jayme Barrientos <fitoschido@ubuntu.com>
Date:	Tue Apr 23 10:43:11 2013 +0200

    Updated Spanish translation

M	po/es.po

commit fc437915320eff94b84352f8a82aac807b0996d0
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 21 22:20:14 2013 +0100

    Improve check_for_subdir()

    Take a const string for the path. Improve the comment describing the
    fuction.

M	src/browser.c

commit b7ad8a101ddafc788728704cbc8ffc41103f02e9
Author: Abhinav <abhijangda@hotmail.com>
Date:	Sat Apr 20 17:48:22 2013 +0530

    Deselect when clicking a blank image treeview area

    When clicking on a blank area in the tree view of image tags, deselect
    all rows. Fixes bug 698149.

M	src/picture.c

commit 6c8d997bd643bea849480259876c3cdf6fc3ef54
Author: Gil Forcada <gforcada@gnome.org>
Date:	Fri Apr 19 21:37:58 2013 +0200

    [l10n] Add Catalan translation

M	po/LINGUAS
A	po/ca.po

commit 26083605d0dc260487b78af9f5bf3e2b8e96587b
Author: David King <amigadave@amigadave.com>
Date:	Fri Apr 19 14:59:33 2013 +0100

    Clarify "encoder name" with a translator comment

    Thanks to Alexandre Franke for pointing out the problem.

M	src/bar.c

commit 4c3e8b98272121b54bc2d7bcb90ed7e6bcffd867
Author: Abhinav <abhijangda@hotmail.com>
Date:	Sun Apr 14 16:06:09 2013 +0530

    Do not convert characters in playlist fields

    Fixes bug 689449.

M	src/scan.c

commit eb3626fce6ecdb4a6d7c05f04c8785854e8daa86
Author: David King <amigadave@amigadave.com>
Date:	Mon Mar 25 09:52:17 2013 +0000

    Move desktop file to data subdirectory

    Additionally, add a translator comment for the keywords field. Add a
    stamp rule to ensure that the data subdirectory exists in the build
    directory.

M	.gitignore
M	Makefile.am
M	configure.ac
R073	easytag.desktop.in	data/easytag.desktop.in
M	po/POTFILES.in

commit 647968b5c9fa31b1271a33ac4531ae6cee8afe2a
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Wed Apr 10 17:53:56 2013 +0200

    Updated Polish translation

M	po/pl.po

commit 26939eaae5d54a6299978fe02e2f07aecc58b49a
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 9 22:24:18 2013 +0100

    Remove many trailing ellipses in strings

M	src/bar.c
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/misc.c
M	src/picture.c
M	src/prefs.c
M	src/prefs.h
M	src/scan.c

commit 97e6a2214ab35a7cf30ed3e01b5746a97029575e
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 9 21:24:35 2013 +0100

    Consistently use "filename" instead of "file name"

    For UI strings especially, the single word "filename" is favoured
    by the
    GNOME HIG and documentation style guide.

M	README
M	help/C/rename-file.page
M	help/C/tag-image.page
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/et_core.c
M	src/et_core.h
M	src/misc.c
M	src/prefs.c
M	src/scan.c
M	src/win32/win_easytag.c

commit 696040ded98a6dd553a2c5eebbfaf7b473e3dd57
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 9 21:00:00 2013 +0100

    Avoid a critical warning when saving files

    Use the correct action name when fetching a widget from the UI
    manager.

M	src/easytag.c

commit 27ab36387265b960088dd27b06f569a681631afe
Author: David King <amigadave@amigadave.com>
Date:	Tue Apr 9 18:11:48 2013 +0100

    Simplify file list tree view column creation

    Rearrange the order of columns in the model, and create the
    GtkTreeViewColumns with a for loop instead of duplicated code.

M	src/browser.c
M	src/browser.h

commit 9bb9ebeb1baeb625528e6c0b91eb96c3f080de93
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Tue Apr 9 19:40:29 2013 +0200

    Updated Polish translation

M	po/pl.po

commit 032f76818f7efd6acb147947a7dcbbfb37fee7bd
Author: DarshanMn <darshan.trin@gmail.com>
Date:	Tue Apr 9 13:49:35 2013 +0530

    Apply the new sort order autamatically, bug 697604

    Make the filelist treeview sort automatically on leaving preferences
    dialogue after setting new sort order.

M	src/setting.c

commit e22022ece4b3db8831266194e490574dcbbfee40
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 8 23:39:49 2013 +0100

    Improve file view mode selection, bug 697457

    Split the file view mode toggle action into two radio actions.

M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/easytag.c
M	src/ui_manager.h

commit a56bfb99897fe043bbea0953d557a8adcb237a12
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Mon Apr 8 23:01:46 2013 +0100

    Add help for adding images.

A	help/C/tag-image.page

commit 503b04bddfa42e46e6dbda460775686a59bc4e97
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 8 20:41:23 2013 +0100

    Add a stock image to the CDDB select all button

M	src/cddb.c

commit 4de07095ce8070f622cfd13a368722bfa4e547fc
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 7 23:05:56 2013 +0100

    Improve select all action handler, bug 697515

    As the action handler is not invoked on a widget, determine the
    currently-focused widget and call the appropriate "select all"
    method to
    ensure that Ctrl+A functions correctly in widgets other than the file
    list view. Adjust the strings to indicate that the select all
    action is
    not specific to files.

M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/easytag.h

commit ccc920e4ac572211e44919173518902009305cff
Author: DarshanMn <darshan.trin@gmail.com>
Date:	Mon Apr 8 23:23:59 2013 +0530

    Make the sort options more complete

    Some of the code has been reordered to match the order in the enum of
    sort modes. Also, the sorting function for the 'Disc Number' tag has
    been added. Partially fixes bug 697570.

M	src/browser.c
M	src/et_core.c
M	src/et_core.h
M	src/prefs.c

commit 0f975687d67271716d04fbf63e0b9bc4aa0c8de8
Author: David King <amigadave@amigadave.com>
Date:	Mon Apr 8 18:01:48 2013 +0100

    Remove ancient libmpg123 code, bug 692410

    Use id3lib for reading the MPEG header instead of the internal version
    of mpg123. With only id3tag support (and no id3lib support) the MPEG
    header is not read, but ID3v2.4 tag reading and writing still works.
    Modify ifdefs and update .gitignore appropriately for libmpg123
    removal.
    Move ID3_INVALID_GENRE to src/id3_tag.h to avoid a warning.

M	.gitignore
M	Makefile.am
M	src/et_core.c
M	src/genres.h
M	src/id3_tag.c
M	src/id3_tag.h
M	src/id3v24_tag.c
D	src/libmpg123/README
D	src/libmpg123/common.c
D	src/libmpg123/dxhead.c
D	src/libmpg123/dxhead.h
D	src/libmpg123/getbits.h
D	src/libmpg123/huffman.h
D	src/libmpg123/l2tables.h
D	src/libmpg123/layer1.c
D	src/libmpg123/layer2.c
D	src/libmpg123/layer3.c
D	src/libmpg123/mpg123.c
D	src/libmpg123/mpg123.h
M	src/mpeg_header.c
M	src/wavpack_header.c

commit 84e3fcce89d13518e930dbeb332a9cc263c4b604
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Apr 7 22:31:49 2013 +0200

    Updated Polish translation

M	po/pl.po

commit 72e769c73f46f9090c01fd1dd87b9c1ac6bacd96
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 7 11:09:44 2013 +0100

    Use the Unicode multiplication sign for dimensions

M	src/picture.c

commit dbdb9bd48695ea0890a792f7ff921597d690c76c
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 7 11:03:46 2013 +0100

    Slightly improve size conversion functions

    Use lower-case 'k' for kilo prefix. Use gsize for sizes. Use
    off_t when
    getting the file size from stat().

M	src/misc.c
M	src/misc.h

commit 50edde812954b311127e0dd6979ac9cb0be3d93b
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 7 10:29:40 2013 +0100

    Use a toolbar for the picture tab buttons

    Use a toolbar for the control buttons underneath the picture tab tree
    view. Update the sensitivity of the toolbar buttons depending on the
    selected items (make the remove, save and property buttons insensitive
    if no items are selected). Improve the string for removing images.
    Remove some commented-out code for setting the tag area widgets to be
    insensitive.

M	src/easytag.c
M	src/easytag.h
M	src/picture.c

commit 58550daa1d9ebbedc9f134bf6189e131e62e0880
Author: David King <amigadave@amigadave.com>
Date:	Sun Apr 7 00:07:46 2013 +0100

    Remove the frames from the tag and image tabs

    The shadow type was set to not show the frame.

M	src/easytag.c

commit 0757305f9fe94cb92cd9618e9877c16f151abe57
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Sat Apr 6 23:52:59 2013 +0100

    Use "image" instead of "picture" in the UI

    Replace all instances of "picture" with "image" in the UI.

    Remove the redundant "Pictures:" label next to the images tree view,
    move the "apply to all" button below the tree view, alongside
    the other
    buttons, and give it an insert-image icon.

M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/flac_tag.c
M	src/picture.c
M	src/prefs.c

commit 14c2072e754ff300e84e4955e4a5cbf69bba60e5
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Thu Apr 4 22:00:09 2013 +0200

    Updated Slovenian translation

M	po/sl.po

commit bbee7b42b7a8c015ecb0f18b6876be8f3983c1bd
Author: Martin Srebotnjak <miles@filmsi.net>
Date:	Thu Apr 4 21:05:11 2013 +0200

    Updated Slovenian translation

M	po/sl.po

commit 9b1afae07d15481f31a7b49f405e14730b1b4c31
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Tue Apr 2 09:24:59 2013 +0200

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit 33d0127b772f90279f74ae49a188f08b994ef2ef
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Mon Apr 1 20:45:26 2013 +0200

    Updated Polish translation

M	po/pl.po

commit 583f48ce480d01f9079accc8be58fb26ead53260
Author: Aurimas Černius <aurisc4@gmail.com>
Date:	Mon Apr 1 19:49:09 2013 +0300

    Updated Lithuanian translation

M	po/lt.po

commit 908988682c47ae84d7b505da6c3f840076375dab
Author: Balázs Úr <urbalazs@src.gnome.org>
Date:	Mon Apr 1 09:59:02 2013 +0200

    Updated Hungarian translation

M	po/hu.po

commit 469c0db6780d3137927d8d2b204f78d314833bc3
Author: David King <amigadave@amigadave.com>
Date:	Sun Mar 31 22:59:48 2013 +0100

    Use Log_Print rather than g_print in ID3v2 reader

M	src/id3v24_tag.c

commit f4c3b3fbacdaf6a4c32b2c39efa88c6fea6926b1
Author: David King <amigadave@amigadave.com>
Date:	Sun Mar 31 21:37:16 2013 +0100

    Improve TagLib error handling, bug 695453

    Avoid dereferencing NULL pointers returned from TagLib when an
    MP4 file
    could not be read.

M	src/mp4_header.c
M	src/mp4_tag.c

commit 3f1162cde697dcee30eceb5aa9a84981b83d7fd9
Author: Martin Srebotnjak <miles@filmsi.net>
Date:	Fri Mar 29 15:49:08 2013 +0100

    Updated Slovenian translation

M	po/sl.po

commit df82f10667ffd58b856a1fea312065b2ab36563c
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 29 10:11:42 2013 +0000

    Make the picture type mapping array static

M	src/picture.c

commit aa4ea8424ec8cf8e8eeb87544fd2f3de5057e1b9
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 28 22:15:59 2013 +0000

    Refactor picture type from filename heuristic

    At the suggestion of Oliver Joos, change the default type when
    adding a
    picture to "front cover":

    https://mail.gnome.org/archives/easytag-list/2013-March/msg00015.html

    Refactor the picture type heuristic into a separate function.

M	src/picture.c
M	src/picture.h

commit a18252912de5d73bafef4d9d646d142f1609406c
Author: DarshanMn <darshan.trin@gmail.com>
Date:	Tue Mar 26 21:44:15 2013 +0530

    Make the file list treeview columns resizeable

    Fixes bug 694312.

M	src/browser.c

commit c0f2836662a3606da8cb550751d7be9abed58ce7
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 12 15:55:47 2013 +0000

    Write URL for FLAC and Vorbis to CONTACT field

    EasyTAG incorrectly wrote the URL of fies into the LICENSE field, but
    that field is for the license informaton (which may be a URL). CONTACT
    is a more appropriate field. Fixes bug 690301.

M	src/flac_tag.c
M	src/ogg_tag.c

commit f2589aa6edc4925d1404f8c97f05b2e3d52ca7a0
Author: David King <amigadave@amigadave.com>
Date:	Sun Mar 24 23:00:53 2013 +0000

    Remove XMMS Vorbis comment compatibility

    The empty comment name that XMMS used is old and non-standard.

M	src/ogg_tag.c
M	src/prefs.c
M	src/prefs.h
M	src/setting.c
M	src/setting.h

commit d5c6e5acda0c47671065b4d0bf436f0fb7c6a634
Author: David King <amigadave@amigadave.com>
Date:	Sun Mar 24 22:46:59 2013 +0000

    Do not write COMMENT field for Vorbis and FLAC

    DESCRIPTION is the field in the Vorbis comment specification for "a
    short text description of the contents" and so it should be used in
    preference to the COMMENT field which is not present in the
    specification. Fixes bug 690297.

M	src/flac_tag.c
M	src/ogg_tag.c

commit 874a1202e041476f070d928b8722ea98ac01d769
Author: David King <amigadave@amigadave.com>
Date:	Sun Mar 24 20:14:47 2013 +0000

    Remove old and unused MIN* defines

M	src/et_core.h

commit 43ba808e14c50ad8793914ac54efaffa42761f01
Author: Balázs Úr <urbalazs@src.gnome.org>
Date:	Sun Mar 24 21:02:58 2013 +0100

    Updated Hungarian translation

M	po/hu.po

commit 21ad31084d71649dfe8fc67295729bf6da2efda4
Author: Balázs Úr <urbalazs@src.gnome.org>
Date:	Sun Mar 24 20:54:30 2013 +0100

    Updated Hungarian translation

M	po/hu.po

commit 5559aea708d4c6b885861176197945a99b72e6e3
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Mar 24 20:43:47 2013 +0100

    Updated Polish translation

M	po/pl.po

commit 6620c780f22cc1272111ece3579328ed65203770
Author: Abhinav <abhijangda@hotmail.com>
Date:	Sun Mar 24 21:33:48 2013 +0530

    Use regular expressions when processing fields

    Fixes bug 689429.

M	src/scan.c

commit b3977e52c20d6488048b29ef4da3a5862f7b3158
Author: David King <amigadave@amigadave.com>
Date:	Sun Mar 24 14:40:21 2013 +0000

    Attach popup menus to the associated widgets

M	src/log.c
M	src/misc.c

commit 2d27dee5f8a444cbdbef598a5315b425dc726d06
Author: David King <amigadave@amigadave.com>
Date:	Sun Mar 24 13:10:08 2013 +0000

    Attach menus to browser tree view widgets

    Additionally, fix a typo to add the context-menu handler to
    BrowserAlbumList (it was previously added twice to BrowserArtistList).

M	src/browser.c

commit be4eec5af5e9a14fa533f116c8966782b79edafd
Author: Abhinav <abhijangda@hotmail.com>
Date:	Sun Mar 24 17:11:18 2013 +0530

    Select the path when right-clicking a tree view

    Fixes bug 695160.

M	src/browser.c

commit 8e1cda04871e2b5f219d9f6932e8c8dac55d3d3c
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Sat Mar 23 16:17:35 2013 +0100

    Updated Slovenian translation

M	po/sl.po

commit 08a17b5f7952b9b8c52a62cf49c021de1dac8185
Author: Aurimas Černius <aurisc4@gmail.com>
Date:	Fri Mar 22 23:43:29 2013 +0200

    Updated Lithuanian translation

M	po/lt.po

commit 0996b14b44fa087d4d9c45f485f7e20576f3c2d7
Author: Martin Srebotnjak <miles@filmsi.net>
Date:	Fri Mar 22 10:38:40 2013 +0100

    Updated Slovenian translation

M	po/sl.po

commit 6505636b3fa4bf7c162fb346a08e98cd5475bf25
Author: Martin Srebotnjak <miles@filmsi.net>
Date:	Fri Mar 22 10:37:21 2013 +0100

    Updated Slovenian translation

M	po/sl.po

commit f7ed3dd1ffb8918055cc681fa59b31c4491c33a9
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Fri Mar 22 02:16:57 2013 +0100

    Updated Polish translation

M	po/pl.po

commit f9ba26275bd9901535fc11dfd7ae02202a3d5ad2
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 21 21:00:40 2013 +0000

    Replace most mini buttons with GtkEntry icons

    The mini buttons used for the "apply tag to all files" feature were
    unintuitive as there was  indication of what they were for (other
    than a
    tooltip), so replace them with a themed "insert-text" icon inside the
    relevant GtkEntry fields.

M	src/easytag.c
M	src/easytag.h

commit f4ddc2a55da22fad8d8e676cd1850d8c9c359c62
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 21 18:19:57 2013 +0000

    Rework the process fields selection buttons

    Use a themed icon for the "select all" button. Use the existing
    "invert
    selection" icon rather than an alternative version. Remove some button
    sizing overrides.

M	Makefile.am
D	data/pixmaps/black.xpm
D	data/pixmaps/blackwhite.xpm
M	src/scan.c

commit 43fb16e304a238072f08f88331eb0ec96e4591c9
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 21 17:56:09 2013 +0000

    Remove unused sound and grab icons

M	Makefile.am
D	data/pixmaps/grab.xpm
D	data/pixmaps/sound.xpm
M	src/misc.c

commit 528d48b41a70adf4824a28d757c3f7893e1defbd
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 21 17:50:48 2013 +0000

    Move file status icons into the filename entry

    Instead of the custom file status icons, use the standard
    "emblem-readonly" and "emblem-unreadable" emblems. Additionally, move
    the icons from a GtkImage to inside the filename GtkEntry. Update the
    tooltip text.

M	Makefile.am
D	data/pixmaps/forbidden.xpm
D	data/pixmaps/read_only.xpm
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/misc.c

commit 9b372f7f452d10fdaee802587f29059588dbe576
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 21 17:05:58 2013 +0000

    Remove custom add folder icon

    Replace it with the themed "folder-new" icon instead.

M	Makefile.am
D	data/pixmaps/add_folder.xpm
M	src/misc.c
M	src/scan.c

commit 0de3541155c4bf5b6729557c402ce4b2e3a83afe
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 21 16:58:20 2013 +0000

    Remove custom parent folder icon

    Use the themed "go-up" icon instead.

M	Makefile.am
D	data/pixmaps/parent_folder.xpm
M	src/browser.c
M	src/misc.c

commit 14ba9fe6365d08ea3a8564ddd4639c2d4d19ece0
Author: David King <amigadave@amigadave.com>
Date:	Thu Mar 21 06:37:51 2013 +0000

    Unref icons after setting them on a model

    GThemedIcon, GEmblem and GEmblemedIcon inherit from GObject, not
    GInitiallyUnowned, so must be explicitly unreffed after adding them
    to a
    GtkListStore (which adds a reference in addition to the initial
    reference upon creation).

M	src/browser.c

commit b0e8ccba5c8a2506008994f66c4bef32765d6a6c
Author: David King <amigadave@amigadave.com>
Date:	Sun Mar 3 18:09:30 2013 +0000

    Do not set a custom wmclass for the scanner window

    Doing so violates the ICCCM specification:

    http://tronche.com/gui/x/icccm/sec-4.html#WM_CLASS

M	src/scan.c

commit 1f9d3989d9f3fb6a09df3b7cd24b07892741fae5
Author: David King <amigadave@amigadave.com>
Date:	Sun Mar 3 18:06:42 2013 +0000

    Remove setting to force the scanner window on top

    The scanner window should always be set transient for the main window,
    and it is up to the window manager whether that means that the scanner
    window is placed above the main window.

M	src/prefs.c
M	src/scan.c
M	src/setting.c
M	src/setting.h

commit eece33a1388630ce88c3bc9a896e2cbca80e9e0a
Author: David King <amigadave@amigadave.com>
Date:	Sun Mar 3 17:50:54 2013 +0000

    Remove message box location settings

    In all cases the message box dialog was set as transient for the main
    window.

M	src/picture.c
M	src/prefs.c
M	src/setting.c
M	src/setting.h

commit 8befedc12622e57dab8b50b23dbe26e10fb0bd61
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 20 23:38:12 2013 +0000

    Use themed directory icons in browser tree view

    Avoid using hardcoded pixmaps and instead use GThemedIcon and
    GEmblemedIcon for the directory icons in the browser tree view.

M	Makefile.am
D	data/pixmaps/closed_folder.xpm
D	data/pixmaps/closed_folder_readonly.xpm
D	data/pixmaps/closed_folder_unreadable.xpm
D	data/pixmaps/opened_folder.xpm
D	data/pixmaps/ram_disk.xpm
M	src/browser.c
M	src/browser.h

commit 1001033d686b303ddd46631576e3834ef8c636bd
Author: Abhinav <abhijangda@hotmail.com>
Date:	Wed Mar 20 17:13:46 2013 +0530

    Fix crash when trying to browse a deleted path

    Fixes bug 698442.

M	src/browser.c

commit 7371516000fc8409c018ba52c78f0a15d3659363
Author: Martin Srebotnjak <miles@filmsi.net>
Date:	Mon Mar 18 10:42:56 2013 +0100

    Updated Slovenian translation

M	po/sl.po

commit 1a3637b754089fde4c193fffc05edd8756ddc3b7
Author: Martin Srebotnjak <miles@filmsi.net>
Date:	Mon Mar 18 10:39:42 2013 +0100

    Updated Slovenian translation

M	po/sl.po

commit deee0a430abdb09bf3c7b7d77e1136fbf10cb59f
Author: Christian Kirbach <Christian.Kirbach@googlemail.com>
Date:	Sat Mar 16 01:23:30 2013 +0100

    Updated German translation

M	po/de.po

commit b89684ee5dca7b6cb90614fb907034bf81efe7fe
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 15 17:26:05 2013 +0000

    Replace man page with one generated from DocBook

    Check for the required DocBook XML DTD and catalogs in configure. Add
    a
    --disable-man argument so that building the man page can be explicitly
    disabled.

M	.gitignore
M	Makefile.am
M	autogen.sh
M	configure.ac
D	doc/easytag.1.in
A	doc/easytag.xml
A	doc/version.xml.in
A	m4/gtkdoc_jh_check_xml_catalog.m4
A	m4/gtkdoc_jh_path_xml_catalog.m4

commit 9fd7afd122e2078eec579531705c507ed4adb1a7
Author: Martin Srebotnjak <miles@filmsi.net>
Date:	Thu Mar 14 20:02:48 2013 +0100

    Updated Slovenian translation

M	po/sl.po

commit 9aac81507fff7f4c1fdf31b78362f1fc370a40b8
Author: David King <amigadave@amigadave.com>
Date:	Wed Mar 13 11:04:11 2013 +0000

    Add src/application.c to POTFILES.in

M	po/POTFILES.in

commit dbfd62e6571597282786e9053f757e0998dc8558
Author: David King <amigadave@amigadave.com>
Date:	Tue Mar 12 21:20:23 2013 +0000

    Update TODO

M	TODO

commit 40c62b5c92f0243ea3f1020a8a547e4e21c854ce
Author: David King <amigadave@amigadave.com>
Date:	Tue Mar 12 20:43:44 2013 +0000

    Use GApplication for application life cycle

    Store a pointer to the main window in EtApplication. Tie the
    lifetime of
    EtApplication to the lifetime of the application. Move application
    startup code to the ETApplication::activate handler. Present the main
    window if the application is executed while it is already running.

M	src/application.c
M	src/application.h
M	src/easytag.c

commit 9a9f64965adfd98ddd45b42d2440e61058997d2b
Author: David King <amigadave@amigadave.com>
Date:	Mon Mar 11 22:09:12 2013 +0000

    Subclass GApplication as EtApplication

    Only handle command-line parsing for the moment. Move local instance
    command-line handling from main().

M	Makefile.am
A	src/application.c
A	src/application.h
M	src/easytag.c

commit 51e2476cb6f9dc564020c5ee989fcc649c03086c
Author: Aurimas Černius <aurisc4@gmail.com>
Date:	Sun Mar 10 16:43:07 2013 +0200

    Updated Lithuanian translation

M	po/lt.po

commit 31c71924e86b6b088e1c0aad253e55f6c23d5b4e
Author: Stas Solovey <whats_up@tut.by>
Date:	Fri Mar 8 19:06:57 2013 +0400

    Updated Russian translation

M	po/ru.po

commit 17f0a7aaaac843da5d93998d298d71d6bd2349d9
Author: Milagros Alessandra Infante Montero <maim92@gmail.com>
Date:	Thu Mar 7 13:06:52 2013 +0100

    Updated Spanish translation

M	po/es.po

commit 349f73f445d5064458e7c8b8d7fb267f6c0ebf9c
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Thu Mar 7 11:29:34 2013 +0100

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit 7e2d310bfb18d74ee84f57caaf286c8906aa08bd
Author: Dominique Leuenberger <dimstar@opensuse.org>
Date:	Wed Mar 6 21:09:51 2013 +0100

    Do not add __DATE__ and __TIME__ into the binaries

    There is no real gain in doing so but it neutralizes some distributors
    efforts of not re-publishing packages if the builds did not change.

    Having date and time in the binaries always results in changed
    packages.

    Fixes bug 695322.

M	src/easytag.c

commit 26ddaa7c4be188b18bd5ffbdc8b4691f2c204df5
Author: Dominique Leuenberger <dimstar@opensuse.org>
Date:	Wed Mar 6 21:11:50 2013 +0100

    Update FSF Address, bug 695321

M	COPYING
M	src/about.c
M	src/about.h
M	src/ape_tag.c
M	src/ape_tag.h
M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/browser.h
M	src/cddb.c
M	src/cddb.h
M	src/charset.c
M	src/charset.h
M	src/crc32.c
M	src/crc32.h
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/et_core.h
M	src/flac_header.c
M	src/flac_header.h
M	src/flac_tag.c
M	src/flac_tag.h
M	src/genres.h
M	src/id3_tag.c
M	src/id3_tag.h
M	src/id3lib/c_wrapper.cpp
M	src/id3lib/id3_bugfix.h
M	src/id3v24_tag.c
M	src/libapetag/COPYING.LGPL
M	src/libapetag/apetaglib.c
M	src/libapetag/apetaglib.h
M	src/libapetag/id3v2_read.c
M	src/libapetag/id3v2_read.h
M	src/libapetag/info_mac.c
M	src/libapetag/info_mac.h
M	src/libapetag/info_mpc.c
M	src/libapetag/info_mpc.h
M	src/libapetag/is_tag.c
M	src/libapetag/is_tag.h
M	src/libmpg123/README
M	src/libmpg123/mpg123.c
M	src/log.c
M	src/log.h
M	src/misc.c
M	src/misc.h
M	src/monkeyaudio_header.c
M	src/monkeyaudio_header.h
M	src/mp4_header.c
M	src/mp4_header.h
M	src/mp4_tag.c
M	src/mp4_tag.h
M	src/mpeg_header.c
M	src/mpeg_header.h
M	src/musepack_header.c
M	src/musepack_header.h
M	src/ogg_header.c
M	src/ogg_header.h
M	src/ogg_tag.c
M	src/ogg_tag.h
M	src/picture.c
M	src/picture.h
M	src/prefs.c
M	src/prefs.h
M	src/scan.c
M	src/scan.h
M	src/setting.c
M	src/setting.h
M	src/wavpack_header.c
M	src/wavpack_header.h
M	src/wavpack_tag.c
M	src/wavpack_tag.h
M	src/win32/win32dep.c
M	src/win32/win32dep.h
M	src/win32/win_easytag.c

commit 218a4663f247f03141cbf2a6666af7a0e9c92beb
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Tue Mar 5 18:56:16 2013 +0100

    Updated Polish translation

M	po/pl.po

commit 0b436b0901113f8d2d469dece22a865bedae8597
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Tue Mar 5 10:09:07 2013 +0000

    Stub out more help pages, add legal.xml

    Create stubs for applying-changes, image and tag editing pages. Add
    legal.xml with license information and link to it from all help pages.

A	help/C/applying-changes.page
A	help/C/image-properties.page
A	help/C/image-reset.page
A	help/C/image.page
M	help/C/index.page
M	help/C/introduction.page
A	help/C/legal.xml
M	help/C/rename-file.page
M	help/C/starting.page
A	help/C/tag-current.page
A	help/C/tag-edit.page
A	help/C/tag-save.page
A	help/C/tag-selection.page
A	help/C/tag.page

commit 6d9561284b4a70d86b757d24f55dcd51f477cc19
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Mon Mar 4 23:30:15 2013 +0000

    Improve find files dialog title

    Change the dialog title to use 'find' instead of 'search a' and comply
    with the HIG.

M	src/misc.c

commit b04dd51817e1da1b297d55df4b6bab8278fffe5b
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Mon Mar 4 22:36:34 2013 +0000

    Make scanner dialog title comply with the HIG

    Use header capitalisation for the dialog title and use 'filename'
    instead of 'file name'.

M	src/scan.c

commit 9c649064e0bd66445d635e855261f6282d2b2d37
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Mon Mar 4 21:56:56 2013 +0000

    Start writing Mallard help, add basics

    Add index, introduction, rename-file and starting pages. Add icon to
    figures.

A	help/C/figures/icon.png
A	help/C/index.page
A	help/C/introduction.page
A	help/C/rename-file.page
A	help/C/starting.page

commit a36cc1a5c7065569518b72414b289c60afbd6762
Author: David King <amigadave@amigadave.com>
Date:	Fri Mar 1 20:56:37 2013 +0000

    Improve GtkEntry sizes in tags notebook

    Especially in GTK+ 3, the tab notebook could take up far too much
    vertical space. Setting the size request of GtkEntry with
    gtk_entry_set_width_chars() produces a better result than hardcoding
    the
    pixel widths, as was done previously. Thanks to Arnd for noticing the
    problem:

    https://mail.gnome.org/archives/easytag-list/2013-March/msg00004.html

M	src/easytag.c

commit b878b71b49ab8ef2733e3a98eb826a74ebaa7210
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Fri Mar 1 15:54:42 2013 +0100

    Updated Slovenian translation

M	po/sl.po

commit 8200c0bdabde9a8ee797bf60fde27e1faa2d7eb2
Author: Milagros Infante Montero <maim92@gmail.com>
Date:	Mon Feb 25 11:19:28 2013 +0100

    Updated Spanish translation

M	po/es.po

commit 99a47e7a6b207f504520a6587978a460233e175c
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Fri Feb 22 19:35:55 2013 +0100

    Updated Polish translation

M	po/pl.po

commit 8e6c6fe03ce8ed2970ffc0d32a24ecbf1e4eedea
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 21 17:51:00 2013 +0000

    Test the desktop file validity during make check

M	Makefile.am
M	configure.ac

commit dc377f9ac5dec9a317afa5c598681e8f41b6cf4f
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 21 16:41:39 2013 +0000

    Remove deprecated x-directory/normal from .desktop

    It causes desktop-file-validate to emit a warning, and is already
    covered by inode/directory.

M	easytag.desktop.in

commit 589a3dd07a40ab43694e572a5d36aa6664918c82
Author: Ekaterina Gerasimova <kittykat3756@gmail.com>
Date:	Wed Feb 20 22:11:19 2013 +0000

    Change "Scanner Options" to "Scanner Preferences"

M	src/scan.c

commit 63b524055c317371423662f81d9660868ef06c54
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Wed Feb 20 23:04:42 2013 +0100

    Updated Polish translation

M	po/pl.po

commit bb56f7ff5c0f935dab1156fe76bd93c80d66534c
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Wed Feb 20 12:02:09 2013 +0100

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit ea534000a8968ebb5e9bf3b5546c1efae9abe542
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 19 21:19:17 2013 +0000

    Remove some EventBox leftovers

M	src/prefs.c

commit d6808cfd02372d6158c74acc364ccc6ac2247332
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 19 16:04:45 2013 +0000

    Avoid using GtkEventBox unnecessarily

M	src/prefs.c
M	src/scan.c

commit 1a7ae6ddbc9c0d41814faf1922ffffa6a0548867
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 19 15:34:03 2013 +0000

    Use close stock item for close button in scanner

M	src/scan.c

commit 6c8cb69e2269ab7c42373ea9771ca1144eb731d0
Author: Milagros Infante Montero <maim92@gmail.com>
Date:	Mon Feb 18 10:37:35 2013 +0100

    Updated Spanish translation

M	po/es.po

commit dfda3824a13e81f8500d3204bda8811767afcb9c
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sat Feb 16 21:40:52 2013 +0100

    Updated Polish translation

M	po/pl.po

commit 2611ec0d564f866c543c6856191b6e011e11dc80
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 15 21:50:11 2013 +0000

    Minor updates to the man page

M	doc/easytag.1.in

commit 4c95da2a0d5b6e4205a8836c2ae7189daa1a7845
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 15 21:13:06 2013 +0000

    Remove outdated src/Makefile.mingw

M	README_win32.txt
D	src/Makefile.mingw

commit 7cfbe6e00e264566297a3b249abd04bc9023c1d0
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 15 20:58:46 2013 +0000

    Small improvements to status bar handling

    Use more appropriate parameter types for Statusbar_Message(). Use
    G_SOURCE_REMOVE. Use g_timeout_add_seconds() rather than
    g_timeout_add().

M	src/bar.c
M	src/bar.h

commit 3b62d82787ac1ca3bfa6b33c98ac1ec051d72fd4
Author: David King <amigadave@amigadave.com>
Date:	Fri Feb 15 20:08:47 2013 +0000

    Flip a conditional in Browser_Update_Current_Path

    This was causing the current browser path to never be updated.

M	src/browser.c

commit 8fd019ff9cafd713227171c3f64b0bd715204eaf
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 14 23:29:57 2013 +0000

    Avoid warnings when freeing the CDDB album list

    Check that the CDDB album list is not empty before freeing it.

M	src/cddb.c

commit 4d5cdd7dab803dd37da7ba89bac146aec49792e9
Author: David King <amigadave@amigadave.com>
Date:	Thu Feb 14 23:11:36 2013 +0000

    Fix a couple of memory leaks in the CDDB search

M	src/cddb.c

commit 90e35f098313fb675d387bb0c8e338f878a934be
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 13 22:26:08 2013 +0000

    Fix a memory leak when freeing the CDDB album list

M	src/cddb.c

commit 4362864c1285e6664f3b86ee8ce89d77d54b7476
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 13 18:28:38 2013 +0000

    Update DOAP file

M	easytag.doap

commit 89f35b1da378e5ddca7d949d8a8d47815960d380
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 13 17:41:20 2013 +0000

    Do not install TODO, HACKING and THANKS

    Automake automatically includes TODO and THANKS in the distributed
    tarball. Add HACKING to dist_noinst_DATA.

M	Makefile.am

commit 26f3a77d212d3eefca34b6794a028bfa4d26c3ff
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 13 17:37:40 2013 +0000

    Fix typo in configure.ac: wavpack → taglib

    Noticed by Tim Harder.

M	configure.ac

commit 666bebd45717e390d1143981be8f365e8d3bf15f
Author: Milagros Infante Montero <maim92@gmail.com>
Date:	Wed Feb 13 16:29:03 2013 +0100

    Updated Spanish translation

M	po/es.po

commit 535d5ed9c2b77dd4ef4144553adc5ebe17919366
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 12 08:36:57 2013 +0000

    Build without deprecations with GTK+ 3

    This reverts commit ae44533bb47500e713dd0fa5435e2d7d66a0d45a.

M	Makefile.am
M	configure.ac

commit a57d0ee350c2dd2b9b04bdd98a7633a0113f2ccf
Author: Florian Müllner <fmuellner@gnome.org>
Date:	Sun Feb 10 23:59:55 2013 +0100

    Use GtkGrid instead of GtkTable with GTK+ 3

    In GTK+-3, GtkTable has been deprecated in favor of the new GtkGrid
    widget, so add some compatibility code to mimick the new API and use
    that throughout the code base.

    https://bugzilla.gnome.org/show_bug.cgi?id=693569

M	src/cddb.c
M	src/easytag.c
M	src/gtk2_compat.c
M	src/gtk2_compat.h
M	src/misc.c
M	src/prefs.c
M	src/scan.c

commit 26eb6308fd0e8681728b72f9559598e59847a359
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 11 19:05:49 2013 +0000

    Verify the path in Browser_Update_Current_Path

    The comment at the top of Browser_Update_Current_Path mentioned
    that the
    invariant check for BrowserCurrentPath != path was to avoid a memory
    problem, but the check was only executed when path was NULL.

    Fixes bug 693613.

M	src/browser.c

commit 592da420246fb54699ced2a39b140e3da2a6a5ce
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 11 19:05:05 2013 +0000

    Fix two memory leaks in main

M	src/easytag.c

commit f3ed53585729659d24e21567fa4724bf79429c87
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 11 19:03:20 2013 +0000

    Mark Display_Usage as not returning

M	src/easytag.c

commit cca8579f23f9e8af5d50c790ee64ca5ede7242e8
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 11 19:02:36 2013 +0000

    Fix two memory leaks in Add_String_To_Combo_List

M	src/misc.c

commit 7e0b8196fcfc5ed9b66c8360ff8c6a40b851d1b2
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 11 17:37:18 2013 +0000

    Fix invariant check in PictureEntry_Update

M	src/picture.c

commit b4b3f6362182158414bdc1045e38e873f2eec424
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 11 17:36:59 2013 +0000

    Fix invariant check in ET_Undo_History_File_Data

M	src/et_core.c

commit da0e09b9bb43743bb9b851a44f3b94ef0e73a2f9
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 11 17:02:46 2013 +0000

    Fix Browser_Tree_Select_Dir return type comment

M	src/browser.c

commit a3d4948cc205d252cd464c0366cd026d706c4adc
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 11 16:54:40 2013 +0000

    Fix an invariant check from FALSE to NULL

M	src/et_core.c

commit cde61f8f5ceb5cbaacf0574b157bf5393a395b66
Author: Florian Müllner <fmuellner@gnome.org>
Date:	Mon Feb 11 01:21:20 2013 +0100

    Do not use gdk_cursor_unref() with Gdk3

    GdkCursor is no longer a boxed type in Gdk3 but a full-blown GObject.

    https://bugzilla.gnome.org/show_bug.cgi?id=693569

M	src/misc.c

commit 14473f69b312de6f9ce3aecfd55b0c4308b15f56
Author: Florian Müllner <fmuellner@gnome.org>
Date:	Sun Feb 10 22:22:00 2013 +0100

    Stop using GtkHandleBox, bug 693569

    The widget is deprecated in GTK+-3, as it is generally considered bad
    UI. In this particular case it is even completely pointless, as
    there is
    only a single place in the UI where the toolbar can be placed.

    https://bugzilla.gnome.org/show_bug.cgi?id=693569

M	src/bar.c

commit fdf8cc1151e5590033aad13b6ce28d3b84ef4ba2
Author: Florian Müllner <fmuellner@gnome.org>
Date:	Mon Feb 11 01:20:45 2013 +0100

    Add typecast to fix a compiler warning, bug 693569

    https://bugzilla.gnome.org/show_bug.cgi?id=693569

M	src/misc.c

commit f08c94a19cd33275421a07ee4d05975a0c7cb63c
Author: Milagros Infante Montero <maim92@gmail.com>
Date:	Mon Feb 11 09:36:03 2013 +0100

    Updated Spanish translation

M	po/es.po

commit 9ec495d3493ca466e4771dbe6a88e1815ccbabd2
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 11 08:29:00 2013 +0000

    Add information on patch style to HACKING

M	HACKING

commit ae44533bb47500e713dd0fa5435e2d7d66a0d45a
Author: Florian Müllner <fmuellner@gnome.org>
Date:	Sun Feb 10 21:10:06 2013 +0100

    build: Only use G*_DISABLE_DEPRECATED flags with GTK2

    For now, the code has only been updated to not use any deprecated
    GTK+-2 API to ease porting to GTK+-3; API that has only been
    deprecated in GTK+-3 is still in use, so don't use those flags
    when building with --with-gtk3.

    https://bugzilla.gnome.org/show_bug.cgi?id=693548

M	Makefile.am
M	configure.ac

commit c4ccd7bf9b14515dfeeeab59aeb9b14c5c99a01d
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 10 19:02:56 2013 +0000

    Set DISTCHECK_CONFIGURE_FLAGS

    Set build-time optional features to be forcibly enabled when running a
    distcheck.

M	Makefile.am

commit 17a33964c32035f6b9986e13726ae3582a126244
Author: Götz Waschk <goetz.waschk@gmail.com>
Date:	Sun Feb 10 18:54:17 2013 +0000

    Fix mixed declarations and code in WavPack support

M	src/wavpack_tag.c

commit 8b219be06690fff9e8d2486c932d9046c9c71e10
Author: David King <amigadave@amigadave.com>
Date:	Sun Feb 10 17:23:33 2013 +0000

    Update NEWS for 2.1.8 release

M	NEWS

commit 6b88377d8f674b7a9da5a139399f98858c071797
Author: David King <amigadave@amigadave.com>
Date:	Wed Jan 23 21:55:49 2013 +0000

    Change Picture.size from a gulong to a gsize

M	src/et_core.h

commit 2c44cbc71ad84e1617f6ff45621bdda2a57fd17d
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Mon Jan 28 16:44:22 2013 +0100

    Fix sign comparison compiler warning

    Fix compiler warning: pointer targets in passing argument 1 of
    ‘g_strsplit’ differ in signedness [-Wpointer-sign]

M	src/picture.c

commit 3437d3c283bb6b86049f4148cd15de6903108bd5
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 6 17:51:39 2013 +0000

    Improve two cases where realloc() fails

M	src/charset.c
M	src/libapetag/id3v2_read.c

commit e5b47d5fbdf6540fad2380313b1b6d0b9c8bf0b1
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 6 17:50:18 2013 +0000

    Fix a memory leak in a tag writing error path

M	src/easytag.c

commit 0d003a2b88447981b1641c073899b4e315b4b702
Author: David King <amigadave@amigadave.com>
Date:	Wed Feb 6 17:49:08 2013 +0000

    Fix a memory leak when checking for a buggy id3lib

M	src/id3_tag.c

commit 2b4b5e63087f8a991a227a57f68037d41e2e15a4
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 5 22:32:50 2013 +0000

    Simplify ET_Free_File_List()

    Use g_list_free_full().

M	src/et_core.c

commit f88a3e395f105e6480d75c9a00476010e282b5f0
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 5 22:19:13 2013 +0000

    Fix a memory leak when reading FLAC tags

M	src/flac_tag.c

commit 5f907767076983bfd82dbc23a2a572ea6640ab73
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Sat Jan 26 19:52:21 2013 +0100

    Fix a memory leak when freeing the log list

M	src/log.c

commit 738ef38c75e36ffdb2e12078994c3a2d923d402f
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 5 20:05:57 2013 +0000

    Avoid a trivial sign comparison warning

M	src/cddb.c

commit 0550fd464093d31d924309747a8b350734a5dfc1
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 5 18:11:25 2013 +0000

    Avoid a duplicate declaration

M	src/prefs.h

commit e21d924d7230cd839510aced4a1c4db0f037352f
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 5 17:54:43 2013 +0000

    Avoid mixed declarations and code

    Enable the warning (and make it an error) to prevent mixed
    declarations
    and code creeping in.

M	configure.ac
M	src/picture.c
M	src/vcedit.c

commit 3dd5e26c982bb7d5def05922e7e66a8f451dd77f
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 5 17:43:40 2013 +0000

    Use correct printf format specifier for size_t

M	src/libapetag/apetaglib.c

commit 1c5d60b73b72e5d3ade4cf78467e1ca642dc622b
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 5 17:24:33 2013 +0000

    Avoid setting a variable unnecessarily

M	src/misc.c
M	src/mpeg_header.c

commit e0a5170f4a6a313a204d620411c0d6e38ac83ffe
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 5 17:22:35 2013 +0000

    Remove some duplicates in conditional expressions

M	src/cddb.c
M	src/prefs.c

commit 62b84d6e00cacd49a42349b46dd77c96acadd07e
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 5 17:15:03 2013 +0000

    Fix several memory leaks found by cppcheck

M	src/easytag.c
M	src/id3v24_tag.c
M	src/picture.c

commit de7778d1fd6b5a329e08adb285cbd41a8e021722
Author: David King <amigadave@amigadave.com>
Date:	Tue Feb 5 17:14:19 2013 +0000

    Match g_malloc() usage with g_free()

M	src/id3v24_tag.c
M	src/wavpack_tag.c

commit 630956754b5119acce5a7ee31bfb7f83afb082fb
Author: Milagros Infante Montero <maim92@gmail.com>
Date:	Tue Feb 5 16:26:03 2013 +0100

    Updated Spanish translation

M	po/es.po

commit 7d1141cf8f9886eb38cd247e09139591ffeb8af5
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 4 18:48:46 2013 +0000

    Automatically check NEWS before releasing

    Check that the NEWS file has been updated during distcheck.

M	configure.ac

commit 256cbb8dbf3a756846ad4f41b576cdd0dcd3b043
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 4 18:08:29 2013 +0000

    Update .gitignore for non-recursive make

M	.gitignore

commit ed713384b7cbaa88c8fd0ec2284c5c5701ff48c9
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 4 18:04:51 2013 +0000

    Remove easytag.spec.in

    Neither Fedora nor OpenSuse use the provided spec file, so remove it.

M	.gitignore
M	Makefile.am
M	configure.ac
D	easytag.spec.in

commit 0231235431d74e16c6653d0324a8fdab27a8940f
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 4 18:02:51 2013 +0000

    Remove debian directory

    Neither Debian nor Ubuntu use the inline packaging, so drop it.

D	debian/changelog
D	debian/compat
D	debian/control
D	debian/copyright
D	debian/easytag.xpm
D	debian/install
D	debian/menu
D	debian/rules
D	debian/watch

commit e198ec026f5ca5dc84476c6211fd844b9e3da868
Author: David King <amigadave@amigadave.com>
Date:	Mon Feb 4 18:01:17 2013 +0000

    Remove USERS-GUIDE

M	Makefile.am
D	USERS-GUIDE

commit 07c47f91cc552737eff64d167d76d69b2ea8da55
Author: Milagros Infante Montero <maim92@gmail.com>
Date:	Fri Feb 1 09:58:09 2013 +0100

    Updated Spanish translation

M	po/es.po

commit 53a91ad95e66cc5736a7e60692e192aee7c7b79a
Author: Christoph J. Thompson <cjsthompson@gmail.com>
Date:	Wed Jan 30 19:04:58 2013 +0100

    Do not install the ChangeLog

    Since the about window has been redesigned and does not use the
    ChangeLog, it is no longer necessary to install it.

M	Makefile.am

commit a8f0b286fa805d7a285de22c801c7e4c3332cf55
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Thu Jan 24 18:53:20 2013 +0100

    Updated Polish translation

M	po/pl.po

commit 5fc0af630bf6cf6ae1e2127ec532eab9984b3734
Author: Milagros Infante Montero <maim92@gmail.com>
Date:	Thu Jan 24 10:42:26 2013 +0100

    Updated Spanish translation

M	po/es.po

commit 34be3b5c3f13caca09f4c06deee60be595a5aa82
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Thu Jan 24 10:38:55 2013 +0100

    Fixed typo in string

M	src/prefs.c

commit 98b3dd22bf8c635f5170b75ecb5d4d398fe481f7
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Thu Jan 24 10:36:18 2013 +0100

    Fixed typo in string

M	src/prefs.c

commit 01c26bdd7896f2546b33df9ea54e73187c7e7390
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 22 21:22:28 2013 +0000

    Add Adrian Bunk to AUTHORS

M	AUTHORS
M	src/about.c

commit 7d5ead7cd36ac299813d76bb04580d7dddb2a24c
Author: Adrian Bunk <bunk@stusta.de>
Date:	Mon Jan 21 20:54:00 2013 +0200

    Use g_base64_{de,en}code()

    There is no point in having own code for functionality already
    provided
    by glib.

M	Makefile.am
M	src/Makefile.mingw
D	src/base64.c
D	src/base64.h
M	src/cddb.c
M	src/ogg_tag.c

commit a3c4484335e2c32538930e81c66dbace10149803
Author: Adrian Bunk <bunk@stusta.de>
Date:	Mon Jan 21 20:38:27 2013 +0200

    apetag_save(): make temp unsigned

    This fixes the following gcc warnings:

    <--  snip  -->

      CC     src/libapetag/easytag-apetaglib.o
    src/libapetag/apetaglib.c: In function ‘apetag_save’:
    src/libapetag/apetaglib.c:993:13: warning: pointer targets in passing
    argument 1 of ‘long2ape’ differ in signedness [-Wpointer-sign]
    src/libapetag/apetaglib.c:118:1: note: expected ‘unsigned char
    *’ but argument is of type ‘char *’
    src/libapetag/apetaglib.c:996:13: warning: pointer targets in passing
    argument 1 of ‘long2ape’ differ in signedness [-Wpointer-sign]
    src/libapetag/apetaglib.c:118:1: note: expected ‘unsigned char
    *’ but argument is of type ‘char *’
    src/libapetag/apetaglib.c:1002:13: warning: pointer targets in passing
    argument 1 of ‘long2ape’ differ in signedness [-Wpointer-sign]
    src/libapetag/apetaglib.c:118:1: note: expected ‘unsigned char
    *’ but argument is of type ‘char *’

    <--  snip  -->

M	src/libapetag/apetaglib.c

commit 5668536fe70b842cafc2274f523fd3f080f97139
Author: Adrian Bunk <bunk@stusta.de>
Date:	Mon Jan 21 20:21:50 2013 +0200

    configure.ac: remove unneeded cruft

    This patch removes the following from configure.ac:
    - AC_TYPE_MODE_T (mode_t is not used)
    - AC_FUNC_FORK (the resulting HAVE_ defines are not used)
    - AC_CHECK_FUNCS() of mkdir strstr strtol
	(the resulting HAVE_ defines are not used)
    - AC_SEARCH_LIBS([strerror], [cposix]) (the only platform that ever
	needed it was Sun's INTERACTIVE Systems Corporation Unix, and
	that is unsupported since 2006)

M	configure.ac

commit 5f763220f87a746c4c94b0eb827bb4c3cb67362c
Author: Adrian Bunk <bunk@stusta.de>
Date:	Mon Jan 21 20:04:15 2013 +0200

    require FLAC >= 1.1.4 and followup cleanups

    The pkgconfig that is used was added in 1.1.4, so older versions are
    anyway no longer supported.

    Additional cleanups this allowed:
    - FLAC 1.1.4 also contains the fix for flac not being linked with
    libogg
    - FLAC < 1.1.3 compat code is no longer required

M	configure.ac
M	src/easytag.c
M	src/flac_header.c
M	src/flac_tag.c

commit dcfa28ec6622d60717b0be1631f43d841132a11e
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 22 16:12:52 2013 +0000

    Fix error handling when calling g_file_new_tmp

M	src/id3_tag.c

commit 01ee35bf652c39cbd756967c90c865d33874ac25
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 21 23:18:24 2013 +0000

    Update Windows icon

    icotool --create --output win32/easytag.ico 16x16/easytag.png \
    32x32/easytag.png 48x48/easytag.png 256x256/easytag.png

M	Makefile.am
M	data/icons/win32/easytag.ico
D	data/icons/win32/easytag2.ico

commit 3ebaea1d571d62e11708f9c692307018fb59bd83
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 21 22:58:33 2013 +0000

    Fix email address for Waqas Qamar

M	THANKS
M	src/about.c

commit a450ff4d0b032051a4dcc879141323db7ff236ba
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 21 22:38:52 2013 +0000

    Add new icons from Waqas Qamar, bug 689474

M	Makefile.am
M	THANKS
A	data/icons/128x128/easytag.png
A	data/icons/16x16/easytag.png
A	data/icons/256x256/easytag.png
A	data/icons/32x32/easytag.png
A	data/icons/48x48/easytag.png
M	data/icons/64x64/easytag.png
A	data/icons/scalable/easytag.svg
M	src/about.c

commit 9966e18e3462acad5365ca511656392d30caed21
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 21 22:22:34 2013 +0000

    Move Windows .ico files under data/icons/win32

M	Makefile.am
R100	data/pixmaps/EasyTAG.ico	data/icons/win32/easytag.ico
R100	data/pixmaps/EasyTAG2.ico	data/icons/win32/easytag2.ico
M	src/win32/easytag.rc

commit 1492c1869142995e354e2d72cd0059a4978b910c
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 21 22:12:49 2013 +0000

    Distribute the NSIS installer script .in

    Fixes make distcheck.

M	Makefile.am

commit ad997324869f9608ba7189cbe2ddb59fa0b297a1
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 21 22:08:03 2013 +0000

    Remove some old XPM icons

M	Makefile.am
R100	data/pixmaps/easytag.png	data/icons/64x64/easytag.png
D	data/pixmaps/EasyTAG2.xpm
D	data/pixmaps/EasyTAG_logo.xpm

commit 15003246bc1fe8037c99ab0cabb632e5861fbb1a
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 21 20:02:03 2013 +0000

    Move pixmaps to data/pixmaps

M	Makefile.am
R100	pixmaps/EasyTAG.ico	data/pixmaps/EasyTAG.ico
R100	pixmaps/EasyTAG2.ico	data/pixmaps/EasyTAG2.ico
R100	pixmaps/EasyTAG2.xpm	data/pixmaps/EasyTAG2.xpm
R100	pixmaps/EasyTAG_logo.xpm	data/pixmaps/EasyTAG_logo.xpm
R100	pixmaps/add_folder.xpm	data/pixmaps/add_folder.xpm
R100	pixmaps/album.xpm	data/pixmaps/album.xpm
R100	pixmaps/all_downcase.xpm	data/pixmaps/all_downcase.xpm
R100	pixmaps/all_uppercase.xpm	data/pixmaps/all_uppercase.xpm
R100	pixmaps/artist.xpm	data/pixmaps/artist.xpm
R100	pixmaps/artist_album.xpm	data/pixmaps/artist_album.xpm
R100	pixmaps/black.xpm	data/pixmaps/black.xpm
R100	pixmaps/blackwhite.xpm	data/pixmaps/blackwhite.xpm
R100	pixmaps/closed_folder.xpm	data/pixmaps/closed_folder.xpm
R100	pixmaps/closed_folder_readonly.xpm
data/pixmaps/closed_folder_readonly.xpm
R100	pixmaps/closed_folder_unreadable.xpm
data/pixmaps/closed_folder_unreadable.xpm
R100	pixmaps/easytag.png	data/pixmaps/easytag.png
R100	pixmaps/first_letter_uppercase.xpm
data/pixmaps/first_letter_uppercase.xpm
R100	pixmaps/first_letter_uppercase_word.xpm
data/pixmaps/first_letter_uppercase_word.xpm
R100	pixmaps/forbidden.xpm	data/pixmaps/forbidden.xpm
R100	pixmaps/freedb.xpm	data/pixmaps/freedb.xpm
R100	pixmaps/gnudb.xpm	data/pixmaps/gnudb.xpm
R100	pixmaps/grab.xpm	data/pixmaps/grab.xpm
R100	pixmaps/invert_selection.xpm	data/pixmaps/invert_selection.xpm
R100	pixmaps/mask.xpm	data/pixmaps/mask.xpm
R100	pixmaps/musicbrainz.xpm data/pixmaps/musicbrainz.xpm
R100	pixmaps/opened_folder.xpm	data/pixmaps/opened_folder.xpm
R100	pixmaps/parent_folder.xpm	data/pixmaps/parent_folder.xpm
R100	pixmaps/ram_disk.xpm	data/pixmaps/ram_disk.xpm
R100	pixmaps/read_only.xpm	data/pixmaps/read_only.xpm
R100	pixmaps/red_lines.xpm	data/pixmaps/red_lines.xpm
R100	pixmaps/sequence_track.xpm	data/pixmaps/sequence_track.xpm
R100	pixmaps/sound.xpm	data/pixmaps/sound.xpm
R100	pixmaps/unselect_all.xpm	data/pixmaps/unselect_all.xpm
M	easytag-win32-installer.nsi.in
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/misc.c
M	src/scan.c
M	src/win32/easytag.rc

commit 515a83f6d3b4241bc0d30852b2043f1da25f1b97
Author: David King <amigadave@amigadave.com>
Date:	Wed Jan 16 20:45:36 2013 +0000

    Remove obsolete mingw build files

    They are no longer required now that the mingw build has been merged
    into the rest of the build system.

M	Makefile.am
D	Makefile.mingw
D	config.h.mingw
D	po/Makefile.mingw

commit 1afb796740d51436a708fb03292348cea9a2fb9d
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 15 23:23:58 2013 +0000

    Update .gitignore for mingw builds

M	.gitignore

commit 75b1bb0140ad4a0519a147a4490b8a2aafa80d47
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 15 23:22:34 2013 +0000

    Small NSIS installer script improvements

    Generate the NSIS installer script with a Makefile rule. Substitute
    several variables from the Makefile to make the script more generic.
    Hardcode the DLL paths to those found on a Fedora mingw installation
    (for now).

M	Makefile.am
M	configure.ac
R100	src/win32/nsis/easytag-header.bmp
data/nsis/easytag-header.bmp
R100	src/win32/nsis/easytag-install.bmp
data/nsis/easytag-install.bmp
R100	src/win32/nsis/easytag-install.ico
data/nsis/easytag-install.ico
R100	src/win32/nsis/easytag-uninstall.bmp
data/nsis/easytag-uninstall.bmp
D	easytag-win32-installer.nsi
A	easytag-win32-installer.nsi.in

commit 747771f8ae3cad0fe94fa2cdd4fc349a3c6b94e3
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 15 22:12:31 2013 +0000

    Improve windows.h versus winsock2.h include order

    winsock2.h must be included before windows.h.

M	src/win32/win32dep.c
M	src/win32/win32dep.h

commit edd60c71f545e76fe11ed7a719c51869391b9f4d
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 15 22:05:35 2013 +0000

    Avoid redefining LOCALEDIR, LIBDIR, DATADIR

M	src/win32/win32dep.h

commit 73b98b8f144309246cb051563a6a934c1cfcf403
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 15 21:55:29 2013 +0000

    Several fixes to compile for mingw

M	src/browser.c
M	src/easytag.c
M	src/libapetag/apetaglib.c
M	src/prefs.c

commit 01789976f85ca91a017662ee0426ac190d0c7fd6
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 15 21:51:58 2013 +0000

    Check for [f]truncate and gethostbyname

    Check for ftruncate and truncate during configure, and use wrappers on
    Windows. Check for gethostbyname so that the Winsock library
    (ws2_32) is
    added to LIBS on Windows.

M	configure.ac
M	src/win32/win32dep.c
M	src/win32/win32dep.h

commit 1589934ae5f3a87668e6bfc8986621ba8a2d2a3d
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 15 21:47:35 2013 +0000

    Conditionally compile win32 compatibility code

    If a Windows (strictly mingw) host is detected during configure,
    compile
    the Windows compatibility wrapper functions.

M	Makefile.am
M	src/win32/win32dep.h

commit ca3683126030cf8e71805ca9e6660e74fd4a4277
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 20 22:32:16 2013 +0000

    Use the XDG music directory as the default path

    If no music directory is set, use the home directory as before.

M	src/setting.c

commit 1ebeb8ec5fe62f9ed5564707dc479eb21158001e
Author: David King <amigadave@amigadave.com>
Date:	Sun Jan 20 22:29:08 2013 +0000

    Use the empty string for empty image descriptions

    Passing NULL to the underlying
    FLAC__metadata_object_picture_set_description() is incorrect according
    to the API reference, and has previously caused some downstream bugs:
    https://bugs.launchpad.net/ubuntu/+source/easytag/+bug/558804 and
    https://bugzilla.redhat.com/show_bug.cgi?id=559828

M	src/picture.c

commit 256db3102ca95ff77e56e91b2c7acf05497bfadd
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sat Jan 19 04:43:37 2013 +0100

    Updated Polish translation

M	po/pl.po

commit e4e7fc388dd2b52293011cfee9204494ab53da03
Author: Milagros Infante Montero <maim92@gmail.com>
Date:	Fri Jan 18 10:21:33 2013 +0100

    Updated Spanish translation

M	po/es.po

commit c5cca4d46d8801bcb75a6802ed37053ffdbdfcc3
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Fri Jan 18 10:19:57 2013 +0100

    Fixed several typos and errors in strings

M	src/prefs.c

commit fac85e3f9a8db097cc4de4af038256e1cc158f08
Author: David King <amigadave@amigadave.com>
Date:	Mon Jan 14 21:05:03 2013 +0000

    Rewrite the CRC32 function

    Simplify the error handling and be more specific about data types.

M	src/crc32.c
M	src/crc32.h
M	src/scan.c

commit 875bc7856ae6a50124afaec1b498bce42c759a1f
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 12 23:02:39 2013 +0000

    Add static to more variable declarations

    Remove some unused variables, caught by making them static.

M	src/ape_tag.c
M	src/bar.c
M	src/browser.c
M	src/browser.h
M	src/cddb.c
M	src/charset.c
M	src/charset.h
M	src/easytag.c
M	src/et_core.c
M	src/flac_tag.c
M	src/id3_tag.c
M	src/log.c
M	src/misc.c
M	src/misc.h
M	src/mpeg_header.c
M	src/ogg_header.c
M	src/picture.c
M	src/scan.c

commit cfd83d4f13a70777d5bf993f9580fbc130ab811a
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 12 17:13:49 2013 +0000

    Avoid multi-byte sequences that are not UTF-8

    Replace multi-byte sequences in string literals with octal escape
    sequences. Convert apetaglib.c from ISO-8859-2 to UTF-8.

M	src/id3_tag.c
M	src/libapetag/apetaglib.c

commit 5697d5e8278498ed490a7eab7791d2bb1fc29041
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 15 21:33:21 2013 +0000

    Use #ifdef to check for defines, not #if

M	src/charset.c

commit b1f991cef58ab89fd85a36b52a69dd1ce6abe00a
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sat Jan 12 18:36:31 2013 +0100

    Updated Polish translation

M	po/pl.po

commit cc896641ccf039650548c7992031c93c31f798b7
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 12 14:24:42 2013 +0000

    Check that a ETFileInfo is valid before freeing

    Avoids a critical warning when saving a file.

M	src/et_core.c

commit 5ea1d760d1a62fd378e905759d698034746c7cd2
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 12 09:18:44 2013 +0000

    Update copyright year in about dialog

M	src/about.c

commit 50b56f369fd4dd78df1981b61bf4ce5c66fb6b17
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 12 09:16:20 2013 +0000

    Add Andreas Winkelmann to AUTHORS

M	AUTHORS
M	src/about.c

commit ff7ad308e461350d029f5947b554c6fa498afc7a
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Sat Jan 12 08:39:33 2013 +0000

    Remove unused Id3tag_find_and_create_txxframe()

M	src/id3v24_tag.c

commit 7b78806e2adee1c4ff500005adde6b481235c8d9
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 12 08:36:36 2013 +0000

    Fix const usage for id3_tag structure parameters

    The structs are passed to id3_tag_render(), which accepts a const
    pointer to a non-const id3_tag.

M	src/id3v24_tag.c

commit 071aed6670416deb4b16cfd30e0c8d02c5f66a0c
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Sat Jan 12 07:41:32 2013 +0000

    Remove some unused prototypes

M	src/browser.c
M	src/easytag.c

commit b662e933833cb53c477a6258e442f3b856e95a26
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Sat Jan 12 07:36:09 2013 +0000

    Surround Browser_Win32_Get_Drive_Root with ifdef

    Only enable the win32-specific function if G_OS_WIN32 is defined.

M	src/browser.c

commit 4255c0af75fde90ce96306e50bf260f490da1dc7
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 11 22:19:28 2013 +0000

    Use G_OS_WIN32 to contain Windows code

    WIN32 was used previously, but was no longer set by the configure
    script.

M	src/bar.c
M	src/browser.c
M	src/cddb.c
M	src/charset.c
M	src/easytag.c
M	src/et_core.c
M	src/id3v24_tag.c
M	src/log.c
M	src/misc.c
M	src/ogg_tag.c
M	src/picture.c
M	src/prefs.c
M	src/setting.c
M	src/ui_manager.h

commit 50b8b041a12b63ddb0b89105a93ffded8d30b987
Author: David King <amigadave@amigadave.com>
Date:	Thu Dec 6 18:37:59 2012 +0000

    Use g_return_if_fail() and g_return_val_if_fail()

M	src/bar.c
M	src/browser.c
M	src/cddb.c
M	src/charset.c
M	src/easytag.c
M	src/et_core.c
M	src/et_core.h
M	src/log.c
M	src/misc.c
M	src/picture.c
M	src/prefs.c
M	src/scan.c

commit 2eb3192dfabf644c458b0f698446e4c3ffbb2fb9
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 5 22:09:27 2012 +0000

    Add static to many declarations

    Use the Samba findstatic.pl script to find functions which should be
    static, and mark them as such. Remove unused code, as the compiler
    gives
    warnings about unused static functions.

M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/browser.h
M	src/cddb.c
M	src/charset.c
M	src/charset.h
M	src/dlm.c
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/et_core.h
M	src/log.c
M	src/misc.c
M	src/misc.h
M	src/ogg_tag.c
M	src/picture.c
M	src/prefs.c
M	src/scan.c
M	src/scan.h
M	src/setting.c
M	src/setting.h
M	src/vcedit.c
M	src/vcedit.h

commit 68a3f7bf4b1ef0104a7472510fce6286d7e513ba
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 5 22:08:46 2012 +0000

    Use g_file_new_tmp() for creating temporary file

    Add a requirement on GIO 2.32 in configure.ac.

M	configure.ac
M	src/id3_tag.c

commit 4d13757d39ae88f87398c06b0cfa8f1644ce9e10
Author: David King <amigadave@amigadave.com>
Date:	Wed Dec 5 10:11:18 2012 +0000

    Fix an uninitialised variable warning

M	src/cddb.c

commit 2703a34627e43b55fec0b923cf78ba5d76a028a9
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 4 22:46:32 2012 +0000

    Use gboolean for returning TRUE and FALSE

M	src/prefs.c
M	src/vcedit.c

commit 19a30c0b37c86f992aecd828da4511fe6b112d09
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 4 22:32:18 2012 +0000

    Fix missing prototype warnings

    Additionally, make the missing prototypes warning an error in the list
    of compiler warnings in configure.ac.

M	Makefile.am
M	configure.ac
M	src/browser.c
M	src/cddb.c
M	src/crc32.c
M	src/crc32.h
M	src/dlm.c
M	src/easytag.c
M	src/et_core.c
M	src/flac_header.c
M	src/id3_tag.c
M	src/libapetag/info_mpc.c
D	src/libmpg123/getbits.c
M	src/libmpg123/layer1.c
M	src/libmpg123/layer2.c
M	src/misc.c
M	src/prefs.c
M	src/setting.c

commit b2ea3254ba7edc699294675f5127b219508926d7
Author: David King <amigadave@amigadave.com>
Date:	Mon Dec 3 22:10:40 2012 +0000

    Use icons from the icon naming specification

    Try to use freedesktop.org Icon Naming Specification names for
    icons in
    preference to those that EasyTAG installs by default.

D	pixmaps/scan.xpm
M	src/bar.c
M	src/scan.c

commit d2d6dac866d8f7b44b7f903562fab89826459ac4
Author: David King <amigadave@amigadave.com>
Date:	Mon Dec 3 18:51:19 2012 +0000

    Use stock GTK+ icons in a few more places

    Partially fixes bug 689418.

M	Makefile.am
D	pixmaps/select_all.xpm
M	src/bar.c
M	src/misc.c

commit 0155bc66f7ee365f8824b485f3ec312079ebba7e
Author: David King <amigadave@amigadave.com>
Date:	Sat Jan 12 08:45:23 2013 +0000

    Remove further unused and set-but-unused variables

M	src/cddb.c
M	src/easytag.c
M	src/mpeg_header.c

commit cd7bf25e8236f61e3f17fc685c407b460b80b94a
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Sat Jan 12 07:54:50 2013 +0000

    Fix some more set-but-unused warnings

M	src/cddb.c
M	src/easytag.c
M	src/ogg_header.c
M	src/ogg_tag.c

commit 550e49530cca0331ca97ed169f50d813e0377e49
Author: David King <amigadave@amigadave.com>
Date:	Sat Dec 8 12:34:12 2012 +0000

    Avoid use of AC_CYGWIN and AC_MINGW32

    Use AC_CANONICAL_HOST and AS_CASE instead.

M	configure.ac

commit 0a9d538e438361f835f9d6fc6a57f9412616b00f
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 11 21:35:37 2013 +0000

    Set parent window of about dialog to main window

M	src/about.c

commit ec68e6b331ec7d8107723293105fff632c41445c
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 11 16:48:55 2013 +0000

    Use TRUE and FALSE for Main_Stop_Button_Pressed

    Main_Stop_Button_Pressed is defined as a gboolean, so use it as such.

M	src/easytag.c

commit a9eb8c8c03114c4a2b18a3a2b80765c39c20c0c0
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 11 16:40:52 2013 +0000

    Return a value where it is required to do so

M	src/charset.c

commit 155891df0bc9a05bbdf9b454bb4b37322d5355ce
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 11 16:40:16 2013 +0000

    Remove some unused-but-set variables

M	src/easytag.c

commit 0b1ce79e772ca43651040dc8b1122463839428ac
Author: David King <amigadave@amigadave.com>
Date:	Fri Jan 11 16:36:23 2013 +0000

    Show the rename and save confirmation checkbutton

    The check buttons were added to the message area of the
    GtkMessageDialog
    but they were not shown.

M	src/easytag.c

commit 1669995d15a2af5ff342467711d2520f52fd68b0
Author: Milagros Infante Montero <maim92@gmail.com>
Date:	Thu Jan 10 10:59:44 2013 +0100

    Updated Spanish translation

M	po/es.po

commit 2a3e46c0e31cb0155321a04c6d5185e5f4820952
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Wed Jan 9 21:15:03 2013 +0100

    Updated Polish translation

M	po/pl.po

commit c7d51190c4bcd840847bed0eeb852b0d337593c9
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Tue Jan 8 19:44:01 2013 +0100

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit b2164765e83901526d0dd1faad6b46482a9edae2
Author: David King <amigadave@amigadave.com>
Date:	Tue Jan 8 07:21:06 2013 +0000

    Fix overlaid text in scanner legend

    https://mail.gnome.org/archives/easytag-list/2013-January/msg00008.html

M	src/scan.c

commit 769bd3f460ca8481ee749f0d1ddff12381b80909
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Sat Jan 5 20:19:24 2013 +0100

    Add "Write genre to text" setting to config file

    https://mail.gnome.org/archives/easytag-list/2013-January/msg00003.html

M	src/setting.c

commit 434a1cbe5bb6cce6a58d7c2964dc172448bb8d09
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Tue Dec 25 02:28:00 2012 +0100

    Add "Remove all text" to tag field context menu

M	src/easytag.c

commit 138376897831fd20b15e760a3a695889af20907d
Author: Andreas Winkelmann <ml@awinkelmann.de>
Date:	Mon Dec 24 01:56:20 2012 +0100

    Add column for disc number to browser list

M	src/browser.c
M	src/browser.h

commit 6e83cbcbc52144d9e38f62feecb65718dec30288
Author: Milagros Infante Montero <maim92@gmail.com>
Date:	Sat Jan 5 11:05:59 2013 +0100

    Updated Spanish translation

M	po/es.po

commit 4afb94fa4c80e99e650230b422d4dd6ccabdd66a
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Fri Jan 4 22:13:04 2013 +0100

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit 35a7629a304dc4225f0d6522db64930404a0de47
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Mon Dec 31 12:17:20 2012 +0100

    Updated Spanish translation

M	po/es.po

commit 783a2b1fe03dad2efca24262e4d232fcdc65121e
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Dec 30 21:50:01 2012 +0100

    Updated Polish translation

M	po/pl.po

commit 36a3866d683fac5b0077fcd4abbcdc85c0c42c07
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Dec 30 21:44:59 2012 +0100

    Fix typos in translatable strings

M	src/ape_tag.c
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/et_core.c
M	src/flac_header.c
M	src/flac_tag.c
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/misc.c
M	src/mp4_header.c
M	src/mp4_tag.c
M	src/mpeg_header.c
M	src/ogg_header.c
M	src/ogg_tag.c
M	src/picture.c
M	src/prefs.c
M	src/scan.c
M	src/setting.c
M	src/vcedit.c
M	src/win32/win32dep.c

commit 581af97294c481f7f4cacd5aeaa048f06a01771c
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Sun Dec 30 19:58:37 2012 +0100

    Fixed another typo

M	src/prefs.c

commit 9a9339f27f19f6b81b580a8aa89c9df0432643e1
Author: Milagros Infante Montero <maim92@gmail.com>
Date:	Sun Dec 30 19:57:17 2012 +0100

    Updated Spanish translation

M	po/es.po

commit 62922726e4b4c32bbe253ebcdd225e9c32202694
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Dec 30 19:52:09 2012 +0100

    Updated Polish translation

M	po/pl.po

commit 9e4938474447a296c7f7efdbf6e3a3893df9e5b3
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Sun Dec 30 19:48:16 2012 +0100

    Fixed typos in strings

M	src/picture.c
M	src/prefs.c

commit c853330bb391da8c297247124ded4e037c28f1f5
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Dec 9 23:49:42 2012 +0100

    Updated Polish translation

M	po/pl.po

commit ae6d217725ecbf1f7f50356c87d2b0760c1238d4
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:	Sun Dec 9 14:10:54 2012 +0100

    Added Serbian translation

M	po/LINGUAS
M	po/sr.po
A	po/sr@latin.po

commit 2bc0a756028981c3e03e7510f6bdc987e87fc35b
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Fri Dec 7 12:24:04 2012 +0100

    Updated Spanish translation

M	po/es.po

commit 82f83e86fac3ef2f34ea1bb10b9f239a63235cc1
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Wed Dec 5 20:06:09 2012 +0100

    Updated Spanish translation

M	po/es.po

commit b7f3e9e22bf1f85e0a10440bb0aad0e23f31940c
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Wed Dec 5 10:24:12 2012 +0100

    Updated Slovenian translation

M	po/sl.po

commit e35440eb37c3420b90304d9999e25c59679b2353
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:	Wed Dec 5 01:18:56 2012 +0100

    Updated Spanish translation

M	po/es.po

commit ad947dc91150f390ce95a8f17ce433008ed3ed01
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 4 18:19:44 2012 +0000

    Fix configure summary for id3lib

M	configure.ac

commit 332c82d82adbfd8f30d79b5de69ebe86ff33f210
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 4 18:12:11 2012 +0000

    Minor updates to manpage

    Also, add generated manpage to DISTCLEANFILES.

M	Makefile.am
M	doc/easytag.1.in

commit 0731c27a33526d6589a1fe16f1adcbe66385ba58
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 4 18:07:51 2012 +0000

    Use themed icon for main window icon

M	Makefile.am
D	pixmaps/EasyTAG_icon.xpm
M	src/easytag.c

commit 4a88445aba5345e77d333c59255e5a0b5a732d47
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 4 18:00:49 2012 +0000

    Remove some crufty defines

M	src/cddb.c
M	src/easytag.c
M	src/easytag.h

commit ade83fbeedaadba1246657e4ec5bbbe0ca4fccb8
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 4 17:31:49 2012 +0000

    Distribute and install more documentation

    Distribute and install the HACKING, TODO and USERS-GUIDE files.

M	Makefile.am

commit 073229520fc5bc90c001b2d612d3c97d4d583f43
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 4 17:24:45 2012 +0000

    Update README

    Add new mailing list and homepage. Use UTF-8. Remove old information
    about RPMs.

M	README

commit ff9516c8c7be67e5674f85a94d9e6f90b24c9717
Author: David King <amigadave@amigadave.com>
Date:	Tue Dec 4 17:07:22 2012 +0000

    Update HACKING with new coding style

    Additionally, include mailing list address and Bugzilla location.

M	HACKING

commit 2beef8aaf76fcfb7e341b8d4de94c8be0febdc93
Author: David King <amigadave@amigadave.com>
Date:	Mon Dec 3 18:26:45 2012 +0000

    Use sigaction() rather than signal()

    Use of signal() is discouraged, as some really old systems have signal
    handlers which return int, not void.

M	src/easytag.c

commit e84f769cc57d3f33b163ec17107a84c967a98baa
Author: Alessio Ababilov <ilovegnulinux@gmail.com>
Date:	Sun Dec 2 13:30:28 2012 +0200

    Handle SIGCHLD to avoid problems in child process

    If child process inherits SIG_IGN behavior, it will not be able
    to check
    exits statuses of its own children.

    This patch allows Audacious archived skins to work properly.

M	src/easytag.c

commit 7fdb64be0d4101324eb11c6ac468724a4ac001ff
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Dec 2 21:39:43 2012 +0100

    Stop screaming at users, bug 689498

    What did they do wrong so we must be so rude to them? :)

M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/et_core.c
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/misc.c
M	src/prefs.c
M	src/scan.c

commit 84193c78c761a442badd80e3f0067bc90bac1073
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 2 21:38:43 2012 +0000

    Migrate old configuration data to new location

M	src/setting.c

commit 856b4553904c59e564d5795903095098fad643db
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 2 19:39:47 2012 +0000

    Use XDG directories for configuration and cache

    Fixes bug 689419.

M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/easytag.h
M	src/id3_tag.c
M	src/log.c
M	src/setting.c

commit ffd3358a3f3035377d0c52d7c5783378cd9dd5a9
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Dec 2 23:16:38 2012 +0100

    Fix a typo

M	src/id3_tag.c

commit 1c36faf1856451f641d0455c20d9aab0c9d59a32
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 2 09:20:56 2012 +0000

    Minor string improvements

    Use sentence capitalisation for tooltips and header capitalisation for
    menu items. Only use an ellipsis when the action required further user
    interaction, as per the GNOME HIG:

    http://developer.gnome.org/hig-book/3.7/design-text-labels.html.en#layout-capitalization
    http://developer.gnome.org/hig-book/3.7/menus-design.html.en#menu-item-type-command

M	src/bar.c
M	src/misc.c

commit 63dfdcbcf784ea26ef6e67bb7b2da4088999b9e9
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:	Sun Dec 2 05:46:20 2012 +0100

    Fix build errors in po files

M	po/da.po
M	po/ja.po
M	po/ro.po

commit 1bc01d3528f38de16442df65abd5a282612ffab4
Author: David King <amigadave@amigadave.com>
Date:	Sun Dec 2 00:13:52 2012 +0000

    Improve many translatable strings, bug 689416

    Fix a large number of translatable strings, and plug a few memory
    leaks
    in the process.

M	src/bar.c
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/et_core.c
M	src/misc.c
M	src/prefs.c
M	src/scan.c
M	src/vcedit.c

commit 4737dfea60fd79e10e8bd4cba44bcbce7c351931
Author: David King <amigadave@amigadave.com>
Date:	Sat Dec 1 22:06:34 2012 +0000

    Replace about dialog with GtkAboutDialog

    Fix translatable strings in about dialog by replacing the dialog
    with a
    stock GtkAboutDialog and updating the source strings. Distribute a PNG
    icon and install it to the hicolor themed icon path.

M	AUTHORS
M	Makefile.am
C054	AUTHORS THANKS
M	configure.ac
M	easytag.desktop.in
A	pixmaps/easytag.png
M	src/about.c

commit c4d9b697e6d810f3c28468fdd47f5096d892d349
Author: David King <amigadave@amigadave.com>
Date:	Sat Dec 1 21:16:11 2012 +0000

    Update easytag.doap

    Add GNOME Bugzilla, GNOME mailing list and projects.gnome.org website.

M	easytag.doap

commit e57390f2fb44395ae981c4342737ca4cfc37149a
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Sat Dec 1 09:20:31 2012 +0100

    Added sl for Slovenian translation

M	po/LINGUAS

commit 987fb131b9a98a181c75926a7ebabce8c3a57034
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	Sat Dec 1 08:27:38 2012 +0100

    Added Slovenian translation

A	po/sl.po

commit 518168c0ec81e58aaa9bd1d808b0613bc35c6e4a
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 30 10:03:54 2012 +0000

    Remove easytag.pot from git

    GNOME translators do not need the template.

M	.gitignore
D	po/easytag.pot

commit 5f11d910e8d519b5c9ee0fa0abfa8cc7e0be1b78
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 30 09:10:34 2012 +0000

    Do not split description in DOAP file

    Otherwise, the git.gnome.org web interface skips the text after the
    newline.

M	easytag.doap

commit b254229ae8e2d8496e1feddd6ca2347808335303
Author: David King <amigadave@amigadave.com>
Date:	Fri Nov 30 09:06:48 2012 +0000

    Add easytag.doap

A	easytag.doap

commit 53292a6c8af0884553b986873496b3c950b4fbb2
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 29 07:52:06 2012 +0000

    Avoid triggering two GtkSpinButton warnings

    Setting a GtkAdjustment with a page size on a GtkSpinButton is
    deprecated. Instead, construct the GtkSpinButton with a range. This
    also
    avoids leaking a GtkSpinButton.

M	src/prefs.c

commit 35c7b2f6b8093c81c557115d25d1119070ec8ba4
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 29 07:45:46 2012 +0000

    Merge desktop file translations into .po files

    Remove the old Comment fields, as they no longer match the current
    comment in the desktop file.

M	easytag.desktop.in
M	po/de.po
M	po/fr.po
M	po/it.po

commit 557f5db51e3cecc10d15360410a32abc3c79f0a6
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 29 07:42:05 2012 +0000

    Update NEWS file

M	NEWS

commit 269e43d4c40d0173818e800af558b33593502ed3
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 29 07:34:31 2012 +0000

    Remove Changes tab in about dialog

    Showing the ChangeLog in the UI is not particularly useful, and
    does not
    work in several distributions, such as Ubuntu and Debian:

    https://github.com/stsquad/easytag/issues/16

M	src/about.c

commit f82eaef13b6d73e45ab3ce826f5982ecb1509d46
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 29 07:29:06 2012 +0000

    Improve pkg-config checks further

    Use PKG_CONFIG_EXISTS when checking for the presence of libraries, and
    only use PKG_CHECK_MODULES when populating the CFLAGS and LIBS
    variables
    near the end of the configure process.

M	configure.ac

commit 39bb576804a204f06e2abbc7f598f15dd81ee1e5
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 29 07:16:22 2012 +0000

    Generate ChangeLog during make dist

    Move the ChangeLog to NEWS and generate the ChangeLog during
    "make dist"
    from the git log. Move THANKS to AUTHORS as that is the filename that
    automake expects for a non-foreign project.

M	.gitignore
R100	THANKS	AUTHORS
M	ChangeLog
M	Makefile.am
C100	ChangeLog	NEWS
M	configure.ac

commit 2abaf8a4c77f128e3026830162c53a2e2735edff
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 29 07:13:52 2012 +0000

    Update THANKS and about dialog thanks list

M	THANKS
M	src/about.c

commit 84f33f02d58a1888020b57e436ea1afe730cbb66
Author: David King <amigadave@amigadave.com>
Date:	Thu Nov 29 06:47:13 2012 +0000

    Improve album artist entry focus chain order

    As reported by Julian Orth <ju.orth@gmail.com>, the album artist entry
    was not in the focus chain after the album entry, which is where it
    should logically be if looking at the user interface. Reorder
    the focus
    chain so that the order matches the interface layout.

    Additionally, use g_list_prepend() to add new focus chain widgets
    at the
    start of the list, and then reverse the list before setting the
    chain on
    the parent container, as this is more efficient.

M	src/easytag.c

commit 64a3e30d963fb34407984fb73444318bfce44be6
Author: David King <amigadave@amigadave.com>
Date:	Wed Nov 28 22:40:59 2012 +0000

    Check for pkg-config libraries only once

    This is more better than manually concatenating the _LIBS variables,
    as
    pkg-config can adjust the linker command line so that the ordering is
    correct.

M	Makefile.am
M	configure.ac

commit 186439606a8459febb31fdd3631b0ea6a911eb74
Author: David King <amigadave@amigadave.com>
Date:	Wed Nov 28 19:33:16 2012 +0000

    Drop use of libmp4v2, use taglib instead

    The MPL 1.1 license used by libmp4v2 is incompatible with the GPL
    2 used
    by EasyTAG. TagLib has dual MPL and LGPL licenses and is fine to link
    with, so use it instead. Only basic tagging data is supported by the
    TagLib C API.

    Based on a patch written by Maia Kozheva <sikon@ubuntu.com> and
    reported
    at https://github.com/stsquad/easytag/issues/13.

M	Makefile.am
M	README
M	configure.ac
M	src/easytag.c
M	src/mp4_header.c
M	src/mp4_tag.c

commit dad1bcfd68bbecce8f803553136d91bc4ad32b34
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 17:07:58 2012 +0000

    Update .po and .pot files

M	po/bg.po
M	po/cs.po
M	po/da.po
M	po/de.po
M	po/easytag.pot
M	po/el.po
M	po/es.po
M	po/fr.po
M	po/he.po
M	po/hu.po
M	po/it.po
M	po/ja.po
M	po/lt.po
M	po/nl.po
M	po/pl.po
M	po/pt_BR.po
M	po/ro.po
M	po/ru.po
M	po/sr.po
M	po/sr@Latn.po
M	po/sv.po
M	po/uk.po
M	po/zh_CN.po
M	po/zh_TW.po

commit a00d0e54f3e9113e0fe558124c11172288f24ab0
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 21:32:24 2012 +0000

    Add a --with-gtk3 configure argument

    Note that the GTK+ 3 port is experimental, and default to GTK+
    2. Force
    GTK+ 3 to be enabled if and only if GTK+ 2 was not found, GTK+ 3 was
    found and GTK+ 3 support was not explicitly requested.

M	README
M	configure.ac

commit 0d08331d981ade0ae6e794cca86bda9bb73b26ae
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 21:00:32 2012 +0000

    Do not fetch adjustments from GtkTreeView

    Use gtk_scrollable_get_vadjustment() instead. Add a compatibility
    wrapper so that it still compiles with GTK+ 2.

M	src/gtk2_compat.h
M	src/misc.c

commit 36620c2a084c3092353b23982a535b5d81857186
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 20:56:35 2012 +0000

    Avoid gtk_hseparator_new() and gtk_vseparator_new()

    Use gtk_separator_new(GTK_ORIENTATION_*) instead. Add a caompatibility
    wrapper so that it still compiles with GTK+ 2.

M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/gtk2_compat.c
M	src/gtk2_compat.h
M	src/misc.c
M	src/prefs.c
M	src/scan.c

commit 9aea6c6b236d5dcf5f013cc451a3acfa67306d5f
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 20:50:26 2012 +0000

    Avoid using gtk_hpaned_new() and gtk_vpaned_new()

    Use gtk_paned_new(GTK_ORIENTATION_*) instead. Add a compatibility
    wrapper so that it still compiles with GTK+ 2.

M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/gtk2_compat.c
M	src/gtk2_compat.h
M	src/misc.c

commit 13bb9383f18b0aaac0da12ea06a0e38c7d1f10db
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 20:45:00 2012 +0000

    Avoid using gtk_hbutton_box_new()

    Use gtk_button_box_new(GTK_ORIENTATION_HORIZONTAL) instead. Add a
    compatibility wrapper so that it still compiles with GTK+ 2.

M	src/browser.c
M	src/gtk2_compat.c
M	src/gtk2_compat.h
M	src/misc.c
M	src/prefs.c

commit d48695cc181850bfeffee4f7aacdc7e02d329e4b
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 20:38:42 2012 +0000

    Do not use gtk_vbox_new() nor gtk_hbox_new()

    Use the GTK+ 3 gtk_box_new(GTK_ORIENTATION_*) instead, and add a
    compatibility wrapper so that it still compiles with GTK+ 2.

M	Makefile.am
M	src/about.c
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
A	src/gtk2_compat.c
A	src/gtk2_compat.h
M	src/misc.c
M	src/prefs.c
M	src/scan.c

commit 2f5b9a748e6f591b6902958f692b2e4ac8e53d94
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 19:50:39 2012 +0000

    Use ellipsis rather than consecutive full stops

M	src/about.c
M	src/bar.c
M	src/browser.c
M	src/cddb.c
M	src/charset.c
M	src/easytag.c
M	src/id3_tag.c
M	src/misc.c
M	src/picture.c
M	src/prefs.c
M	src/scan.c
M	src/setting.c
M	src/vcedit.c

commit 12ba561584a75f9a68da76c14893a96c8dbefe30
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 18:39:05 2012 +0000

    Avoid use of gdk_window_move()

    Use gtk_window_move() on the GtkWindow instead.

M	src/easytag.c
M	src/misc.c
M	src/scan.c

commit 44d0e201295a9f9b59815ca00dff932a55849515
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 18:36:14 2012 +0000

    Fix a pointer case warning

M	src/misc.c

commit 63da08a50dc17f18af66f75df11acb5fe03a40ad
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 18:26:23 2012 +0000

    Avoid use of GtkObject

    GtkObject does not exist in GTK+ 3, and for all cases in EasyTAG a
    GtkWidget should be used instead.

M	TODO
M	src/browser.c
M	src/cddb.c
M	src/misc.c
M	src/misc.h
M	src/prefs.c
M	src/scan.c
M	src/scan.h

commit b948bf816ce8d53909877421dc18699a20c09c07
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 17:08:13 2012 +0000

    Many typo and spelling fixes

    Fixes https://github.com/stsquad/easytag/issues/14 and
    http://sourceforge.net/tracker/?func=detail&aid=3560431&group_id=5216&atid=105216
    at least.

M	README
M	README_win32.txt
M	debian/control
M	easytag.spec.in
M	src/about.c
M	src/browser.c
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/genres.h
M	src/id3_tag.c
M	src/misc.c
M	src/ogg_header.c
M	src/ogg_tag.c
M	src/prefs.c
M	src/scan.c

commit 3f096d9b1ac68dabf77e9483fbe1805c15b57078
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 17:08:09 2012 +0000

    Tidy desktop file

    Remove full stops at end of comments. Change StartupNotify to true.

    Based on a similar patch by Andrea Carpineti <carpineti.dev@gmail.com>
    and Maia Kozheva <sikon@ubuntu.com> found at
    https://github.com/stsquad/easytag/issues/15 and included in the
    Debian
    and Ubuntu packages.

M	easytag.desktop.in

commit 469b7f3288b367e9e24797b179ec2af041a6e805
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 17:08:02 2012 +0000

    Apply strict compiler warning flags

    Check that the compiler accepts the warnings flags and include them in
    the configure summary.

M	Makefile.am
M	configure.ac

commit d0b3ce0b2836c07d9785995a7a0609688fffb6e1
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 17:07:49 2012 +0000

    Remove MsgBox and use GtkMessageDialog instead

M	Makefile.am
M	po/POTFILES.in
M	src/about.c
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/et_core.c
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/misc.c
D	src/msgbox.c
D	src/msgbox.h
M	src/picture.c
M	src/prefs.c
M	src/scan.c

commit efaecc4a98389564e5cece41039e56dacf628cef
Author: David King <amigadave@amigadave.com>
Date:	Tue Nov 27 17:07:40 2012 +0000

    Improve some C-style casts

    Do not cast away const. Use the GObject-style casts in preference to
    C-style casts.

M	src/about.c
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/et_core.c
M	src/misc.c
M	src/picture.c
M	src/prefs.c
M	src/scan.c

commit cc7bc2f80858fa102db366e2923666d4082c0324
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 23:07:57 2012 +0000

    Fix a sign comparison warning

M	src/misc.c

commit 0b6375a0d5eefc1d2ed1f75cb311524ede5c6d28
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 23:07:32 2012 +0000

    Remove some unused prototypes

M	src/browser.h
M	src/scan.c

commit 77b8b474e74c00d7bbea441f326162b7f55625f2
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 22:40:09 2012 +0000

    Fix several const-correctness mistakes with strings

M	src/misc.c
M	src/misc.h
M	src/prefs.c
M	src/setting.c

commit 359d215178c88aa5c218929eadd80f7f4e854793
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 22:04:07 2012 +0000

    Update TODO

M	TODO

commit 07e58d5affeceeb77cb09ce9914c90fccd1fb7ef
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 19:05:47 2012 +0000

    Translate easytag.desktop with intltool

M	.gitignore
M	Makefile.am
R095	easytag.desktop easytag.desktop.in
M	po/POTFILES.in
M	po/bg.po
M	po/cs.po
M	po/da.po
M	po/de.po
M	po/easytag.pot
M	po/el.po
M	po/es.po
M	po/fr.po
M	po/he.po
M	po/hu.po
M	po/it.po
M	po/ja.po
M	po/lt.po
M	po/nl.po
M	po/pl.po
M	po/pt_BR.po
M	po/ro.po
M	po/ru.po
M	po/sr.po
M	po/sr@Latn.po
M	po/sv.po
M	po/uk.po
M	po/zh_CN.po
M	po/zh_TW.po

commit 596e4245add098c4012d7d0fed8b55ba61570449
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 18:09:18 2012 +0000

    Update .po and .pot files

M	po/bg.po
M	po/cs.po
M	po/da.po
M	po/de.po
M	po/easytag.pot
M	po/el.po
M	po/es.po
M	po/fr.po
M	po/he.po
M	po/hu.po
M	po/it.po
M	po/ja.po
M	po/lt.po
M	po/nl.po
M	po/pl.po
M	po/pt_BR.po
M	po/ro.po
M	po/ru.po
M	po/sr.po
M	po/sr@Latn.po
M	po/sv.po
M	po/uk.po
M	po/zh_CN.po
M	po/zh_TW.po

commit ae36c27499cb5bf2a5075582088a1549bb861491
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 17:13:56 2012 +0000

    Apply strict deprecation defines in configure.ac

    Disable deprecated symbols for GTK+, GDK and GLib. Allow only single
    headers to be included for GTK+ and GLib.

M	configure.ac

commit 76235eb80c7d71fee857234ba8f807c0542d036c
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 17:09:21 2012 +0000

    Use new GDK_KEY_* defines

    This will ease porting to GTK+ 3, which does not include the current
    GDK_* defines for keys, but only the GDK_KEY_* defines.

M	src/about.c
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/misc.c
M	src/picture.c
M	src/prefs.c
M	src/scan.c

commit 846aba1ecbc5dadb05cc7f46d9be009d8b93c0e3
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 15:51:43 2012 +0000

    Do not access GtkSelectionData->data directly

    Use gtk_selection_data_get_data() instead.

M	src/picture.c

commit 14501bd382b977cd7096550b91af88e38e1b2b66
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 15:45:20 2012 +0000

    Do not access GtkAdjustment->value, upper and page_size

    Instead, use gtk_adjustment_get_value(), gtk_adjustment_get_upper()
    and
    gtk_adjustment_get_page_size().

M	src/misc.c

commit c329cc8ce0c21809b33cea3a431022d9928f401d
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 14:42:56 2012 +0000

    Do not access GtkPaned->child1_size directly

    Instead, use gtk_paned_get_position().

M	src/cddb.c
M	src/easytag.c

commit f9717ab27cba913ca3c0400c97f3741fa522fcb6
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 14:36:11 2012 +0000

    Do not access GtkToggleButton->active directly

    Instead, use gtk_toggle_button_get_active().

M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/misc.c
M	src/prefs.c
M	src/scan.c
M	src/setting.c

commit c3b71716d13e3375b9160e683330dbaf5d062c62
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 12:17:52 2012 +0000

    Do not access GtkBin->child directly

    Use gtk_bin_get_child() instead.

M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/et_core.c
M	src/misc.c
M	src/prefs.c
M	src/scan.c
M	src/setting.c

commit 58580165221d5bfce788d2ea155a33350da5bcd5
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 11:47:31 2012 +0000

    Do not access GtkCheckMenuItem->active directly

    Use gtk_check_menu_item_get_active() instead.

M	src/bar.c

commit ffc592b04ca2f043f240a13aa957b51b388c65a6
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 11:43:35 2012 +0000

    Do not access GtkDialog->vbox and action_area directly

    Use gtk_dialog_get_content_area() and gtk_dialog_get_action_area()
    instead.

M	src/about.c
M	src/msgbox.c
M	src/picture.c

commit 2d3ba92cf3c90d4cd79352c4c5066abb9b9fe6f3
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 11:41:56 2012 +0000

    Do not access GtkWidget->window directly

    Use gtk_widget_get_window() instead.

M	src/about.c
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/misc.c
M	src/prefs.c
M	src/scan.c

commit 0d70acffef5de5f4da4aa51102ac5250dd54388f
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 11:33:39 2012 +0000

    Do not use deprecated g_string_sprintf()

    Use g_string_printf() instead.

M	src/picture.c

commit 42b852bf4947154a25f8552c00b5ec40e0fba52b
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 11:25:29 2012 +0000

    Do not use deprecated gtk_widget_hide_all()

    Use gtk_widget_hide() instead.

M	src/scan.c
M	src/setting.c

commit 2e469aac859ff2250144bdda24c1fe9759879a50
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 11:25:10 2012 +0000

    Use new GtkEditable API

M	src/scan.c

commit e35dab24ff8ce4f3678aff513e9b7fb73a0e6c16
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 09:47:11 2012 +0000

    Avoid GTK_WIDGET_TOPLEVEL

    Use gtk_widget_is_toplevel() instead

M	src/misc.c
M	src/picture.c

commit 6ea62c318384e5ec7742688e17272a7c672f8a47
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 09:41:58 2012 +0000

    Avoid gtk_object_set_data()

    Use g_object_set_data() instead.

M	src/easytag.c

commit 1b8f5253e23ab8e5fcb16f37c3a3b8a0da41d19d
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 09:40:59 2012 +0000

    Avoid gtk_widget_set_usize()

    Use gtk_widget_set_size_request() instead.

M	src/easytag.c

commit 6d6f0e0bebfe1b4247a7d938c966fe02d39f4858
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 09:12:25 2012 +0000

    Avoid deprecated GtkNotebookPage

M	src/cddb.c

commit bc0d03adf7b002f507b0626c56d12cd4142e57f3
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 09:05:22 2012 +0000

    Avoid deprecated gdk_window_get_size()

M	src/cddb.c
M	src/easytag.c
M	src/misc.c
M	src/prefs.c

commit 5773b200219b7d95c076c2dd079f7bfdf678b182
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 09:03:24 2012 +0000

    Avoid deprecated gtk_container_set_border_width()

M	src/cddb.c

commit 622f8691ec2163618999b4598bfdd71b3cd44b7a
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 08:48:56 2012 +0000

    Avoid deprecated gtk_window_set_policy()

    Use gtk_window_set_resizable() instead.

M	src/browser.c

commit cfe2c8e6ec30d49cd99ba842cdd9fc2376f8c23f
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 08:45:02 2012 +0000

    Do not use deprecated GtkComboBoxText and Entry API

M	src/browser.c
M	src/cddb.c
M	src/charset.c
M	src/easytag.c
M	src/misc.c
M	src/prefs.c
M	src/scan.c

commit eb1ffde664bbbda4683fd9b5df4c8c11756657e1
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 08:36:48 2012 +0000

    Do not use deprecated GtkTooltips API

    Use gtk_widget_set_tooltip_text() instead

M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/misc.c
M	src/prefs.c
M	src/scan.c

commit 8bace17ec68dac66139d455e6a16ddb320fd56e6
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 08:31:01 2012 +0000

    Use GSourceFunc, not GtkFunction

M	src/bar.c
M	src/browser.c
M	src/easytag.c

commit 3e2f37a0be50b4be775477be49e12987e8e55a03
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 08:28:58 2012 +0000

    Avoid deprecated GTK_WIDGET_SET_FLAGS

M	src/about.c
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/misc.c
M	src/msgbox.c
M	src/prefs.c
M	src/scan.c

commit 4f517ccae156d8fb3853ef0855244eafb3d906dc
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 08:27:12 2012 +0000

    Avoid deprecated GdkPixmap functions

M	pixmaps/EasyTAG_icon.xpm
M	src/about.c
M	src/easytag.c

commit ef68719e6bd3a102290d433d2d59eb5329dd89a4
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 08:17:24 2012 +0000

    Fix GDK single include error

M	src/et_core.h

commit ae7dbfd44a353023d3744d822d32e8d84bcbc7f8
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 08:13:10 2012 +0000

    Fix return value of Flac_Set_Tag()

M	src/flac_tag.c

commit 8c501cc7dc125bf9ea79b88634401bff3f83821f
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 08:09:06 2012 +0000

    Fix a value compute warning

M	src/scan.c

commit 4689ef7252650f1f9fd0c582081f55ebef5bb515
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 08:06:36 2012 +0000

    Fix some unused variable warnings

M	src/browser.c

commit d9f68565d21c516d2505637e1e373699abf9f75e
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 07:55:38 2012 +0000

    Fix some const-correctness warnings

M	src/browser.c
M	src/browser.h
M	src/charset.c
M	src/easytag.c
M	src/easytag.h

commit 7149a65cc2d47019187661d3ee244df606ef8c7e
Author: David King <amigadave@amigadave.com>
Date:	Sun Nov 25 07:38:45 2012 +0000

    Do not depend on libtool

    EasyTAG provides no libraries, so using libtool is unnecessary.

M	configure.ac

commit 95b04760d64cefd9aaea2178c98c31da3a77390a
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 23:52:25 2012 +0000

    Update POTFILES.in

M	po/POTFILES.in

commit 98065d10b09bb27a2dee1e79f9b0eef0cee549a0
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 23:47:13 2012 +0000

    Port to use intltool for internationalization

M	.gitignore
M	Makefile.am
M	README
M	autogen.sh
M	configure.ac
A	po/LINGUAS
D	po/Makefile.in.in

commit dad3629c4e7aba00c24cf0ed1bc09299c9e7f837
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 23:31:52 2012 +0000

    Include HTML documentation in distribution

M	Makefile.am

commit 0fc4fc433f3691085c12bed01aee2f01e18fedce
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 23:30:09 2012 +0000

    Include top_srcdir in include search path

M	Makefile.am
M	src/browser.c
M	src/easytag.h

commit 3f6c44421813b360dd70d979c04c14412e15d26a
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 22:46:11 2012 +0000

    Convert src/libmpg123 to non-recursive build

M	Makefile.am
M	configure.ac
D	src/libmpg123/Makefile.am

commit 1ba85b9e6f3e394c32d04574ddc1f5d77844b39e
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 22:42:20 2012 +0000

    Convert src/libapetag directory to non-recursive build

M	Makefile.am
M	configure.ac
D	src/libapetag/Makefile.am

commit a76c77daa31d7a0830f5cca5c24543659d8c30ab
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 22:36:13 2012 +0000

    Convert src/id3lib directory to non-recursive build

M	Makefile.am
M	configure.ac
D	src/id3lib/Makefile.am

commit 7e97c83d4225d4e7ffe3a0326d9fc6a87cc8fcb0
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 22:31:41 2012 +0000

    Convert src subdirectory to non-recursive build

M	.gitignore
M	Makefile.am
M	configure.ac
D	src/Makefile.am

commit 06eaace2992a8a183610cc2a54d4216bd17ddc65
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 22:17:20 2012 +0000

    Fix a string cast warning

M	src/et_core.c

commit c8c47044311e9bd3d57bbd1b0d71c303ac1ee2a8
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 22:10:47 2012 +0000

    Replace gdk_object_unref() with g_object_unref()

    gdk_object_unref() is deprecated.

M	src/picture.c

commit 43550254627019a455b41374e842d44259d5976f
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 21:59:52 2012 +0000

    Tidy Makefile.am files

M	Makefile.am
M	src/Makefile.am
M	src/id3lib/Makefile.am
M	src/libapetag/Makefile.am

commit 0ba81c93ac0262462b0c66c91ab7c42acd8290e8
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 21:54:20 2012 +0000

    Remove some obsolete checks from configure.ac

M	configure.ac

commit 2a7c16882d3e9d86f96eec5bbc52d109c0013bbd
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 21:15:07 2012 +0000

    Fix id3lib and id3tag conditional check in configure.ac

M	configure.ac
M	src/Makefile.am

commit e1cbc24813b06c9ef567c43c196a8ff9c4dd92a5
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 18:54:46 2012 +0000

    Fix libmp4v2 conditional support in configure.ac

M	configure.ac
M	src/Makefile.am

commit e644d477b290dd26ede2964689efcd9c1613a712
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 16:34:35 2012 +0000

    Fix Wavpack optional support in configure.ac

M	configure.ac
M	src/Makefile.am

commit 54f474f294fd45c393f4183c7b3f3e5896e5bdeb
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 16:17:24 2012 +0000

    Enable silent automake rules

    THese can be disabled either with "make V=1" or at configure time with
    ./configure --disable-silent-rules.

M	configure.ac

commit f629f01c61bdb869823ca79f4bf02ee3d71374bf
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 16:15:21 2012 +0000

    Fix FLAC conditional support in configure.ac

M	configure.ac
M	src/Makefile.am
M	src/flac_header.c

commit 7fcca947068cf3989d06387cb4aaea3dccc6b492
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 16:05:37 2012 +0000

    Fix Speex conditional support in configure.ac

M	configure.ac
M	src/Makefile.am

commit 39ebeb193864fd81ca32b8fae1aa114c40218377
Author: David King <amigadave@amigadave.com>
Date:	Sat Nov 24 15:43:31 2012 +0000

    Initial porting to more recent autoconf syntax

    Move configure.in to configure.ac. Remove several generated or copied
    files. Move INSTALL content into README.

M	.gitignore
D	ABOUT-NLS
D	INSTALL
M	README
M	autogen.sh
D	config.guess
D	config.sub
R077	configure.in	configure.ac
D	depcomp
M	doc/easytag.1.in
D	install-sh
D	missing
D	mkinstalldirs
M	src/Makefile.am
M	src/about.c
M	src/cddb.c
M	src/easytag.c
M	src/id3lib/Makefile.am
M	src/id3lib/c_wrapper.cpp
M	src/libapetag/Makefile.am
M	src/libmpg123/Makefile.am

commit 446de64a62d401051818bf92d0bf5dd3aca974fc
Author: Kip Warner <kip@thevertigo.com>
Date:	Mon Sep 17 22:01:06 2012 -0700

    Updated Algimantas' Lithuanian translation...

M	configure.in
D	po/bg.gmo
D	po/cs.gmo
D	po/da.gmo
D	po/de.gmo
M	po/easytag.pot
D	po/el.gmo
D	po/es.gmo
D	po/fr.gmo
D	po/he.gmo
D	po/hu.gmo
D	po/it.gmo
D	po/ja.gmo
M	po/lt.po
D	po/nl.gmo
D	po/pl.gmo
D	po/pt_BR.gmo
D	po/ro.gmo
D	po/ru.gmo
D	po/sr.gmo
D	po/sr@Latn.gmo
D	po/sv.gmo
D	po/uk.gmo
D	po/zh_CN.gmo
D	po/zh_TW.gmo

commit 116d811fedf0ca47d35150064d7bddd156f49100
Author: Kip Warner <kip@thevertigo.com>
Date:	Mon Sep 17 17:02:55 2012 -0700

    Added Algimantas' Lithuanian translation...

M	ChangeLog
M	po/bg.po
M	po/cs.po
M	po/da.po
M	po/de.po
M	po/el.po
M	po/es.po
M	po/fr.po
M	po/he.po
M	po/hu.po
M	po/it.po
M	po/ja.po
A	po/lt.po
M	po/nl.po
M	po/pl.po
M	po/pt_BR.po
M	po/ro.po
M	po/ru.po
M	po/sr.po
M	po/sr@Latn.po
M	po/sv.po
M	po/uk.po
M	po/zh_CN.po
M	po/zh_TW.po
M	src/about.c

commit 0bdb71426af6fea70e646c2a54de6537d33a1d6f
Author: Kip Warner <kip@thevertigo.com>
Date:	Mon Jun 18 00:06:26 2012 -0700

    Honore Doktorr's revised mp4v2 patch...

M	ChangeLog
M	THANKS
M	configure.in
M	src/mp4_tag.c

commit 8b6d63610afc88e7a036dbaa2af36638c144ab2e
Author: Kip Warner <kip@thevertigo.com>
Date:	Sun Jun 3 17:46:34 2012 -0700

    Julian Taylor's fix out of bound array access

M	ChangeLog
M	THANKS
M	src/about.c
M	src/misc.c

commit 9aa7022b20c60f80192f4d7186fb6abf27cb21bb
Author: Kip Warner <kip@thevertigo.com>
Date:	Mon May 28 07:51:10 2012 -0700

    Wojciech Wierchola's file save performance improvement...

M	ChangeLog
M	THANKS
M	src/about.c
M	src/easytag.c

commit e6eb55235a706d54468260aa0b87bff30ca6a1cd
Author: Kip Warner <kip@thevertigo.com>
Date:	Thu May 24 16:53:50 2012 -0700

    Updated: about and debian changelog...

M	debian/changelog
M	src/about.c

commit d27ea5803130a25a46be7be98211d4993e671a86
Author: Kip Warner <kip@thevertigo.com>
Date:	Thu May 24 16:44:20 2012 -0700

    Updated: compile against newest version of libmp4v2

M	ChangeLog
M	THANKS
M	src/mp4_header.c
M	src/mp4_tag.c

commit 8201215286e1a627f5c7996411d3b661c776884f
Author: Kip Warner <kip@thevertigo.com>
Date:	Thu Mar 22 15:31:48 2012 -0700

    Updated Michał Smoczyk's Polish translation...
    Updated ChangeLog...

M	ChangeLog
M	po/pl.po

commit b36ac16f9e1e90df887cb9831728a7f2503eaf60
Author: Kip Warner <kip@thevertigo.com>
Date:	Wed Mar 21 16:22:13 2012 -0700

    Applied Chris's following two patches...
      0001-Desktop-file-cleanup.patch
      0002-Add-a-new-option-to-trim-spaces-when-renaming-files..patch

    Also some updated translations.

M	easytag.desktop
M	po/bg.gmo
M	po/bg.po
M	po/cs.gmo
M	po/cs.po
M	po/da.gmo
M	po/da.po
M	po/de.gmo
M	po/de.po
M	po/easytag.pot
M	po/el.gmo
M	po/el.po
M	po/es.gmo
M	po/es.po
M	po/fr.gmo
M	po/fr.po
M	po/he.gmo
M	po/he.po
M	po/hu.gmo
M	po/hu.po
M	po/it.gmo
M	po/it.po
M	po/ja.gmo
M	po/ja.po
M	po/nl.gmo
M	po/nl.po
M	po/pl.gmo
M	po/pl.po
M	po/pt_BR.gmo
M	po/pt_BR.po
M	po/ro.gmo
M	po/ro.po
M	po/ru.gmo
M	po/ru.po
M	po/sr.gmo
M	po/sr.po
M	po/sr@Latn.gmo
M	po/sr@Latn.po
M	po/sv.gmo
M	po/sv.po
M	po/uk.gmo
M	po/uk.po
M	po/zh_CN.gmo
M	po/zh_CN.po
M	po/zh_TW.gmo
M	po/zh_TW.po
M	src/misc.c
M	src/prefs.c
M	src/prefs.h
M	src/scan.c
M	src/scan.h
M	src/setting.c
M	src/setting.h

commit 2711ab2462b015947804c9584d63b03a0dcb371f
Merge: ad8c644 a296cb0
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Mar 14 10:33:47 2012 +0000

    Merge remote branch 'sf/master'

    This merges to the latest "master" on the sourceforge repo.
    I've fixed up the conflicts in FLAC and Ogg tagging due to the
    light re-factoring of the tag writing due to the split flags
    stuff.

commit ad8c6443236abca79d68bb035550583c02a6fcf4
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Mar 14 10:16:45 2012 +0000

    Add ALBUMARTIST tag support when writting Ogg Vorbis tags

M	src/ogg_tag.c

commit a296cb063b01c7beec8686382ce094927b4e47d9
Author: Kip Warner <kip@localhost.(none)>
Date:	Fri Mar 9 17:02:09 2012 -0800

	* WiseLord's fix-genre-tag.patch to fix predefined genres
	displayed under
	  legacy systems.

M	ChangeLog
M	src/id3v24_tag.c

commit 150422cbd0e21c2f7c38c2ca1d9c2060c21be8da
Author: Kip Warner <kip@localhost.(none)>
Date:	Fri Mar 9 12:09:10 2012 -0800

    * Leonid Podolny's easytag-2.1.6-from-txt.patch for segfault when
    pressing
	  "Apply" in "Load filenames from TXT" dialog

M	ChangeLog
M	src/misc.c

commit 4ff54ea67e9c6aa8d2340a9684a83c72911fa496
Merge: bd901a9 e4ba7c1
Author: Alex Bennee <alex@bennee.com>
Date:	Thu Feb 16 02:42:45 2012 -0800

    Merge pull request #20 from crater2150/master

    Toggle field splitting for vorbis comments

commit e4ba7c1a40a87015f73dc5a5630d543437030278
Author: crater2150 <me@crater2150.de>
Date:	Thu Feb 16 03:04:22 2012 +0100

    Let the user choose which fields to split

    Add a new Frame to the "Tag Settings" tab in the preferences, where
    the user can
    turn field splitting of for all fields, which were splitted
    previously.
    As this applies to vorbis comments in general, adapt everything for
    ogg files
    too.

M	src/flac_tag.c
M	src/ogg_tag.c
M	src/prefs.c
M	src/prefs.h
M	src/setting.c
M	src/setting.h

commit 68e8af5baaa5548c94f97ec92aaff22bb85f91b1
Author: crater2150 <me@crater2150.de>
Date:	Thu Feb 16 00:21:52 2012 +0100

    Use Flac_Write_Tag instead of duplicated code for undelimited tags.

    As the code for writing a tag without splitting was put into an own
    function, we
    do not need to have four identical lines of code for each tag written
    that way.

M	src/flac_tag.c

commit 81022a5ee1a368d37d7bbfde03a88ba3d3234e00
Author: crater2150 <me@crater2150.de>
Date:	Wed Feb 15 23:55:21 2012 +0100

    Splitting writing of a single flac tag out of delimitered tag writing.

    The flac tag splitting is not desirable for every field (e.g. a
    song title
    containing a dash is probably not meant as two titles). The splitting
    of the
    Flac_Write_Delimetered_Tag function makes it possible to write a
    tag without
    splitting it.

M	src/flac_tag.c

commit 4ea70010a665a5ef758949c0c84330c82f32ff76
Author: Kip Warner <kip@localhost.(none)>
Date:	Sun Jan 15 01:45:58 2012 -0800

    Forgot these files.

M	ChangeLog
M	configure.in
M	debian/changelog
D	easytag.spec
M	po/de.gmo
M	src/about.c
M	src/easytag.h

commit 665a27b3b01ce46286cb1adea0dcf792cd9d18b0
Author: Kip Warner <kip@localhost.(none)>
Date:	Sun Jan 15 01:29:05 2012 -0800

    Updated to 2.1.7

A	debian/changelog
A	debian/compat
A	debian/control
A	debian/copyright
A	debian/easytag.xpm
A	debian/install
A	debian/menu
A	debian/rules
A	debian/watch

commit 49becc21fce87e49473687c0a08c0c92fefb575d
Author: Gaute Amundsen <taggant@div.org>
Date:	Fri Jan 13 22:21:22 2012 +0100

    Make optional the confirmation dialog when there are unsaved files
    when changing directory or exiting.

    Signed-off-by: Kip Warner <kip@localhost.(none)>

M	src/browser.c
M	src/easytag.c
M	src/prefs.c
M	src/prefs.h
M	src/setting.c
M	src/setting.h

commit bce4a885b4d38c76394cd8b7eb648437320300f8
Author: Mark Ferry <mark@markferry.net>
Date:	Thu Dec 1 01:59:36 2011 +0000

    Add ALBUMARTIST support for ogg files

M	src/ogg_tag.c

commit aa832ab4ce9e41d84e7747d079d0438b75c7aced
Author: Mark Ferry <mark@markferry.net>
Date:	Thu Dec 1 01:51:07 2011 +0000

    Add ALBUMARTIST support for flac files

M	src/flac_tag.c

commit e512812886250bc49ed7fdca8eaa2c5764c17e4b
Author: Kip Warner <kip@localhost.(none)>
Date:	Mon Nov 7 19:09:24 2011 -0800

    Updated German translation. Thanks Götz Waschk
    <goetz.waschk@gmail.com>.

M	po/de.po

commit bd901a94b4e8d0c2a2ff24a92f557327da5aa876
Merge: 90d2930 d600ff1
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Jul 27 05:26:25 2011 -0700

    Merge pull request #18 from bbarenblat/master

    FLAC: Fix segfault when setting picture description to ""

commit d600ff1f154a9dff61badd86127d0c7ab5dd9a8a
Author: Benjamin Barenblat <benjamin@barenblat.name>
Date:	Tue Jul 26 19:37:05 2011 -0400

    flac_tag: fix segfault when setting picture description to ""

    Flac_Tag_Write_File_Tag now checks to make sure the picture
    description string is non-null before attempting to set it.  (Passing
    a null pointer to FLAC__metadata_object_picture_set_description
    violates that function's contract; see
    http://flac.sourceforge.net/api/group__flac__metadata__object.html#ga43).
    This brings Flac_Tag_Write_File_Tag's behavior in line with that of
    the analogous functions for Ogg and ID3 tags.

M	src/flac_tag.c

commit 90d2930aacda57538f1e9e05acc18e8e80481de3
Author: Daniel <random.mister@gmail.com>
Date:	Sat Apr 23 16:31:43 2011 +0100

    Add option to make genre tags as "Text Only"

    Quoth Daniel:

    "I also have a patch which sets the genre tag as a string instead of
    the genre number. This number is not probably handled by iTunes (it
    shows the number, not the actual genre name). I've added it as a
    attachment."

    This is controlled by an option in the ID3 preferences tab

    Written-By: Daniel <random.mister@gmail.com>

M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/prefs.c
M	src/prefs.h
M	src/setting.c
M	src/setting.h

commit 30a13ab5271ed2ec11a2b876c70c5cdce8b4276c
Author: Alex Bennee <alex@bennee.com>
Date:	Sat Apr 23 16:25:49 2011 +0100

    Add a basic HACKING document to mention the prefered form for requests
    and what the coding style seems to be.

A	HACKING
M	README

commit 5e5aacfc7174aba9adfbd32238a5756b717e3490
Author: Daniel <random.mister@gmail.com>
Date:	Sat Apr 23 16:17:21 2011 +0100

    Add "Album Artist" field to the list of potential fields to edit

    Quoth Daniel (Random Mister):

    "I just found an extended patch which also includes support for the
    album-artist tag in the fill tags dialog. It is an update of the
    other, so if you only add this one to the git tree it should work.
    I've been using it for over half a year without bugs, so I think it
    can be merged into the Git tree."

    Written-By: Daniel <random.mister@gmail.com>

M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/browser.h
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/et_core.h
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/misc.c
M	src/scan.c
M	src/setting.c
M	src/setting.h
M	src/ui_manager.h

commit 55e2c3d68d3ba31190c2484db496e09756852ee6
Author: Alex Bennee <alex@bennee.com>
Date:	Mon Mar 28 19:34:48 2011 +0100

    misc.c: fix potential memory corruption

    As reported by valgrind:

    Invalid read of size 1
    at 0x4C28064: strlen (mc_replace_strmem.c:282)
    by 0x9690261: g_strdup (in /usr/lib64/libglib-2.0.so.0.2600.1)
    by 0x89E700C: value_collect_string (in
    /usr/lib64/libgobject-2.0.so.0.2600.1)
    by 0x89D7738: g_signal_emit_valist (in
    /usr/lib64/libgobject-2.0.so.0.2600.1)
    by 0x89D7CF1: g_signal_emit_by_name (in
    /usr/lib64/libgobject-2.0.so.0.2600.1)
    by 0x4EEF092: gtk_entry_insert_text (in
    /usr/lib64/libgtk-x11-2.0.so.0.2200.1)
    by 0x449F1A: Insert_Only_Digit (misc.c:437)
    by 0x89BD19D: g_closure_invoke (in
    /usr/lib64/libgobject-2.0.so.0.2600.1)
    by 0x89D6278: signal_emit_unlocked_R (in
    /usr/lib64/libgobject-2.0.so.0.2600.1)
    by 0x89D79F5: g_signal_emit_valist (in
    /usr/lib64/libgobject-2.0.so.0.2600.1)
    by 0x89D7CF1: g_signal_emit_by_name (in
    /usr/lib64/libgobject-2.0.so.0.2600.1)
    by 0x4EEF092: gtk_entry_insert_text (in
    /usr/lib64/libgtk-x11-2.0.so.0.2200.1)
    Address 0x1604d642 is 0 bytes after a block of size 2 alloc'd
    at 0x4C25218: calloc (vg_replace_malloc.c:467)
    by 0x9678639: g_malloc0 (in /usr/lib64/libglib-2.0.so.0.2600.1)
    by 0x449E8E: Insert_Only_Digit (misc.c:418)
    by 0x89BD19D: g_closure_invoke (in
    /usr/lib64/libgobject-2.0.so.0.2600.1)
    by 0x89D6278: signal_emit_unlocked_R (in
    /usr/lib64/libgobject-2.0.so.0.2600.1)
    by 0x89D79F5: g_signal_emit_valist (in
    /usr/lib64/libgobject-2.0.so.0.2600.1)
    by 0x89D7CF1: g_signal_emit_by_name (in
    /usr/lib64/libgobject-2.0.so.0.2600.1)
    by 0x4EEF092: gtk_entry_insert_text (in
    /usr/lib64/libgtk-x11-2.0.so.0.2200.1)
    by 0x4EF4DB0: gtk_entry_set_text (in
    /usr/lib64/libgtk-x11-2.0.so.0.2200.1)
    by 0x43BFF9: ET_Display_File_Tag_To_UI (et_core.c:2802)
    by 0x43CC53: ET_Display_File_Data_To_UI (et_core.c:2545)
    by 0x4328A7: Action_Select_Nth_File_By_Etfile (easytag.c:1774)

    If we revisit this function it may be worth considering the guidance
    from the GTK manual about intercepting gtk_editible signals:

    http://library.gnome.org/devel/gtk/2.21/GtkEditable.html#GtkEditable-insert-text

M	src/misc.c

commit 6f4b502f1e6be2644ca0d984f918afb802f4116f
Merge: 2513a4e 60e9c1e
Author: Alex Bennee <alex@bennee.com>
Date:	Mon Mar 28 18:51:07 2011 +0100

    Merge branch 'master' of git://github.com/cmcginty/easytag

commit 2513a4eabeeb3dd6998e0eb381f04c715fa4ff0f
Merge: aefef02 42a8a20
Author: Alex Bennee <alex@bennee.com>
Date:	Mon Mar 28 18:48:15 2011 +0100

    Merge branch 'master' of github.com:stsquad/easytag

commit aefef023d780e737303dddc61941cccde00ea963
Merge: d81ae5a f82b55d
Author: Alex Bennee <alex@bennee.com>
Date:	Mon Mar 28 18:08:21 2011 +0100

    Merge remote branch 'rbrito/fixes'

commit 60e9c1ebda68d3fb18c786a94b0e361f6493ccb0
Author: Patrick C. McGinty <casey.mcginty@gmail.com>
Date:	Sun Mar 20 16:47:29 2011 -1000

    Fix 'Preserve Modification Time' option for FLAC files.

    Resolve condition when 'preserve modification time' feature is
    disabled, FLAC files would not have their modification times changed.

    Secondly, it disables easytag from incorrectly warning the user
    that the
    file was changed by an external program, when easytag writes the file.

M	src/easytag.c
M	src/et_core.c
M	src/flac_tag.c

commit f82b55da8dc8389e3e4e0021804231541aa5d71b
Author: Rogério Brito <rbrito@ime.usp.br>
Date:	Tue Mar 8 15:04:35 2011 -0300

    cddb: avoid calling strlen many times in just a few statements.

    As strlen is a potentially costly function, it is better if we make
    a frugal
    use of it.

    To really make things cleaner here, we should replace all the `\n`
    or `\r`
    with null chars (i.e., `\0`) in just one go. This would reduce the
    complexity of the code from something quadratic to something linear
    in the
    length of the string.

    While we are at it, `fgets` does not return `EOF` (`fgetc` does,
    but `fgets`
    doesn't) when the end of file is reached and nothing can be read:
    it returns
    `NULL` instead.

M	src/cddb.c

commit 42a8a20603ba21a1db3d77a62cd75b8e4ec552f2
Author: Rogério Brito <rbrito@ime.usp.br>
Date:	Wed Mar 9 00:26:16 2011 +0800

    Remove executable bits from files that are not scripts/executables.

M	ABOUT-NLS
M	COPYING
M	INSTALL
M	Makefile.am
M	Makefile.mingw
M	README
M	README_win32.txt
M	TODO
M	USERS-GUIDE
M	doc/EasyTAG_Documentation.html
M	doc/EasyTAG_Documentation_fr.html
M	doc/EasyTAG_Documentation_sv.html
M	doc/easytag.1.in
M	doc/id3/easy.html
M	doc/id3/id3v2.3.0.html
M	doc/id3/mpeghdr-19991222.htm
M	doc/users_guide_french/USERS-GUIDE-11_fr1.html
M	doc/users_guide_french/USERS-GUIDE-11_fr2.html
M	doc/users_guide_french/USERS-GUIDE-11_fr3.html
M	doc/users_guide_french/USERS-GUIDE-11_fr4.html
M	doc/users_guide_french/USERS-GUIDE-11_fr5.html
M	doc/users_guide_french/USERS-GUIDE-11_fr6.html
M	doc/users_guide_french/USERS-GUIDE.css
M	doc/users_guide_german/bedienung1.htm
M	doc/users_guide_german/bedienung2.htm
M	doc/users_guide_german/easy.css
M	doc/users_guide_german/einleitung.htm
M	doc/vorbis/v-comment.html
M	easytag-win32-installer.nsi
M	easytag.desktop
M	pixmaps/EasyTAG2.xpm
M	pixmaps/EasyTAG_icon.xpm
M	pixmaps/EasyTAG_logo.xpm
M	pixmaps/add_folder.xpm
M	pixmaps/album.xpm
M	pixmaps/all_downcase.xpm
M	pixmaps/all_uppercase.xpm
M	pixmaps/artist.xpm
M	pixmaps/artist_album.xpm
M	pixmaps/black.xpm
M	pixmaps/blackwhite.xpm
M	pixmaps/closed_folder.xpm
M	pixmaps/closed_folder_readonly.xpm
M	pixmaps/closed_folder_unreadable.xpm
M	pixmaps/first_letter_uppercase.xpm
M	pixmaps/first_letter_uppercase_word.xpm
M	pixmaps/forbidden.xpm
M	pixmaps/freedb.xpm
M	pixmaps/gnudb.xpm
M	pixmaps/grab.xpm
M	pixmaps/invert_selection.xpm
M	pixmaps/mask.xpm
M	pixmaps/musicbrainz.xpm
M	pixmaps/opened_folder.xpm
M	pixmaps/parent_folder.xpm
M	pixmaps/ram_disk.xpm
M	pixmaps/read_only.xpm
M	pixmaps/red_lines.xpm
M	pixmaps/scan.xpm
M	pixmaps/select_all.xpm
M	pixmaps/sequence_track.xpm
M	pixmaps/sound.xpm
M	pixmaps/unselect_all.xpm
M	po/ChangeLog
M	po/Makefile.in.in
M	po/Makefile.mingw
M	po/POTFILES.in
M	src/Makefile.am
M	src/Makefile.mingw
M	src/about.c
M	src/about.h
M	src/ape_tag.c
M	src/ape_tag.h
M	src/base64.c
M	src/base64.h
M	src/browser.c
M	src/cddb.c
M	src/cddb.h
M	src/charset.c
M	src/charset.h
M	src/crc32.c
M	src/crc32.h
M	src/dlm.c
M	src/dlm.h
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/et_core.h
M	src/flac_header.c
M	src/flac_header.h
M	src/flac_tag.c
M	src/flac_tag.h
M	src/genres.h
M	src/id3_tag.c
M	src/id3_tag.h
M	src/id3lib/Makefile.am
M	src/id3lib/c_wrapper.cpp
M	src/id3lib/id3_bugfix.h
M	src/id3lib/patch_id3lib_3.8.3_UTF16_writing_bug.diff
M	src/id3v24_tag.c
M	src/libapetag/COPYING.LGPL
M	src/libapetag/Makefile.am
M	src/libapetag/README.apetag
M	src/libapetag/apetaglib.c
M	src/libapetag/apetaglib.h
M	src/libapetag/id3v2_read.c
M	src/libapetag/id3v2_read.h
M	src/libapetag/info_mac.c
M	src/libapetag/info_mac.h
M	src/libapetag/info_mpc.c
M	src/libapetag/info_mpc.h
M	src/libapetag/is_tag.c
M	src/libapetag/is_tag.h
M	src/libmpg123/Makefile.am
M	src/libmpg123/README
M	src/libmpg123/common.c
M	src/libmpg123/dxhead.c
M	src/libmpg123/dxhead.h
M	src/libmpg123/getbits.c
M	src/libmpg123/getbits.h
M	src/libmpg123/huffman.h
M	src/libmpg123/l2tables.h
M	src/libmpg123/layer1.c
M	src/libmpg123/layer2.c
M	src/libmpg123/layer3.c
M	src/libmpg123/mpg123.c
M	src/libmpg123/mpg123.h
M	src/log.c
M	src/log.h
M	src/misc.c
M	src/misc.h
M	src/monkeyaudio_header.c
M	src/monkeyaudio_header.h
M	src/mp4_header.c
M	src/mp4_header.h
M	src/mp4_tag.c
M	src/mp4_tag.h
M	src/mpeg_header.c
M	src/mpeg_header.h
M	src/msgbox.c
M	src/msgbox.h
M	src/musepack_header.c
M	src/musepack_header.h
M	src/ogg_header.c
M	src/ogg_header.h
M	src/ogg_tag.c
M	src/ogg_tag.h
M	src/picture.c
M	src/picture.h
M	src/prefs.h
M	src/scan.h
M	src/setting.c
M	src/vcedit.c
M	src/vcedit.h
M	src/wavpack_header.c
M	src/wavpack_header.h
M	src/wavpack_tag.c
M	src/wavpack_tag.h
M	src/win32/easytag.rc
M	src/win32/gtkwin32dep.c
M	src/win32/gtkwin32dep.h
M	src/win32/resource.h
M	src/win32/win32dep.c
M	src/win32/win32dep.h
M	src/win32/win_easytag.c

commit 891b53ce003db7be264bba8b6cd3d547c050099f
Author: Rogério Brito <rbrito@ime.usp.br>
Date:	Tue Mar 8 15:01:28 2011 -0300

    cddb: Plug some memory leaks.

    Some of these functions are way, way too big and should be split. One
    obvious low hanging fruit is to use some intelligent goto's to clean
    up and
    avoid a bunch of if's in the code, in the very same fashion that is
    used in
    the code of the kernel.

    And, to be honest, using some of the coding style conventions of
    the kernel
    here would not hurt at all.

M	src/cddb.c

commit 26cc42d5a92968ed3bbf7b58aa1ea93ec1384fd0
Author: Rogério Brito <rbrito@ime.usp.br>
Date:	Tue Mar 8 14:59:52 2011 -0300

    cddb: Eliminate unused variable.

    Like this one, the code is full of variables that are defined,
    but not used
    and the code can be simplified.

M	src/cddb.c

commit 1350f8c0181c444878c73f89167e385e70629dd1
Author: Rogério Brito <rbrito@ime.usp.br>
Date:	Tue Mar 8 13:26:16 2011 -0300

    Remove executable bits from files that are not scripts/executables.

M	ABOUT-NLS
M	COPYING
M	INSTALL
M	Makefile.am
M	Makefile.mingw
M	README
M	README_win32.txt
M	TODO
M	USERS-GUIDE
M	doc/EasyTAG_Documentation.html
M	doc/EasyTAG_Documentation_fr.html
M	doc/EasyTAG_Documentation_sv.html
M	doc/easytag.1.in
M	doc/id3/easy.html
M	doc/id3/id3v2.3.0.html
M	doc/id3/id3v2_blocks.gif
M	doc/id3/mpeghdr-19991222.htm
M	doc/users_guide_french/USERS-GUIDE-11_fr1.html
M	doc/users_guide_french/USERS-GUIDE-11_fr2.html
M	doc/users_guide_french/USERS-GUIDE-11_fr3.html
M	doc/users_guide_french/USERS-GUIDE-11_fr4.html
M	doc/users_guide_french/USERS-GUIDE-11_fr5.html
M	doc/users_guide_french/USERS-GUIDE-11_fr6.html
M	doc/users_guide_french/USERS-GUIDE.css
M	doc/users_guide_french/images/bouton_arbo.png
M	doc/users_guide_french/images/bouton_img1.png
M	doc/users_guide_french/images/bouton_img2.png
M	doc/users_guide_french/images/bouton_img3.png
M	doc/users_guide_french/images/bouton_scan1.png
M	doc/users_guide_french/images/bouton_scan2.png
M	doc/users_guide_french/images/bouton_scan3.png
M	doc/users_guide_french/images/bouton_scan4.png
M	doc/users_guide_french/images/bouton_scan5.png
M	doc/users_guide_french/images/bouton_scan6.png
M	doc/users_guide_french/images/bouton_scan7.png
M	doc/users_guide_french/images/fen_boutons.png
M	doc/users_guide_french/images/fen_cddb1.png
M	doc/users_guide_french/images/fen_cddb2.png
M	doc/users_guide_french/images/fen_fic_txt.png
M	doc/users_guide_french/images/fen_fich.png
M	doc/users_guide_french/images/fen_lect1.png
M	doc/users_guide_french/images/fen_lect2.png
M	doc/users_guide_french/images/fen_playlist.png
M	doc/users_guide_french/images/fen_rech1.png
M	doc/users_guide_french/images/fen_scan1.png
M	doc/users_guide_french/images/fen_scan2.png
M	doc/users_guide_french/images/fen_scan3.png
M	doc/users_guide_french/images/fen_scan4.png
M	doc/users_guide_french/images/fen_sel1.png
M	doc/users_guide_french/images/fen_sel2.png
M	doc/users_guide_french/images/fen_sel3.png
M	doc/users_guide_french/images/fen_tag_bout1.png
M	doc/users_guide_french/images/fen_tag_bout2.png
M	doc/users_guide_french/images/fen_tag_gen.png
M	doc/users_guide_french/images/fen_tag_img.png
M	doc/users_guide_french/images/interface.png
M	doc/users_guide_french/images/menu_context1.png
M	doc/users_guide_french/images/menu_context2.png
M	doc/users_guide_french/images/menu_context3.png
M	doc/users_guide_french/images/menu_div.png
M	doc/users_guide_french/images/menu_fic.png
M	doc/users_guide_french/images/menu_pref.png
M	doc/users_guide_french/images/menu_recherche.png
M	doc/users_guide_french/images/menu_recherche1.png
M	doc/users_guide_french/images/menu_recherche2.png
M	doc/users_guide_french/images/menu_scan.png
M	doc/users_guide_french/images/menu_sel.png
M	doc/users_guide_french/images/sousmenu_fic1.png
M	doc/users_guide_french/images/sousmenu_fic2.png
M	doc/users_guide_german/bedienung1.htm
M	doc/users_guide_german/bedienung2.htm
M	doc/users_guide_german/easy.css
M	doc/users_guide_german/einleitung.htm
M	doc/users_guide_german/images/EasyTAG.png
M	doc/users_guide_german/images/eigensch.png
M	doc/users_guide_german/images/filelist.png
M	doc/users_guide_german/images/playlist.png
M	doc/users_guide_german/images/search.png
M	doc/users_guide_german/images/t_easytag.jpg
M	doc/users_guide_german/images/treeview.png
M	doc/vorbis/v-comment.html
M	doc/vorbis/white-ogg.png
M	easytag-win32-installer.nsi
M	easytag.desktop
M	pixmaps/EasyTAG.ico
M	pixmaps/EasyTAG2.ico
M	pixmaps/EasyTAG2.xpm
M	pixmaps/EasyTAG_icon.xpm
M	pixmaps/EasyTAG_logo.xpm
M	pixmaps/add_folder.xpm
M	pixmaps/album.xpm
M	pixmaps/all_downcase.xpm
M	pixmaps/all_uppercase.xpm
M	pixmaps/artist.xpm
M	pixmaps/artist_album.xpm
M	pixmaps/black.xpm
M	pixmaps/blackwhite.xpm
M	pixmaps/closed_folder.xpm
M	pixmaps/closed_folder_readonly.xpm
M	pixmaps/closed_folder_unreadable.xpm
M	pixmaps/first_letter_uppercase.xpm
M	pixmaps/first_letter_uppercase_word.xpm
M	pixmaps/forbidden.xpm
M	pixmaps/freedb.xpm
M	pixmaps/gnudb.xpm
M	pixmaps/grab.xpm
M	pixmaps/invert_selection.xpm
M	pixmaps/mask.xpm
M	pixmaps/musicbrainz.xpm
M	pixmaps/opened_folder.xpm
M	pixmaps/parent_folder.xpm
M	pixmaps/ram_disk.xpm
M	pixmaps/read_only.xpm
M	pixmaps/red_lines.xpm
M	pixmaps/scan.xpm
M	pixmaps/select_all.xpm
M	pixmaps/sequence_track.xpm
M	pixmaps/sound.xpm
M	pixmaps/unselect_all.xpm
M	po/ChangeLog
M	po/Makefile.in.in
M	po/Makefile.mingw
M	po/POTFILES.in
M	src/Makefile.am
M	src/Makefile.mingw
M	src/about.c
M	src/about.h
M	src/ape_tag.c
M	src/ape_tag.h
M	src/base64.c
M	src/base64.h
M	src/browser.c
M	src/cddb.c
M	src/cddb.h
M	src/charset.c
M	src/charset.h
M	src/crc32.c
M	src/crc32.h
M	src/dlm.c
M	src/dlm.h
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/et_core.h
M	src/flac_header.c
M	src/flac_header.h
M	src/flac_tag.c
M	src/flac_tag.h
M	src/genres.h
M	src/id3_tag.c
M	src/id3_tag.h
M	src/id3lib/Makefile.am
M	src/id3lib/c_wrapper.cpp
M	src/id3lib/id3_bugfix.h
M	src/id3lib/patch_id3lib_3.8.3_UTF16_writing_bug.diff
M	src/id3v24_tag.c
M	src/libapetag/COPYING.LGPL
M	src/libapetag/Makefile.am
M	src/libapetag/README.apetag
M	src/libapetag/apetaglib.c
M	src/libapetag/apetaglib.h
M	src/libapetag/id3v2_read.c
M	src/libapetag/id3v2_read.h
M	src/libapetag/info_mac.c
M	src/libapetag/info_mac.h
M	src/libapetag/info_mpc.c
M	src/libapetag/info_mpc.h
M	src/libapetag/is_tag.c
M	src/libapetag/is_tag.h
M	src/libmpg123/Makefile.am
M	src/libmpg123/README
M	src/libmpg123/common.c
M	src/libmpg123/dxhead.c
M	src/libmpg123/dxhead.h
M	src/libmpg123/getbits.c
M	src/libmpg123/getbits.h
M	src/libmpg123/huffman.h
M	src/libmpg123/l2tables.h
M	src/libmpg123/layer1.c
M	src/libmpg123/layer2.c
M	src/libmpg123/layer3.c
M	src/libmpg123/mpg123.c
M	src/libmpg123/mpg123.h
M	src/log.c
M	src/log.h
M	src/misc.c
M	src/misc.h
M	src/monkeyaudio_header.c
M	src/monkeyaudio_header.h
M	src/mp4_header.c
M	src/mp4_header.h
M	src/mp4_tag.c
M	src/mp4_tag.h
M	src/mpeg_header.c
M	src/mpeg_header.h
M	src/msgbox.c
M	src/msgbox.h
M	src/musepack_header.c
M	src/musepack_header.h
M	src/ogg_header.c
M	src/ogg_header.h
M	src/ogg_tag.c
M	src/ogg_tag.h
M	src/picture.c
M	src/picture.h
M	src/prefs.h
M	src/scan.h
M	src/setting.c
M	src/vcedit.c
M	src/vcedit.h
M	src/wavpack_header.c
M	src/wavpack_header.h
M	src/wavpack_tag.c
M	src/wavpack_tag.h
M	src/win32/easytag.rc
M	src/win32/gtkwin32dep.c
M	src/win32/gtkwin32dep.h
M	src/win32/nsis/easytag-header.bmp
M	src/win32/nsis/easytag-install.bmp
M	src/win32/nsis/easytag-install.ico
M	src/win32/nsis/easytag-uninstall.bmp
M	src/win32/resource.h
M	src/win32/win32dep.c
M	src/win32/win32dep.h
M	src/win32/win_easytag.c

commit d81ae5a482050947169f10e89c4d45e982f6012f
Author: Patrick C. McGinty <casey.mcginty@gmail.com>
Date:	Tue Mar 8 00:18:52 2011 -1000

    Stop accidental free of referenced FLAC vendor string

    The libFLAC API is unclear about how it handles empty strings. The
    original code assumed that empty string would be copied, when 'copy'
    param of set_vendor_string was true, as indicated in the API docs.

    Checking into the libFLAC source, when a string of length 0 is
    provided,
    it will NOT be copied.  Therfore, free'ing empty string will cause a
    SIGSEGV or worse when the FLAC API tries to read the vendor string.

M	src/flac_tag.c

commit a1f6f1f55c73959cad85d0fc23d5a00ad3326463
Author: FeRD (Frank Dana) <ferdnyc@gmail.com>
Date:	Mon Dec 27 11:52:51 2010 -0500

    Exclude nonexistent debian/ path from EXTRA_DIST

    Fixes make targets for distdir/distfile building

M	Makefile.am

commit d1cfc795e677c4f50696628c13f8593a35f0034e
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Nov 10 22:46:40 2010 +0000

    .gitignore for generated files

A	.gitignore

commit 6cf81d6acd6784764f15cb0f5147f8b98b9e0708
Merge: 44068a3 cddc6f2
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Nov 10 22:23:42 2010 +0000

    Merge remote branch 'oldmanuk/ubuntu-patches' into new_master

commit 44068a3a596990877ef162fe4821089936e99221
Author: Kip Warner <kiplingw@users.sourceforge.net>
Date:	Thu Nov 4 01:03:12 2010 +0800

    [patch] Base64 Decoding Major Performance Fix - ID: 2805834

    I've patched src/base64.c. There was a major problem when it was
    being called
    to decode very large buffers in orders of magnitude of a megabyte
    or more
    (e.g. cover art in a FLAC / Vorbis / etc. tag is frequently this
    size for some
    people). The base64_decode() routine had a cubic running time,
    since every
    time the decode pointer shifted forward in the stream, token_decode()
    would
    recompute the buffer length every time.

M	src/base64.c

commit cddc6f279a153006b382db0dee1c4115b16335d7
Author: Dominic Evans <oldmanuk@gmail.com>
Date:	Wed Nov 3 16:53:15 2010 +0000

    Fix configure.in to properly detect libmp4v2 library and update
    autogen input files to remove warnings when running autogen.sh

M	INSTALL
M	Makefile.am
D	acconfig.h
M	autogen.sh
M	configure.in

commit 22e7b7e34848137be1d634f97932b838e213e00d
Author: Dominic Evans <oldmanuk@gmail.com>
Date:	Wed Nov 3 16:00:00 2010 +0000

    Remove checked-in build scripts that are auto-generated from autogen.

D	Makefile.in
D	aclocal.m4
D	config.h.in
D	configure
D	ltmain.sh
D	src/Makefile.in
D	src/id3lib/Makefile.in
D	src/libapetag/Makefile.in
D	src/libmpg123/Makefile.in

commit 48ef620bfac636b69ddf46cd7fca93f312f971ad
Author: Dominic Evans <oldmanuk@gmail.com>
Date:	Wed Nov 3 13:07:07 2010 +0000

    [patch] debian/patches/manpage-has-bad-whatis-entry.patch

    Fix lintian warning.

M	doc/easytag.1.in

commit 8eae165c7095a97b9871f3ac13616bd8eea4cb03
Author: Dominic Evans <oldmanuk@gmail.com>
Date:	Wed Nov 3 13:04:37 2010 +0000

    [patch] debian/patches/02-autoreconf.patch

    Get rid of binary-or-shlib-defines-rpath lintian warning.

M	Makefile.in
M	aclocal.m4
M	config.h.in
M	configure
M	ltmain.sh
M	src/Makefile.in
M	src/id3lib/Makefile.in
M	src/libapetag/Makefile.in
M	src/libmpg123/Makefile.in

commit 820c5ae2ddc319073d23d308204069850c1682a2
Author: Dominic Evans <oldmanuk@gmail.com>
Date:	Wed Nov 3 12:54:14 2010 +0000

    [patch] debian/patches/01-autoload.patch

    Fix the bug that easytag doesn't load the chosen directory when
    opening
    easytag from the "open with ..." nautilus right click menu.

    Ubuntu: https://bugs.launchpad.net/bugs/230873

M	src/easytag.c

commit b8aad9662c7388e9707cb1f151394362c49904fd
Author: Dominic Evans <oldmanuk@gmail.com>
Date:	Wed Nov 3 12:51:57 2010 +0000

    Remove debian/ dir (accidentally included in easytag 2.1.5 and some
    earlier releases, correctly removed in 2.1.6)

D	debian/changelog
D	debian/compat
D	debian/control
D	debian/copyright
D	debian/dirs
D	debian/docs
D	debian/easytag.1
D	debian/easytag.xpm
D	debian/menu
D	debian/rules

commit 7801e5b946b21fd1ae51980bdd99c5ad7698c7af
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Jul 14 16:11:42 2010 +0100

    Applied Gentoo cddb patch

M	src/cddb.c

commit e5d57fd684d1baa084cac5d5082f4020fc5e540b
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Jul 14 16:09:42 2010 +0100

    Applied Gentoo new_libmp4v2 patch

M	configure
M	src/mp4_header.c
M	src/mp4_tag.c

commit 40eaecff1254c3b3630aa0af27dbeda0abe6960a
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Jul 14 16:08:49 2010 +0100

    Applied Gentoo desktop_entry patch

M	easytag.desktop

commit 4103b09671b40013e10cab4d556fd65465fa800f
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Jul 14 16:04:37 2010 +0100

    EasyTag 2.1.6

M	ChangeLog
M	THANKS
M	config.h.mingw
M	configure
M	configure.in
M	easytag.spec
M	easytag.spec.in
M	po/bg.gmo
M	po/bg.po
M	po/cs.gmo
M	po/cs.po
M	po/da.gmo
M	po/da.po
M	po/de.gmo
M	po/de.po
M	po/easytag.pot
M	po/el.gmo
M	po/el.po
M	po/es.gmo
M	po/es.po
M	po/fr.gmo
M	po/fr.po
M	po/he.gmo
M	po/he.po
M	po/hu.gmo
M	po/hu.po
M	po/it.gmo
M	po/it.po
M	po/ja.gmo
M	po/ja.po
M	po/nl.gmo
M	po/nl.po
M	po/pl.gmo
M	po/pl.po
M	po/pt_BR.gmo
M	po/pt_BR.po
M	po/ro.gmo
M	po/ro.po
M	po/ru.gmo
M	po/ru.po
M	po/sr.gmo
M	po/sr.po
M	po/sr@Latn.gmo
M	po/sr@Latn.po
M	po/sv.gmo
M	po/sv.po
M	po/uk.gmo
M	po/uk.po
M	po/zh_CN.gmo
M	po/zh_CN.po
M	po/zh_TW.gmo
M	po/zh_TW.po
M	src/Makefile.am
M	src/Makefile.in
M	src/Makefile.mingw
M	src/about.c
M	src/bar.c
M	src/bar.h
M	src/browser.c
M	src/browser.h
M	src/cddb.c
M	src/charset.c
M	src/easytag.c
M	src/et_core.c
M	src/et_core.h
M	src/flac_tag.c
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/log.c
M	src/log.h
M	src/misc.c
M	src/ogg_tag.c
M	src/picture.c
M	src/scan.c
M	src/setting.c
M	src/ui_manager.h
A	src/win32/gtkwin32dep.c
A	src/win32/gtkwin32dep.h
M	src/win32/win32dep.c
M	src/win32/win32dep.h
M	src/win32/win_easytag.c

commit a3e202820fd12e3c368c9ed2446740e9b1d16fd7
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Jul 14 16:03:56 2010 +0100

    EasyTag 2.1.5

M	ChangeLog
M	Makefile.am
M	Makefile.in
M	README
M	config.h.mingw
M	configure
M	configure.in
M	debian/changelog
M	debian/rules
M	easytag-win32-installer.nsi
M	easytag.spec
M	easytag.spec.in
D	pixmaps/closed_folder_locked.xpm
A	pixmaps/closed_folder_readonly.xpm
A	pixmaps/closed_folder_unreadable.xpm
M	po/bg.gmo
M	po/bg.po
M	po/cs.gmo
M	po/cs.po
M	po/da.gmo
M	po/da.po
M	po/de.gmo
M	po/de.po
M	po/easytag.pot
M	po/el.gmo
M	po/el.po
M	po/es.gmo
M	po/es.po
M	po/fr.gmo
M	po/fr.po
M	po/he.gmo
M	po/he.po
M	po/hu.gmo
M	po/hu.po
M	po/it.gmo
M	po/it.po
M	po/ja.gmo
M	po/ja.po
M	po/nl.gmo
M	po/nl.po
M	po/pl.gmo
M	po/pl.po
M	po/pt_BR.gmo
M	po/pt_BR.po
M	po/ro.gmo
M	po/ro.po
M	po/ru.gmo
M	po/ru.po
M	po/sr.gmo
M	po/sr.po
M	po/sr@Latn.gmo
M	po/sr@Latn.po
M	po/sv.gmo
M	po/sv.po
M	po/uk.gmo
M	po/uk.po
M	po/zh_CN.gmo
M	po/zh_CN.po
M	po/zh_TW.gmo
M	po/zh_TW.po
M	src/Makefile.am
M	src/Makefile.mingw
M	src/about.c
M	src/base64.c
M	src/base64.h
M	src/browser.c
M	src/cddb.c
M	src/easytag.c
M	src/et_core.c
M	src/et_core.h
M	src/flac_header.c
M	src/flac_tag.c
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/libapetag/apetaglib.c
M	src/libmpg123/mpg123.c
M	src/log.c
M	src/misc.c
M	src/mp4_tag.c
M	src/ogg_tag.c
M	src/picture.c
M	src/picture.h
M	src/prefs.c
M	src/scan.c
M	src/setting.c
M	src/setting.h

commit 26b8e06374c71e42be86694f5d5c4ee920ae4d26
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Jul 14 16:01:16 2010 +0100

    EasyTag 2.1.4

M	ABOUT-NLS
M	COPYING
M	ChangeLog
M	Makefile.am
M	Makefile.in
M	Makefile.mingw
M	README
M	README_win32.txt
M	THANKS
M	TODO
M	acconfig.h
M	aclocal.m4
M	config.guess
M	config.h.in
M	config.h.mingw
M	config.sub
M	configure
M	configure.in
M	debian/changelog
M	debian/rules
M	doc/EasyTAG_Documentation_sv.html
A	easytag-win32-installer.nsi
M	easytag.desktop
M	easytag.spec
M	easytag.spec.in
D	easytag.win32.setup.iss
M	ltmain.sh
D	pixmaps/add.xpm
A	pixmaps/album.xpm
A	pixmaps/artist.xpm
M	pixmaps/artist_album.xpm
M	pixmaps/freedb.xpm
M	pixmaps/gnudb.xpm
M	pixmaps/musicbrainz.xpm
M	pixmaps/scan.xpm
M	po/ChangeLog
M	po/Makefile.in.in
M	po/Makefile.mingw
M	po/bg.gmo
M	po/bg.po
M	po/cs.gmo
M	po/cs.po
M	po/da.gmo
M	po/da.po
M	po/de.gmo
M	po/de.po
M	po/easytag.pot
M	po/el.gmo
M	po/el.po
M	po/es.gmo
M	po/es.po
M	po/fr.gmo
M	po/fr.po
M	po/he.gmo
M	po/he.po
M	po/hu.gmo
M	po/hu.po
M	po/it.gmo
M	po/it.po
M	po/ja.gmo
M	po/ja.po
M	po/nl.gmo
M	po/nl.po
M	po/pl.gmo
M	po/pl.po
M	po/pt_BR.gmo
M	po/pt_BR.po
M	po/ro.gmo
M	po/ro.po
M	po/ru.gmo
M	po/ru.po
M	po/sr.gmo
M	po/sr.po
M	po/sr@Latn.gmo
M	po/sr@Latn.po
M	po/sv.gmo
M	po/sv.po
M	po/uk.gmo
M	po/uk.po
M	po/zh_CN.gmo
M	po/zh_CN.po
A	po/zh_TW.gmo
C051	po/he.po	po/zh_TW.po
M	src/Makefile.am
M	src/Makefile.in
M	src/Makefile.mingw
M	src/about.c
M	src/ape_tag.c
M	src/bar.c
A	src/base64.c
A	src/base64.h
M	src/browser.c
M	src/browser.h
M	src/cddb.c
M	src/cddb.h
M	src/charset.c
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/et_core.h
M	src/flac_header.c
M	src/flac_tag.c
M	src/id3_tag.c
M	src/id3v24_tag.c
M	src/libapetag/apetaglib.c
M	src/libmpg123/README
M	src/libmpg123/mpg123.c
M	src/log.c
M	src/log.h
M	src/misc.c
M	src/misc.h
M	src/mp4_header.c
M	src/mp4_tag.c
M	src/mpeg_header.c
M	src/msgbox.c
M	src/msgbox.h
M	src/ogg_header.c
M	src/ogg_tag.c
M	src/picture.c
M	src/picture.h
M	src/prefs.c
M	src/prefs.h
M	src/scan.c
M	src/scan.h
M	src/setting.c
M	src/setting.h
A	src/win32/nsis/easytag-header.bmp
A	src/win32/nsis/easytag-install.bmp
A	src/win32/nsis/easytag-install.ico
A	src/win32/nsis/easytag-uninstall.bmp
M	src/win32/win32dep.c
M	src/win32/win32dep.h
M	src/win32/win_easytag.c

commit d022d6443c6b7564ae05a3af70035822bccd0b19
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Jul 14 16:00:32 2010 +0100

    EasyTag 2.1.3

M	ChangeLog
M	Makefile.am
M	Makefile.in
M	THANKS
M	aclocal.m4
M	config.guess
M	config.h.in
M	config.h.mingw
M	config.sub
M	configure
M	configure.in
M	debian/changelog
M	debian/control
M	easytag.spec
M	easytag.spec.in
M	easytag.win32.setup.iss
M	ltmain.sh
D	pixmaps/EasyTAG.xpm
A	pixmaps/EasyTAG_icon.xpm
M	pixmaps/EasyTAG_logo.xpm
M	pixmaps/artist_album.xpm
M	pixmaps/scan.xpm
M	po/bg.gmo
M	po/bg.po
M	po/cs.gmo
M	po/cs.po
M	po/da.gmo
M	po/da.po
M	po/de.gmo
M	po/de.po
M	po/easytag.pot
M	po/el.gmo
M	po/el.po
M	po/es.gmo
M	po/es.po
M	po/fr.gmo
M	po/fr.po
M	po/he.gmo
M	po/he.po
M	po/hu.gmo
M	po/hu.po
M	po/it.gmo
M	po/it.po
M	po/ja.gmo
M	po/ja.po
M	po/nl.gmo
M	po/nl.po
M	po/pl.gmo
M	po/pl.po
M	po/pt_BR.gmo
M	po/pt_BR.po
M	po/ro.gmo
M	po/ro.po
M	po/ru.gmo
M	po/ru.po
A	po/sr.gmo
A	po/sr.po
A	po/sr@Latn.gmo
C052	po/pl.po	po/sr@Latn.po
M	po/sv.gmo
M	po/sv.po
M	po/uk.gmo
M	po/uk.po
M	po/zh_CN.gmo
M	po/zh_CN.po
M	src/Makefile.in
M	src/about.c
M	src/bar.c
M	src/browser.c
M	src/browser.h
M	src/cddb.c
M	src/easytag.c
M	src/easytag.h
M	src/et_core.c
M	src/et_core.h
M	src/id3_tag.c
M	src/id3lib/Makefile.in
M	src/id3v24_tag.c
M	src/libapetag/Makefile.in
M	src/libmpg123/Makefile.in
M	src/log.c
M	src/misc.c
M	src/msgbox.c
M	src/msgbox.h
M	src/picture.c
M	src/prefs.c
M	src/prefs.h
M	src/scan.c
M	src/scan.h
M	src/setting.c
M	src/setting.h
M	src/win32/win32dep.c
M	src/win32/win32dep.h

commit 56302086c9c0d6af537d7603a7c63fb3606945f5
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Jul 14 15:58:03 2010 +0100

    EasyTag 2.1.2

M	ChangeLog
M	Makefile.am
M	Makefile.in
M	README
M	THANKS
M	config.h.in
M	configure
M	configure.in
A	doc/EasyTAG_Documentation_sv.html
M	easytag.spec
M	easytag.spec.in
M	easytag.win32.setup.iss
M	po/bg.gmo
M	po/bg.po
M	po/cs.gmo
M	po/cs.po
M	po/da.gmo
M	po/da.po
M	po/de.gmo
M	po/de.po
M	po/easytag.pot
M	po/el.gmo
M	po/el.po
M	po/es.gmo
M	po/es.po
M	po/fr.gmo
M	po/fr.po
M	po/he.gmo
M	po/he.po
M	po/hu.gmo
M	po/hu.po
M	po/it.gmo
M	po/it.po
M	po/ja.gmo
M	po/ja.po
M	po/nl.gmo
M	po/nl.po
M	po/pl.gmo
M	po/pl.po
M	po/pt_BR.gmo
M	po/pt_BR.po
M	po/ro.gmo
M	po/ro.po
M	po/ru.gmo
M	po/ru.po
M	po/sv.gmo
M	po/sv.po
M	po/uk.gmo
M	po/uk.po
M	po/zh_CN.gmo
M	po/zh_CN.po
M	src/about.c
M	src/ape_tag.c
M	src/cddb.c
M	src/easytag.c
M	src/et_core.c
M	src/id3v24_tag.c
M	src/log.c
M	src/prefs.c
M	src/prefs.h
M	src/scan.c
M	src/setting.c
M	src/setting.h

commit ba15707b292d827bdce732e7713b26fae3f75c74
Author: Alex Bennee <alex@bennee.com>
Date:	Wed Jul 14 15:57:06 2010 +0100

    EasyTag 2.1.1

A	ABOUT-NLS
A	COPYING
A	ChangeLog
A	INSTALL
A	Makefile.am
A	Makefile.in
A	Makefile.mingw
A	README
A	README_win32.txt
A	THANKS
A	TODO
A	USERS-GUIDE
A	acconfig.h
A	aclocal.m4
A	autogen.sh
A	config.guess
A	config.h.in
A	config.h.mingw
A	config.sub
A	configure
A	configure.in
A	debian/changelog
A	debian/compat
A	debian/control
A	debian/copyright
A	debian/dirs
A	debian/docs
A	debian/easytag.1
A	debian/easytag.xpm
A	debian/menu
A	debian/rules
A	depcomp
A	doc/EasyTAG_Documentation.html
A	doc/EasyTAG_Documentation_fr.html
A	doc/easytag.1.in
A	doc/id3/easy.html
A	doc/id3/id3v2.3.0.html
A	doc/id3/id3v2_blocks.gif
A	doc/id3/mpeghdr-19991222.htm
A	doc/users_guide_french/USERS-GUIDE-11_fr1.html
A	doc/users_guide_french/USERS-GUIDE-11_fr2.html
A	doc/users_guide_french/USERS-GUIDE-11_fr3.html
A	doc/users_guide_french/USERS-GUIDE-11_fr4.html
A	doc/users_guide_french/USERS-GUIDE-11_fr5.html
A	doc/users_guide_french/USERS-GUIDE-11_fr6.html
A	doc/users_guide_french/USERS-GUIDE.css
A	doc/users_guide_french/images/bouton_arbo.png
A	doc/users_guide_french/images/bouton_img1.png
A	doc/users_guide_french/images/bouton_img2.png
A	doc/users_guide_french/images/bouton_img3.png
A	doc/users_guide_french/images/bouton_scan1.png
A	doc/users_guide_french/images/bouton_scan2.png
A	doc/users_guide_french/images/bouton_scan3.png
A	doc/users_guide_french/images/bouton_scan4.png
A	doc/users_guide_french/images/bouton_scan5.png
A	doc/users_guide_french/images/bouton_scan6.png
A	doc/users_guide_french/images/bouton_scan7.png
A	doc/users_guide_french/images/fen_boutons.png
A	doc/users_guide_french/images/fen_cddb1.png
A	doc/users_guide_french/images/fen_cddb2.png
A	doc/users_guide_french/images/fen_fic_txt.png
A	doc/users_guide_french/images/fen_fich.png
A	doc/users_guide_french/images/fen_lect1.png
A	doc/users_guide_french/images/fen_lect2.png
A	doc/users_guide_french/images/fen_playlist.png
A	doc/users_guide_french/images/fen_rech1.png
A	doc/users_guide_french/images/fen_scan1.png
A	doc/users_guide_french/images/fen_scan2.png
A	doc/users_guide_french/images/fen_scan3.png
A	doc/users_guide_french/images/fen_scan4.png
A	doc/users_guide_french/images/fen_sel1.png
A	doc/users_guide_french/images/fen_sel2.png
A	doc/users_guide_french/images/fen_sel3.png
A	doc/users_guide_french/images/fen_tag_bout1.png
A	doc/users_guide_french/images/fen_tag_bout2.png
A	doc/users_guide_french/images/fen_tag_gen.png
A	doc/users_guide_french/images/fen_tag_img.png
A	doc/users_guide_french/images/interface.png
A	doc/users_guide_french/images/menu_context1.png
A	doc/users_guide_french/images/menu_context2.png
A	doc/users_guide_french/images/menu_context3.png
A	doc/users_guide_french/images/menu_div.png
A	doc/users_guide_french/images/menu_fic.png
A	doc/users_guide_french/images/menu_pref.png
A	doc/users_guide_french/images/menu_recherche.png
A	doc/users_guide_french/images/menu_recherche1.png
A	doc/users_guide_french/images/menu_recherche2.png
A	doc/users_guide_french/images/menu_scan.png
A	doc/users_guide_french/images/menu_sel.png
A	doc/users_guide_french/images/sousmenu_fic1.png
A	doc/users_guide_french/images/sousmenu_fic2.png
A	doc/users_guide_german/bedienung1.htm
A	doc/users_guide_german/bedienung2.htm
A	doc/users_guide_german/easy.css
A	doc/users_guide_german/einleitung.htm
A	doc/users_guide_german/images/EasyTAG.png
A	doc/users_guide_german/images/eigensch.png
A	doc/users_guide_german/images/filelist.png
A	doc/users_guide_german/images/playlist.png
A	doc/users_guide_german/images/search.png
A	doc/users_guide_german/images/t_easytag.jpg
A	doc/users_guide_german/images/treeview.png
A	doc/vorbis/v-comment.html
A	doc/vorbis/white-ogg.png
A	easytag.desktop
A	easytag.spec
A	easytag.spec.in
A	easytag.win32.setup.iss
A	install-sh
A	ltmain.sh
A	missing
A	mkinstalldirs
A	pixmaps/EasyTAG.ico
A	pixmaps/EasyTAG.xpm
A	pixmaps/EasyTAG2.ico
A	pixmaps/EasyTAG2.xpm
A	pixmaps/EasyTAG_logo.xpm
A	pixmaps/add.xpm
A	pixmaps/add_folder.xpm
A	pixmaps/all_downcase.xpm
A	pixmaps/all_uppercase.xpm
A	pixmaps/artist_album.xpm
A	pixmaps/black.xpm
A	pixmaps/blackwhite.xpm
A	pixmaps/closed_folder.xpm
A	pixmaps/closed_folder_locked.xpm
A	pixmaps/first_letter_uppercase.xpm
A	pixmaps/first_letter_uppercase_word.xpm
A	pixmaps/forbidden.xpm
A	pixmaps/freedb.xpm
A	pixmaps/gnudb.xpm
A	pixmaps/grab.xpm
A	pixmaps/invert_selection.xpm
A	pixmaps/mask.xpm
A	pixmaps/musicbrainz.xpm
A	pixmaps/opened_folder.xpm
A	pixmaps/parent_folder.xpm
A	pixmaps/ram_disk.xpm
A	pixmaps/read_only.xpm
A	pixmaps/red_lines.xpm
A	pixmaps/scan.xpm
A	pixmaps/select_all.xpm
A	pixmaps/sequence_track.xpm
A	pixmaps/sound.xpm
A	pixmaps/unselect_all.xpm
A	po/ChangeLog
A	po/Makefile.in.in
A	po/Makefile.mingw
A	po/POTFILES.in
A	po/bg.gmo
A	po/bg.po
A	po/cs.gmo
A	po/cs.po
A	po/da.gmo
A	po/da.po
A	po/de.gmo
A	po/de.po
A	po/easytag.pot
A	po/el.gmo
A	po/el.po
A	po/es.gmo
A	po/es.po
A	po/fr.gmo
A	po/fr.po
A	po/he.gmo
A	po/he.po
A	po/hu.gmo
A	po/hu.po
A	po/it.gmo
A	po/it.po
A	po/ja.gmo
A	po/ja.po
A	po/nl.gmo
A	po/nl.po
A	po/pl.gmo
A	po/pl.po
A	po/pt_BR.gmo
A	po/pt_BR.po
A	po/ro.gmo
A	po/ro.po
A	po/ru.gmo
A	po/ru.po
A	po/sv.gmo
A	po/sv.po
A	po/uk.gmo
A	po/uk.po
A	po/zh_CN.gmo
A	po/zh_CN.po
A	src/Makefile.am
A	src/Makefile.in
A	src/Makefile.mingw
A	src/about.c
A	src/about.h
A	src/ape_tag.c
A	src/ape_tag.h
A	src/bar.c
A	src/bar.h
A	src/browser.c
A	src/browser.h
A	src/cddb.c
A	src/cddb.h
A	src/charset.c
A	src/charset.h
A	src/crc32.c
A	src/crc32.h
A	src/dlm.c
A	src/dlm.h
A	src/easytag.c
A	src/easytag.h
A	src/et_core.c
A	src/et_core.h
A	src/flac_header.c
A	src/flac_header.h
A	src/flac_tag.c
A	src/flac_tag.h
A	src/genres.h
A	src/id3_tag.c
A	src/id3_tag.h
A	src/id3lib/Makefile.am
A	src/id3lib/Makefile.in
A	src/id3lib/c_wrapper.cpp
A	src/id3lib/id3_bugfix.h
A	src/id3lib/patch_id3lib_3.8.3_UTF16_writing_bug.diff
A	src/id3v24_tag.c
A	src/libapetag/COPYING.LGPL
A	src/libapetag/Makefile.am
A	src/libapetag/Makefile.in
A	src/libapetag/README.apetag
A	src/libapetag/apetaglib.c
A	src/libapetag/apetaglib.h
A	src/libapetag/id3v2_read.c
A	src/libapetag/id3v2_read.h
A	src/libapetag/info_mac.c
A	src/libapetag/info_mac.h
A	src/libapetag/info_mpc.c
A	src/libapetag/info_mpc.h
A	src/libapetag/is_tag.c
A	src/libapetag/is_tag.h
A	src/libmpg123/Makefile.am
A	src/libmpg123/Makefile.in
A	src/libmpg123/README
A	src/libmpg123/common.c
A	src/libmpg123/dxhead.c
A	src/libmpg123/dxhead.h
A	src/libmpg123/getbits.c
A	src/libmpg123/getbits.h
A	src/libmpg123/huffman.h
A	src/libmpg123/l2tables.h
A	src/libmpg123/layer1.c
A	src/libmpg123/layer2.c
A	src/libmpg123/layer3.c
A	src/libmpg123/mpg123.c
A	src/libmpg123/mpg123.h
A	src/log.c
A	src/log.h
A	src/misc.c
A	src/misc.h
A	src/monkeyaudio_header.c
A	src/monkeyaudio_header.h
A	src/mp4_header.c
A	src/mp4_header.h
A	src/mp4_tag.c
A	src/mp4_tag.h
A	src/mpeg_header.c
A	src/mpeg_header.h
A	src/msgbox.c
A	src/msgbox.h
A	src/musepack_header.c
A	src/musepack_header.h
A	src/ogg_header.c
A	src/ogg_header.h
A	src/ogg_tag.c
A	src/ogg_tag.h
A	src/picture.c
A	src/picture.h
A	src/prefs.c
A	src/prefs.h
A	src/scan.c
A	src/scan.h
A	src/setting.c
A	src/setting.h
A	src/ui_manager.h
A	src/vcedit.c
A	src/vcedit.h
A	src/wavpack_header.c
A	src/wavpack_header.h
A	src/wavpack_tag.c
A	src/wavpack_tag.h
A	src/win32/easytag.rc
A	src/win32/resource.h
A	src/win32/win32dep.c
A	src/win32/win32dep.h
A	src/win32/win_easytag.c
