All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project attempts to adhere to Semantic Versioning.
- Windows Support
- the script now has tests! I'll still add some more tests
- the structure of the code to make it easier to read and test. Far from perfect -- more work still needs to be done.
- switched from
argparse
toClick
for the CLI - the
BIBLE_DIRECTORY
can now be specified through the CLI as an argument, but a default one is provided
- the codebase from
python2
topython3
.
- the naming convention of files and directories by enforcing a 3-digit number by padding with zeroes using the
zfill()
function. This was done because I noticed that when I was creating a one week playlist from day 96 to 102;day100
was considered as occuring beforeday96
during processing, which isn't the case. This is because of the1
after theday
. Thus, to fix the problem, we need to haveday096
instead ofday96
.
- the ability to change ID3 tag info in the copied files, so that whenever you play the files from any device (eg car, home theatre), the desired order is maintained.
- the ability to rename the files so that their sequence follows the desired reading plan order, instead of the order of appearance in the Bible. Key Modules: eyed3, os.rename
- the ability to copy (using shutil) the files on the playlist file into a new folder so that you can carry the folder and listen anywhere (car, home theatre, etc).
- Initial version