spolyrics 1.3.2__tar.gz → 1.3.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: spolyrics
3
- Version: 1.3.2
3
+ Version: 1.3.3
4
4
  Summary: A minimalist, borderless, zero-delay synced lyrics miniplayer for Spotify on Windows.
5
5
  Author: SpoLyrics Team
6
6
  Requires-Python: >=3.8
@@ -2,7 +2,7 @@ from setuptools import setup
2
2
 
3
3
  setup(
4
4
  name='spolyrics',
5
- version='1.3.2',
5
+ version='1.3.3',
6
6
  description='A minimalist, borderless, zero-delay synced lyrics miniplayer for Spotify on Windows.',
7
7
  long_description=open('README.md', 'r', encoding='utf-8').read(),
8
8
  long_description_content_type='text/markdown',
@@ -10,7 +10,7 @@ setup(
10
10
  packages=['spolyrics'],
11
11
  entry_points={
12
12
  'gui_scripts': [
13
- 'spolyrics=spolyrics.__main__:main',
13
+ 'spolyrics=spolyrics.__main__:start_app',
14
14
  ],
15
15
  },
16
16
  python_requires='>=3.8',
@@ -26,7 +26,7 @@ from .assets import ICON_B64
26
26
  from tkinter import messagebox
27
27
  from winsdk.windows.media.control import GlobalSystemMediaTransportControlsSessionManager as MediaManager
28
28
 
29
- CURRENT_VERSION = "1.3.2"
29
+ CURRENT_VERSION = "1.3.3"
30
30
  CONFIG_PATH = os.path.join(os.environ.get("APPDATA", ""), "SpoLyrics", "config.json")
31
31
  APP_DIR = os.path.join(os.environ.get("APPDATA", ""), "SpoLyrics")
32
32
  os.makedirs(APP_DIR, exist_ok=True)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: spolyrics
3
- Version: 1.3.2
3
+ Version: 1.3.3
4
4
  Summary: A minimalist, borderless, zero-delay synced lyrics miniplayer for Spotify on Windows.
5
5
  Author: SpoLyrics Team
6
6
  Requires-Python: >=3.8
@@ -0,0 +1,2 @@
1
+ [gui_scripts]
2
+ spolyrics = spolyrics.__main__:start_app
@@ -1,2 +0,0 @@
1
- [gui_scripts]
2
- spolyrics = spolyrics.__main__:main
File without changes
File without changes
File without changes
File without changes