Skip to content

Commit 92dafff

Browse files
committed
release 0.82
1 parent d9b493a commit 92dafff

7 files changed

Lines changed: 23 additions & 8 deletions

File tree

CHANGES

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
Changelog for 'id3'.
22

3+
2026-163 (W24): ---------[v0.82]-----------
4+
setid3v2.cpp: fix error causing bad_alloc() when many files with large
5+
ID3v2 tags were being processed (esp. noticeable on 32-bit systems)
6+
id3v2.c: do the decent thing and introduce ul3/nbo3 for ID3v2.2
7+
8+
2026-126 (W19):
9+
fileops.c: fix compilation with gcc15 (by Xiangyan Sun)
10+
311
2024-012 (W02):
412
varexp.cpp: added ability to escape '[', '*' and '?' using a backslash in filenames
513
main.cpp: --no-glob also affects 'id3' and 'id3-v' commands

COPYING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2003, 2004, 2005, 2006, 2015, 2023 Marc R. Schoolderman.
1+
Copyright (c) 2003, 2004, 2005, 2006, 2015, 2023, 2026 Marc R. Schoolderman.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

FILES

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---------------------------------------------------------------
2-
| id3 mass tagger v0.81
2+
| id3 mass tagger v0.82
33
-------------------------------------------------------------
44

55
the contents of the DOS/Win32 binary distribution:
@@ -12,7 +12,7 @@ the contents of the DOS/Win32 binary distribution:
1212
id3.exe - program file
1313

1414
---------------------------------------------------------------
15-
| (c) squell 2003-2015 - copyright notice
15+
| (c) squell 2003-2026 - copyright notice
1616
-------------------------------------------------------------
1717

1818
All files in this package are copyrighted. This is NOT public domain software.

INSTALL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---------------------------------------------------------------
2-
| id3 mass tagger v0.81
2+
| id3 mass tagger v0.82
33
-------------------------------------------------------------
44

55
the contents of the source distribution:
@@ -50,7 +50,7 @@ the contents of the source distribution:
5050
bash/ - definitions for bash auto-completion
5151

5252
---------------------------------------------------------------
53-
| (c) squell 2003-2015 - copyright notice
53+
| (c) squell 2003-2026 - copyright notice
5454
-------------------------------------------------------------
5555

5656
All files in this package are copyrighted. This is NOT public domain software.

debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
id3mtag (0.82-1) unstable; urgency=low
2+
3+
* Fix bug causing memory allocation errors when dealing with many ID3v2 tags
4+
* Allow escaping of `[`, `*` and `?` in path specs
5+
6+
-- Marc R. Schoolderman <info@squell.net> Fri, 12 Jun 2026 15:30:00 +0100
7+
18
id3mtag (0.81-1) unstable; urgency=low
29

310
* All present tags are now updated by default (i.e. ID3v2, Lyrics3)

main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# include <windows.h>
2323
#endif
2424

25-
#define _version_ "0.81 (2023181)"
25+
#define _version_ "0.82 (2026163)"
2626

2727
/*
2828
@@ -54,7 +54,7 @@ static void Copyright()
5454
{
5555
// |=======================64 chars wide==========================|
5656
printf(
57-
"%s " _version_ ", Copyright (C) 2003, 04, 05, 06, 15, 23 Marc R. Schoolderman\n"
57+
"%s " _version_ ", Copyright (C) 2003, 04, 05, 06, 15, 23, 26 Marc R. Schoolderman\n"
5858
"This program comes with ABSOLUTELY NO WARRANTY.\n\n"
5959
"This is free software, and you are welcome to redistribute it\n"
6060
"under certain conditions; see the file named COPYING in the\n"

setid3v2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
/*
1414
15-
copyright (c) 2004, 2005, 2015 squell <info@squell.net>
15+
copyright (c) 2004, 2005, 2015, 2026 squell <info@squell.net>
1616
1717
use, modification, copying and distribution of this software is permitted
1818
under the conditions described in the file 'COPYING'.

0 commit comments

Comments
 (0)