~jcowgill/ubuntu/trusty/easytag/bug-1295882

« back to all changes in this revision

Viewing changes to src/musepack_header.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2006-04-15 15:47:47 UTC
  • mfrom: (1.2.2 upstream) (3.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20060415154747-vr4eqoxwcrgs2ps1
* New upstream version:
  - New logo and icons,
  - Added ability to display all albums of an artist in the 'Artist / Album'
    view,
  - Added detection of the bugged version of id3lib when writting ID3 tag to 
    Unicode to inform the user (a patch for id3lib is supplied in package
    source),
  - For Ogg files, the field DESCRIPTION is also used for the comment,
  - Fixed stack corruption bugs in Fill Tag scanner,
  - Fixed loading disk number for FLAC tag,
  - Fixed error that displays MP3 files in red when no tag is present,
  - Fixed a crash in the CDDB window when getting tracks of a album,
  - Fixed playlist name bug when creating it in the parent directory,
  - Fixed manual CDDB search when using Squid,
  - Little fix for FLAC tags,
  - Fixed various bugs,
  - Russian translation updated,
  - Greek translation updated,
  - Spanish translation updated,
  - Japanese translation updated,
  - Czech translation updated,
  - Brazilian Portuguese translation updated
  - Danish translation updated,
  - Italian translation updated,
  - Hungarian translation updated,
  - German translation updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* musepack_header.c */
2
2
/*
3
3
 *  EasyTAG - Tag editor for MP3, Ogg Vorbis and MPC files
4
 
 *  Copyright (C) 2001-2003  Jerome Couderc <j.couderc@ifrance.com>
 
4
 *  Copyright (C) 2001-2003  Jerome Couderc <easytag@gmail.com>
5
5
 *  Copyright (C) 2002-2003  Artur Polaczy�ski <artii@o2.pl>
6
6
 *
7
7
 *  This program is free software; you can redistribute it and/or modify
49
49
    if (info_mpc_read(filename, &Info))
50
50
    {
51
51
        gchar *filename_utf8 = filename_to_display(filename);
52
 
        fprintf(stderr,"File '%s' not found\n", filename_utf8);
 
52
        fprintf(stderr,"MPC header not found for file '%s'\n", filename_utf8);
53
53
        g_free(filename_utf8);
54
54
        return FALSE;
55
55
    }