Commit Graph

251 Commits

Author SHA1 Message Date
Svend Sorensen c1bffa87a7 Merge pull request #13 from qqroach/master
Fix build with automake-1.12.
2013-10-14 16:52:21 -07:00
Horváth Balázs 761eba5b9b Fix build with automake-1.12. 2013-10-15 01:17:52 +02:00
Svend Sorensen bbc385474f Release 1.4.0 2013-08-16 13:42:44 -07:00
Svend Sorensen c0bde69d01 Add empty entry for version 1.4.0 in NEWS 2013-08-16 13:41:49 -07:00
Svend Sorensen 7891a29fca Remove white space on empty lines 2013-08-16 13:28:11 -07:00
Svend Sorensen 017f86aef1 Merge pull request #10 from svend/t_whitespace
Cleanup whitespace
2013-08-16 13:15:39 -07:00
Svend Sorensen 6f87df51d2 Merge pull request #9 from svend/t_autoconf
Rewrite configure.ac
2013-08-16 13:15:03 -07:00
Svend Sorensen 92c8aebcdb Cleanup whitespace 2013-08-16 13:12:09 -07:00
Svend Sorensen 3954b8c27f Rewrite configure.ac
Use example from automake manual:

AC_INIT([amhello], [1.0], [bug-automake@gnu.org])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
 Makefile
 src/Makefile
])
AC_OUTPUT
2013-08-16 13:08:29 -07:00
Svend Sorensen dc3218eb3a Merge pull request #8 from graysky2/master
Fix deprecated metaflac options
2013-08-16 13:03:01 -07:00
Svend Sorensen 13f38bc813 Update README to show new website on GitHub 2013-08-16 12:55:30 -07:00
Svend Sorensen 25d4acc24b Add current year to "Copyright" comments 2013-08-16 12:53:34 -07:00
Svend Sorensen 40c98fdee9 Update author's email address 2013-08-16 12:47:00 -07:00
graysky d594a2d375 added --remove-all-tags 2013-08-16 15:25:06 -04:00
graysky 21c1499263 Fix deprecated metaflac options 2013-07-31 16:25:45 -04:00
Svend Sorensen ac28bb8cd8 Merge pull request #7 from onlyjob/my-fixes
Fixes and improvements from Debian
2013-07-08 10:48:14 -07:00
Svend Sorensen 79ef094527 Merge pull request #4 from onlyjob/my-manpages
minor man pages corrections (Debian #669675) + cuetag.1
2013-07-08 10:47:54 -07:00
Dmitry Smirnov 88ad4f9735 added man page: cuetag.1 2013-07-05 19:05:40 +10:00
Dmitry Smirnov e74f095fe1 fix handling of cuesheets with 99 tracks (Debian #658818)
There's an off-by-one error in cd.c which causes cueprint to wrongly reject
 cuesheets with 99 tracks.  Its actual limit is 98 tracks, and yet as the
 source code notes, the Red Book audio standard permits 99 tracks per disc
 (and 99 indices per track).
 .
 When I looked into this, I saw that:
 .
 1) not only will the same error occur with index numbers, but
 2) the wrong preprocessor symbol is being expanded when checking the index number

Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=658818
From: Branden Robinson <branden@debian.org>
Author: Dmitry Smirnov <onlyjob@member.fsf.org>
2013-07-05 17:50:02 +10:00
Dmitry Smirnov 6ef317d871 ability to specify field list (for Ogg/Flac), as well as specify field contents (Debian: #655078)
It allows to call `cuetag` like so:

    cuetag Björk-Volta.cue *.ogg ARTIST ALBUM TITLE YEAR=2007 GENRE=electronic TRACKNUMBER

 which accomplishes two things:

  1. it pre-selects the fields and specifies their order;

  2. it hardcodes two fields to specific values for all tracks.

 Since the field list is hardcoded for MP3, any fields specified on
 the command line are effectively ignored. This could probably be
 implemented better, but I do not care about MP3 at all.

Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=655078
From: martin f krafft <madduck@debian.org>
Author: Dmitry Smirnov <onlyjob@member.fsf.org>
2013-07-05 17:10:24 +10:00
Dmitry Smirnov 0c7f15be0b pad tracknumbers with leading zeroes (Debian #655079)
Ensures that tracknumbers are zero-padded to two digits.
That seems to be common usage.

Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=655079
From: martin f krafft <madduck@debian.org>
2013-07-05 16:41:19 +10:00
Dmitry Smirnov 60358afe3a minor man pages corrections (Debian #669675) 2013-07-05 15:44:43 +10:00
Dmitry Smirnov eb9bd4ff6c Use python-mutagen (mid3v2) or id3v2 instead of mp3info to tag (Debian: #676478)
This avoids truncating long titles/albums/etc.

Author: Felipe Sateler <fsateler@debian.org>
Reviewed-By: Dmitry Smirnov <onlyjob@member.fsf.org>
Thanks-To: Rogério Brito.
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=676478

 * Look for `mid3v2` first and fallback to `id3v2` according to their availability.
 * Added error message if neither of them found.
2013-07-05 15:40:44 +10:00
Dmitry Smirnov 521b7552de cueprint: use the correct type format string 2013-07-05 15:40:44 +10:00
Dmitry Smirnov efd39b282e X<Y<Z doesn't has the mathematical meaning in C. Replace with X<Y && Y<Z.
Thanks, Felipe Sateler <fsateler@debian.org>
2013-07-05 15:40:40 +10:00
Dmitry Smirnov 92980fd399 fix "Buffer overflow detected" in cueconvert (Debian #576367) 2013-07-05 15:40:39 +10:00
Dmitry Smirnov 26b7d5295f replaces confusing error message at comparing the file suffix (Debian #499445) 2013-07-05 15:40:39 +10:00
Dmitry Smirnov 3949cccc45 fix cli parameters for metaflac 2013-07-05 15:40:31 +10:00
Dmitry Smirnov 0b6ea663eb fix processing of filenames containing spaces 2013-07-05 15:40:21 +10:00
Svend Sorensen da68f9bb9b Update copyright date. 2007-12-12 19:43:36 +00:00
Svend Sorensen 00764bc468 Removed space between functions and opening (. 2006-06-01 00:07:44 +00:00
Svend Sorensen 01eb4f7a16 Added short comments. 2006-05-15 19:29:25 +00:00
Svend Sorensen 25b65cadfb Idomatic change to main's argv. 2006-05-15 19:24:05 +00:00
Svend Sorensen 0187210b4d Added space after =. 2006-05-15 17:28:17 +00:00
Svend Sorensen 3671943a31 Added NEWS items regarding version option and application of the Debian patch. 2006-03-01 20:52:23 +00:00
Svend Sorensen 3371db447b More comment cleanups. 2006-03-01 20:10:26 +00:00
Svend Sorensen 75d0e4cc11 Add comments to preprocessor directives per GNU coding standards. 2006-03-01 20:04:43 +00:00
Svend Sorensen 4cd9c91d9c Shortened long lines.
Added error: tag to error message.
Corrected output file format error message.
2006-03-01 19:55:51 +00:00
Svend Sorensen 61e4f0c66e Default PACAKGE_STRING was incorrect for cueconvert and cueprint. 2006-03-01 19:42:38 +00:00
Svend Sorensen a3149234c1 Modified the usage output to mimic GNU applications output. 2006-03-01 19:39:02 +00:00
Svend Sorensen 06448a1021 Imported cueprint fixes and improvements from Branden Robinson's Debian patch. 2006-03-01 01:18:24 +00:00
Svend Sorensen 68f2e31068 Reworded comment. 2006-03-01 01:03:25 +00:00
Svend Sorensen 88949994ea Imported cueconvert fixes and improvements from Debian's patch. 2006-03-01 00:43:44 +00:00
Svend Sorensen 65c192e582 Imported cuebreakpoints fixes and improvements from Debian's patch. 2006-03-01 00:33:38 +00:00
Svend Sorensen 5757bdc0e4 Added short options to man pages. 2006-02-28 23:58:32 +00:00
Svend Sorensen 3de40eb247 Imported man page fixes and improvements from Debian's patch. 2006-02-28 23:09:07 +00:00
Svend Sorensen e2326e5db6 Standardize multiline comment blocks. 2006-02-23 22:45:55 +00:00
Svend Sorensen 156b19d0a9 Fixed type for getopt_long return value. 2006-02-23 22:27:47 +00:00
Svend Sorensen 43f3a89dec Removed test for zero pregap breakpoint from append mode. 2006-02-14 22:23:54 +00:00
Svend Sorensen 4897183eaa Updated copyright date for new year. 2006-02-14 21:43:17 +00:00