This repository has been archived by the owner on Oct 14, 2020. It is now read-only.
Releases: thebigmunch/google-music-scripts
Releases · thebigmunch/google-music-scripts
2.0.0
Added
- Configuration file.
- Ability to set option defaults in configuration file.
Changed
-
Filtering is now done through one option
-f, --filters
with different syntax and semantics.+field[value]
is the new syntax for an include filter condition.-field[value]
is the new syntax for an exclude filter condition.- Multiple filters can be set in one call.
- Multiple conditions can be chained in one filter.
- Values can still be valid Python regex.
- Matching is still done case-insensitively.
E.g:
gms download -f 'artist[Beck]+album[Guero]-title[E-Pro]'
would download all songs by Beck from the album Guero without E-Pro in the title.gms download -f 'artist[Beck]+album[Guero]-title[E-Pro]' -f 'artist[Daft Punk]'
would download all songs by Beck from the album Guero without E-Pro in the title
as well as all songs by Daft Punk.
Removed
- Legacy command entry points (gmupload, gmdownload, etc).
Use thegms
subcommands instead.