Skip to content

Commit

Permalink
Merge pull request #44 from Jugran/development
Browse files Browse the repository at this point in the history
version 1.6.0
  • Loading branch information
Jugran authored Sep 15, 2024
2 parents 862c6a0 + 8c48ece commit 26e8a87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lyrics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

CONFIG_PATH = Path.home().joinpath('.config', 'lyrics-in-terminal', 'lyrics.cfg')

__version__ = '1.7.0-dev'
__version__ = '1.7.0'

if not CONFIG_PATH.exists():
from shutil import copy
Expand Down
2 changes: 1 addition & 1 deletion lyrics/lyrics.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ center=k
right=l

autoswitchtoggle=a
cycle-source=s
cycle-source=c

delete=d
edit=e
Expand Down
2 changes: 1 addition & 1 deletion lyrics/lyrics_in_terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def main():
from lyrics.track import Track

track = Track(artist=artist, title=title)
track.get_lyrics('google')
track.get_lyrics('any')

print(track.track_name)
print('-' * track.width, '\n')
Expand Down

0 comments on commit 26e8a87

Please sign in to comment.