-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Top tracks, unknown album covers, more prompt/input
- Loading branch information
Showing
9 changed files
with
194 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
- Option to skip `eog` | ||
- Option to prevent *any* prompting | ||
- Default collage name should be more telling (include type, period, etc) | ||
- Fallback option for using artist image in place of missing albums. | ||
- help strings | ||
- fail if image not found |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
from pathlib import Path | ||
from enum import Enum, auto | ||
from nicfit import getLogger | ||
from .__about__ import __version__ as version | ||
|
||
log = getLogger(__package__) | ||
CACHE_D = Path().home() / ".cache" / "TopFM" | ||
|
||
__all__ = ["log", "getLogger", "version", "CACHE_D"] | ||
|
||
|
||
class PromptMode(Enum): | ||
ON = auto() | ||
OFF = auto() | ||
FAIL = auto() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.