mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-06 19:25:34 +00:00
remove traces of telemetry configs and update changelog.md
This commit is contained in:
parent
cad0651f5e
commit
49fcb349bd
25
.github/changelog.md
vendored
25
.github/changelog.md
vendored
@ -1,10 +1,23 @@
|
|||||||
`v1.3.1` is a patch release to fix issue #149
|
This version adds a few new features and minor bug fixes.
|
||||||
|
|
||||||
# Bug fix
|
# What's new?
|
||||||
✅ `ValueError: Decompressed Data Too Large` error when processing images with large album covers.
|
|
||||||
|
|
||||||
---
|
1. Synced lyrics support #126
|
||||||
|
2. Lyrics finder plugin (experimental)
|
||||||
|
3. Context option to search artist or album on streaming platforms
|
||||||
|
|
||||||
_See [changelog for `v1.3.0`](https://github.com/swing-opensource/swingmusic/releases/tag/v1.3.0) for all main changes since `v1.2.0`._
|
### Lyrics support
|
||||||
|
|
||||||
Have fun!
|
You can now sing along your music with the new lyrics feature. Click the lyrics button in the bottom bar to view lyrics.
|
||||||
|
|
||||||
|
### Lyrics finder plugin
|
||||||
|
|
||||||
|
This experimental will find synced lyrics for you. Go to `settings > plugins` to start using it. When lyrics are found, they will be saved to a lrc file in the same directory as the playing track.
|
||||||
|
|
||||||
|
# Bug fixes
|
||||||
|
1. Blank page on safari #155
|
||||||
|
2. Telemetry has been removed #153
|
||||||
|
3. Seeking before playing will maintain the position when playback starts
|
||||||
|
4. A forgotten few
|
||||||
|
|
||||||
|
_PS: I also attempted to add a cool fullscreen standby view, but I couldn't animate the images when going to the next/prev track, so I ditched it_
|
||||||
|
@ -45,7 +45,6 @@ class HandleArgs:
|
|||||||
|
|
||||||
config_keys = [
|
config_keys = [
|
||||||
"LASTFM_API_KEY",
|
"LASTFM_API_KEY",
|
||||||
"POSTHOG_API_KEY",
|
|
||||||
"PLUGIN_LYRICS_AUTHORITY",
|
"PLUGIN_LYRICS_AUTHORITY",
|
||||||
"PLUGIN_LYRICS_ROOT_URL",
|
"PLUGIN_LYRICS_ROOT_URL",
|
||||||
]
|
]
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
LASTFM_API_KEY = ""
|
LASTFM_API_KEY = ""
|
||||||
POSTHOG_API_KEY = ""
|
|
||||||
PLUGIN_LYRICS_AUTHORITY = ""
|
PLUGIN_LYRICS_AUTHORITY = ""
|
||||||
PLUGIN_LYRICS_ROOT_URL = ""
|
PLUGIN_LYRICS_ROOT_URL = ""
|
||||||
|
@ -16,7 +16,7 @@ else:
|
|||||||
|
|
||||||
|
|
||||||
class Release:
|
class Release:
|
||||||
APP_VERSION = "1.3.0"
|
APP_VERSION = "1.4.0"
|
||||||
|
|
||||||
|
|
||||||
class Paths:
|
class Paths:
|
||||||
@ -240,7 +240,6 @@ class TCOLOR:
|
|||||||
class Keys:
|
class Keys:
|
||||||
# get last fm api key from os environment
|
# get last fm api key from os environment
|
||||||
LASTFM_API_KEY = os.environ.get("LASTFM_API_KEY")
|
LASTFM_API_KEY = os.environ.get("LASTFM_API_KEY")
|
||||||
POSTHOG_API_KEY = os.environ.get("POSTHOG_API_KEY")
|
|
||||||
PLUGIN_LYRICS_AUTHORITY = os.environ.get("PLUGIN_LYRICS_AUTHORITY")
|
PLUGIN_LYRICS_AUTHORITY = os.environ.get("PLUGIN_LYRICS_AUTHORITY")
|
||||||
PLUGIN_LYRICS_ROOT_URL = os.environ.get("PLUGIN_LYRICS_ROOT_URL")
|
PLUGIN_LYRICS_ROOT_URL = os.environ.get("PLUGIN_LYRICS_ROOT_URL")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user