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.

53 lines
2.1 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 - 2003 Clifford Wolf
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. diff -urN mp3info-0.8.4-old/gmp3info.c mp3info-0.8.4-new/gmp3info.c
  23. --- mp3info-0.8.4-old/gmp3info.c 2001-07-16 11:17:16.000000000 +0200
  24. +++ mp3info-0.8.4-new/gmp3info.c 2003-09-08 05:22:37.000000000 +0200
  25. @@ -79,8 +79,6 @@
  26. mp3.id3.genre[0]=gget_genre(tmp);
  27. strcpy(tmp,gtk_entry_get_text(GTK_ENTRY(id3win_text_track)));
  28. mp3.id3.track[0]=atoi(tmp);
  29. - if (mp3.id3.track[0] > 255)
  30. - mp3.id3.track[0]=255;
  31. write_tag(&mp3);
  32. }
  33. @@ -484,12 +482,12 @@
  34. }
  35. void about_mp3info(void) {
  36. - quick_popup(VERSION,"MP3Info
  37. - An ID3 Tag Editor\n\n
  38. - Original author: Ricardo Cerqueira <rmc@plug.pt>
  39. - Current maintainer: Cedric Tefft <cedric@earthling.net>
  40. - GTK Version: Ricardo Cerqueira <rmc@plug.pt>\n\n
  41. - Ricardo Cerqueira, Cedric Tefft 1999-2001\n\n");
  42. + quick_popup(VERSION,"MP3Info\n"
  43. +" An ID3 Tag Editor\n\n\n"
  44. +" Original author: Ricardo Cerqueira <rmc@plug.pt>\n"
  45. +" Current maintainer: Cedric Tefft <cedric@earthling.net>\n"
  46. +" GTK Version: Ricardo Cerqueira <rmc@plug.pt>\n\n\n"
  47. +" Ricardo Cerqueira, Cedric Tefft 1999-2001\n\n");
  48. }
  49. /* rmcc has left the building */