diff --git a/AUTHORS b/AUTHORS index 72a4329..b903396 100644 --- a/AUTHORS +++ b/AUTHORS @@ -5,4 +5,5 @@ Copyright: (C) 2024 Gianluca Pernigotto Contributors: @jeanslack (Gianluca Pernigotto) @tsweet (Tim Sweet) +@alecchangod (Alec Chan) diff --git a/CHANGELOG b/CHANGELOG index ce8c4fd..dbe8098 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,10 @@ +--------------------------------+ -January 06 2024 Version 1.0.23 +January 07 2024 Version 1.0.23 +--------------------------------+ - Updated year and description. +- Fix `ValueError` when processing the tqdm progress bar (PR #34), + Thanks to @alecchangod . +--------------------------------+ February 06 2024 Version 1.0.22 diff --git a/README.md b/README.md index 35c8e34..f1f0b22 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,9 @@ Splits big audio tracks and automatically embeds tags using the information contained in the associated **"CUE"** sheet. It supports multiple CUE sheet encodings and many input formats (due to FFmpeg), including APE format, without need installing extra audio libs and packages. It has the ability to accept both -files and directories as input while also working in recursive mode. Can be used -both as a Python module and from command line. +files and directories as input while also working in recursive mode. It can be +used either as a [Python module](https://github.com/jeanslack/FFcuesplitter#using-python) +or from the [command line](https://github.com/jeanslack/FFcuesplitter#using-command-line). ## Features @@ -23,7 +24,7 @@ both as a Python module and from command line. - Auto-tag from CUE file data. - Features automatic character set detection for CUE files (via [chardet](https://pypi.org/project/chardet/)). - Works on Linux, MacOs, FreeBSD, Windows. -- Can be used both as a Python module and in command line mode. +- It can be used either as a Python module or from the command line. ## Requires @@ -92,7 +93,7 @@ and saves them in the `my_awesome_tracklist` directory. ## License and Copyright -Copyright (C) 2023 Gianluca Pernigotto -Author and Developer: Gianluca Pernigotto -Mail: -License: GPL3 (see LICENSE file in the source directory) +Copyright: (C) 2024 Gianluca Pernigotto +Author and Developer: Gianluca Pernigotto +Mail: +License: GPL3 (see LICENSE file in the source directory) diff --git a/ffcuesplitter/ffmpeg.py b/ffcuesplitter/ffmpeg.py index a39231a..c7a72d2 100644 --- a/ffcuesplitter/ffmpeg.py +++ b/ffcuesplitter/ffmpeg.py @@ -5,9 +5,9 @@ Compatibility: Python3 Platform: all platforms Author: Gianluca Pernigotto -Copyright: (C) 2023 Gianluca Pernigotto +Copyright: (C) 2024 Gianluca Pernigotto license: GPL3 -Rev: Feb 02 2023 +Rev: Jan 07 2024 Code checker: flake8, pylint ######################################################## diff --git a/ffcuesplitter/info.py b/ffcuesplitter/info.py index 35b05d6..eec8fb9 100644 --- a/ffcuesplitter/info.py +++ b/ffcuesplitter/info.py @@ -28,7 +28,7 @@ __maintainer_contact__ = "jeanlucperni@gmail.com" __copyleft__ = '2024' __version__ = '1.0.23' -__release__ = 'August 12 2023' +__release__ = 'January 09 2024' __appname__ = "FFcuesplitter" __packagename__ = "ffcuesplitter" __license__ = "GPL3 (Gnu Public License)" diff --git a/man/ffcuesplitter.1.gz b/man/ffcuesplitter.1.gz index cc0b71b..9416dfe 100644 Binary files a/man/ffcuesplitter.1.gz and b/man/ffcuesplitter.1.gz differ