-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
101 changed files
with
125 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
2021-03-11 Michael Herstine <[email protected]> | ||
|
||
Update boilerplate throughout. | ||
|
||
Adding a release Github workflow. | ||
This commit also adds a few utility scripts under 'admin'. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,7 +73,7 @@ scribbu can be invoked in a few ways: | |
|
||
#+BEGIN_EXAMPLE | ||
scribbu | ||
scribbu 0.6.15 | ||
scribbu 0.6.16 | ||
Copyright (C) 2017-2021 Michael Herstine <[email protected]> | ||
|
||
You are in the Guile REPL; in your shell, type `info scribbu' for documentation. | ||
|
@@ -263,7 +263,7 @@ You can find the project at https://github.com/sp1ff/scribbu. You can clone it b | |
* Installing | ||
|
||
scribbu is distributed as an Autotools source distribution, so installation is accomplished via the usual "configure, make, make install" incantations. General instructions may be found in [[INSTALL]]. MacOS support is | ||
experimental. | ||
experimental. | ||
|
||
Begining with 0.6, binary packages for Debian & Arch are also available. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# scribbu boilerplate as of release 0.6 -*- text -*- | ||
version: 0.6.15 | ||
version: 0.6.16 | ||
author: Michael Herstine | ||
email: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# -*- Autoconf -*- | ||
# Process this file with autoconf to produce a configure script. | ||
AC_PREREQ([2.69]) | ||
AC_INIT([scribbu], [0.6.15], [[email protected]], [scribbu], [https://github.com/sp1ff/scribbu]) | ||
AC_INIT([scribbu], [0.6.16], [[email protected]], [scribbu], [https://github.com/sp1ff/scribbu]) | ||
AC_CONFIG_MACRO_DIR([macros]) | ||
AC_CONFIG_SRCDIR([src/scribbu.cc]) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
|
@@ -52,6 +52,8 @@ AC_SEARCH_LIBS(ffi_call,ffi,AC_DEFINE([HAVE_FFI_CALL],[1], | |
|
||
# Checks for header files. | ||
AC_CHECK_HEADERS([arpa/inet.h]) | ||
AC_CHECK_HEADERS([libintl.h]) | ||
AC_CHECK_HEADERS([stddef.h]) | ||
|
||
# Checks for typedefs, structures, and compiler characteristics. | ||
AC_CHECK_HEADER_STDBOOL | ||
|
@@ -64,6 +66,7 @@ AC_CHECK_TYPES([ptrdiff_t]) | |
|
||
# Checks for library functions. | ||
AC_FUNC_ERROR_AT_LINE | ||
AC_FUNC_MALLOC | ||
AC_CHECK_FUNCS([memset strdup strerror]) | ||
|
||
GUILE_PKG([3.0 2.2 2.0]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.\" Copyright (C) 2018-2020 Michael Herstine <[email protected]> | ||
.\" Copyright (C) 2018-2021 Michael Herstine <[email protected]> | ||
.\" You may distribute this file under the terms of the GNU Free | ||
.\" Documentation License. | ||
.TH scribbu-dump 1 2020-05-25 "scribbu 0.6.1" "scribbu Manual" | ||
.TH scribbu-dump 1 2021-03-11 "scribbu 0.6.16" "scribbu Manual" | ||
.SH NAME | ||
scribbu-dump \- dump ID3 tags from one or more files | ||
.SH SYNOPSIS | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.\" Copyright (C) 2020 Michael Herstine <[email protected]> | ||
.\" Copyright (C) 2020-2021 Michael Herstine <[email protected]> | ||
.\" You may distribute this file under the terms of the GNU Free | ||
.\" Documentation License. | ||
.TH scribbu-genre 1 2020-05-25 "scribbu 0.6.1" "scribbu Manual" | ||
.TH scribbu-genre 1 2021-03-11 "scribbu 0.6.16" "scribbu Manual" | ||
.SH NAME | ||
scribbu genre \- Set the genre for one or more files | ||
.SH SYNOPSIS | ||
|
@@ -306,4 +306,4 @@ is maintained at https://github.com/sp1ff/scribbu. | |
|
||
.SH "SEE ALSO" | ||
|
||
.BR scribbu "(1), " scribbu-dump "(1), " scribbu-rename "(1), " scribbu-report "(1), " scribbu-split "(1), " scribbu-text "(1)" | ||
.BR scribbu "(1), " scribbu-dump "(1), " scribbu-popm "(1), " scribbu-rename "(1), " scribbu-report "(1), " scribbu-split "(1), " scribbu-text "(1)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.\" Copyright (C) 2019-2020 Michael Herstine <[email protected]> | ||
.\" Copyright (C) 2019-2021 Michael Herstine <[email protected]> | ||
.\" You may distribute this file under the terms of the GNU Free | ||
.\" Documentation License. | ||
.TH scribbu-popm 1 2020-05-25 "scribbu 0.6.1" "scribbu Manual" | ||
.TH scribbu-popm 1 2021-03-11 "scribbu 0.6.16" "scribbu Manual" | ||
.SH NAME | ||
scribbu popm \- Manage the play count and/or popularimeter ID3v2 tags | ||
.SH SYNOPSIS | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.\" Copyright (C) 2018-2020 Michael Herstine <[email protected]> | ||
.\" Copyright (C) 2018-2021 Michael Herstine <[email protected]> | ||
.\" You may distribute this file under the terms of the GNU Free | ||
.\" Documentation License. | ||
.TH scribbu-rename 1 2020-05-25 "scribbu 0.6.1" "scribbu Manual" | ||
.TH scribbu-rename 1 2021-03-11 "scribbu 0.6.16" "scribbu Manual" | ||
.SH NAME | ||
scribbu rename \- Rename files according to the ID3 tag attributes | ||
.SH SYNOPSIS | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.\" Copyright (C) 2018-2020 Michael Herstine <[email protected]> | ||
.\" Copyright (C) 2018-2021 Michael Herstine <[email protected]> | ||
.\" You may distribute this file under the terms of the GNU Free | ||
.\" Documentation License. | ||
.TH scribbu 1 2020-05-25 "scribbu 0.6.1" "scribbu Manual" | ||
.TH scribbu 1 2021-03-11 "scribbu 0.6.16" "scribbu Manual" | ||
.SH NAME | ||
scribbu-report \- generate a report on one or more files' ID3 tags | ||
.SH SYNOPSIS | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.\" Copyright (C) 2018-2020 Michael Herstine <[email protected]> | ||
.\" Copyright (C) 2018-2021 Michael Herstine <[email protected]> | ||
.\" You may distribute this file under the terms of the GNU Free | ||
.\" Documentation License. | ||
.TH scribbu 1 2020-05-25 "scribbu 0.6.1" "scribbu Manual" | ||
.TH scribbu 1 2021-03-11 "scribbu 0.6.16" "scribbu Manual" | ||
.SH NAME | ||
scribbu-split \- split a file into ID3v2, track & ID3v1 pieces | ||
.SH SYNOPSIS | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.\" Copyright (C) 2019-2020 Michael Herstine <[email protected]> | ||
.\" Copyright (C) 2019-2021 Michael Herstine <[email protected]> | ||
.\" You may distribute this file under the terms of the GNU Free | ||
.\" Documentation License. | ||
.TH scribbu-text 1 2020-05-25 "scribbu 0.6.1" "scribbu Manual" | ||
.TH scribbu-text 1 2021-03-11 "scribbu 0.6.16" "scribbu Manual" | ||
.SH NAME | ||
scribbu-text \- Manage ID3v2 text frames | ||
.SH SYNOPSIS | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.\" Copyright (C) 2018-2020 Michael Herstine <[email protected]> | ||
.\" Copyright (C) 2018-2021 Michael Herstine <[email protected]> | ||
.\" You may distribute this file under the terms of the GNU Free | ||
.\" Documentation License. | ||
.TH scribbu 1 2020-05-25 "scribbu 0.6.2" "scribbu Manual" | ||
.TH scribbu 1 2021-03-11 "scribbu 0.6.16" "scribbu Manual" | ||
.SH NAME | ||
scribbu \- The extensible tool for tagging your music collection | ||
.SH SYNOPSIS | ||
|
@@ -213,4 +213,4 @@ is maintained at https://github.com/sp1ff/scribbu. | |
|
||
.SH "SEE ALSO" | ||
|
||
.BR scribbu-dump "(1), " scribbu-genre "(1), " scribbu-popm "(1), " scribbu-rename "(1), " scribbu-report "(1), " scribbu-split "(1), " scribbu-text "(1), " scribbu-genre "(1)" | ||
.BR scribbu-dump "(1), " scribbu-genre "(1), " scribbu-popm "(1), " scribbu-rename "(1), " scribbu-report "(1), " scribbu-split "(1), " scribbu-text "(1)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@set UPDATED 11 March 2021 | ||
@set UPDATED-MONTH March 2021 | ||
@set EDITION 0.6.16 | ||
@set VERSION 0.6.16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;;; scribbu.scm --- Scheme modules for scribbu | ||
|
||
;;;; Copyright (C) 2019-2020 Michael Herstine <[email protected]> | ||
;;;; Copyright (C) 2019-2021 Michael Herstine <[email protected]> | ||
|
||
;;;; Author: Michael Herstine <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file charsets.cc | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file charsets.hh | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file csv-pprinter.cc | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file csv-pprinter.hh | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file dynwind-context.cc | ||
* | ||
* Copyright (C) 2019-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2019-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file dynwind-context.hh | ||
* | ||
* Copyright (C) 2019-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2019-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file errors.hh | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file framesv2.cc | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file framesv2.hh | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file framesv22.cc | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file framesv22.hh | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file framesv23.cc | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file framesv23.hh | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file framesv24.cc | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file framesv24.hh | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file id3v1.cc | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file id3v1.hh | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file id3v2-utils.cc | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file id3v2-utils.hh | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file id3v2.cc | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* \file id3v2.hh | ||
* | ||
* Copyright (C) 2015-2020 Michael Herstine <[email protected]> | ||
* Copyright (C) 2015-2021 Michael Herstine <[email protected]> | ||
* | ||
* This file is part of scribbu. | ||
* | ||
|
Oops, something went wrong.