mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
2.0 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/rene/mp3info/hotfix.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2004 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. diff -urN mp3info-0.8.4-old/gmp3info.c mp3info-0.8.4-new/gmp3info.c
  20. --- mp3info-0.8.4-old/gmp3info.c 2001-07-16 11:17:16.000000000 +0200
  21. +++ mp3info-0.8.4-new/gmp3info.c 2003-09-08 05:22:37.000000000 +0200
  22. @@ -79,8 +79,6 @@
  23. mp3.id3.genre[0]=gget_genre(tmp);
  24. strcpy(tmp,gtk_entry_get_text(GTK_ENTRY(id3win_text_track)));
  25. mp3.id3.track[0]=atoi(tmp);
  26. - if (mp3.id3.track[0] > 255)
  27. - mp3.id3.track[0]=255;
  28. write_tag(&mp3);
  29. }
  30. @@ -484,12 +482,12 @@
  31. }
  32. void about_mp3info(void) {
  33. - quick_popup(VERSION,"MP3Info
  34. - An ID3 Tag Editor\n\n
  35. - Original author: Ricardo Cerqueira <rmc@plug.pt>
  36. - Current maintainer: Cedric Tefft <cedric@earthling.net>
  37. - GTK Version: Ricardo Cerqueira <rmc@plug.pt>\n\n
  38. - Ricardo Cerqueira, Cedric Tefft 1999-2001\n\n");
  39. + quick_popup(VERSION,"MP3Info\n"
  40. +" An ID3 Tag Editor\n\n\n"
  41. +" Original author: Ricardo Cerqueira <rmc@plug.pt>\n"
  42. +" Current maintainer: Cedric Tefft <cedric@earthling.net>\n"
  43. +" GTK Version: Ricardo Cerqueira <rmc@plug.pt>\n\n\n"
  44. +" Ricardo Cerqueira, Cedric Tefft 1999-2001\n\n");
  45. }
  46. /* rmcc has left the building */