Skip to content

Commit

Permalink
chore: new minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoGuadrini committed Mar 7, 2023
1 parent 7cfce0d commit 3f649fd
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Release notes

## 1.6.0
Mar 07, 2023

- Add `-o` or `--orderby-name` cli argument: see issue #4
- Add `-O` or `--orderby-date` cli argument: see issue #4
- Add support for _'opus'_ file format: see issue #5
- Fix check playlist extension for _m3u8_ format
- Fix asterisk and dot char into include argument

## 1.5.0
Jan 13, 2023

Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ $ python setup.py install # for others
| -w | --windows | Windows style folder separator | |
| -v | --verbose | Enable verbosity (debug mode) | |
| -S | --split | Split playlist by directories | |
| -o | --orderby-name | Order playlist files by name | |
| -O | --orderby-date | Order playlist files by creation date | |

## Examples

Expand Down Expand Up @@ -139,6 +141,13 @@ $ python setup.py install # for others
...
```
15. Sort playlist files by name (`-o`) or by creation date (`-O`):
```bash
mkpl -d "new_collection" -r "my music.m3u" -o
mkpl -d "new_collection" -r "my music.m3u" -O
```
## Use it like Python module
`mkpl` can also be used as a Python module to customize your scripts.
Expand Down
2 changes: 1 addition & 1 deletion __info__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

"""Information variable used by modules on this package."""

__version__ = '1.5.0'
__version__ = '1.6.0'
__author__ = 'Matteo Guadrini'
__email__ = 'matteo.guadrini@hotmail.it'
__homepage__ = 'https://github.com/MatteoGuadrini/mkpl'
2 changes: 1 addition & 1 deletion mkpl.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# region globals
FILE_FORMAT = {'mp1', 'mp2', 'mp3', 'mp4', 'aac', 'ogg', 'wav', 'wma', 'm4a', 'aiff',
'avi', 'xvid', 'divx', 'mpeg', 'mpg', 'mov', 'wmv', 'flac', 'alac', 'opus'}
__version__ = '1.5.0'
__version__ = '1.6.0'


# endregion
Expand Down

0 comments on commit 3f649fd

Please sign in to comment.