mytunes-pro 2.1.0__py3-none-any.whl → 2.1.1__py3-none-any.whl
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.
- mytunes/app.py +17 -12
- {mytunes_pro-2.1.0.dist-info → mytunes_pro-2.1.1.dist-info}/METADATA +7 -3
- mytunes_pro-2.1.1.dist-info/RECORD +8 -0
- mytunes_pro-2.1.0.dist-info/RECORD +0 -8
- {mytunes_pro-2.1.0.dist-info → mytunes_pro-2.1.1.dist-info}/WHEEL +0 -0
- {mytunes_pro-2.1.0.dist-info → mytunes_pro-2.1.1.dist-info}/entry_points.txt +0 -0
- {mytunes_pro-2.1.0.dist-info → mytunes_pro-2.1.1.dist-info}/licenses/LICENSE +0 -0
- {mytunes_pro-2.1.0.dist-info → mytunes_pro-2.1.1.dist-info}/top_level.txt +0 -0
mytunes/app.py
CHANGED
|
@@ -44,7 +44,7 @@ MPV_SOCKET = "/tmp/mpv_socket"
|
|
|
44
44
|
LOG_FILE = "/tmp/mytunes_mpv.log"
|
|
45
45
|
PID_FILE = "/tmp/mytunes_mpv.pid"
|
|
46
46
|
APP_NAME = "MyTunes Pro"
|
|
47
|
-
APP_VERSION = "2.1.
|
|
47
|
+
APP_VERSION = "2.1.1"
|
|
48
48
|
|
|
49
49
|
# Initial Locale Setup for WSL/Windows Multibyte/Emoji Harmony
|
|
50
50
|
try:
|
|
@@ -911,7 +911,10 @@ class MyTunesApp:
|
|
|
911
911
|
self.stop_on_exit = False; self.running = False
|
|
912
912
|
|
|
913
913
|
elif cmd == "CYCLE_EQ":
|
|
914
|
-
|
|
914
|
+
if IS_WSL:
|
|
915
|
+
self.show_feedback("⚠️ EQ is disabled on WSL for stability" if self.lang=="en" else "⚠️ WSL 안정성을 위해 EQ 기능이 비활성화되었습니다")
|
|
916
|
+
else:
|
|
917
|
+
self.cycle_equalizer()
|
|
915
918
|
|
|
916
919
|
elif isinstance(cmd, tuple) and cmd[0] == "UNKNOWN":
|
|
917
920
|
key = cmd[1]
|
|
@@ -1665,6 +1668,10 @@ class MyTunesApp:
|
|
|
1665
1668
|
|
|
1666
1669
|
# Row 2: Actions
|
|
1667
1670
|
r2 = self.t("header_r2")
|
|
1671
|
+
if IS_WSL:
|
|
1672
|
+
# Remove "[E]이퀄라이저" or "[E]EQ"
|
|
1673
|
+
r2 = r2.replace("[E]이퀄라이저 ", "").replace("[E]이퀄라이저", "").replace("[E]EQ ", "").replace("[E]EQ", "")
|
|
1674
|
+
|
|
1668
1675
|
gap2 = w - 4 - self.get_display_width(r2)
|
|
1669
1676
|
if gap2 < 2: gap2 = 2
|
|
1670
1677
|
line2 = f"{' '*gap2}{r2}"
|
|
@@ -1691,17 +1698,15 @@ class MyTunesApp:
|
|
|
1691
1698
|
status_icon = "❚❚" if self.is_paused else "▶"
|
|
1692
1699
|
|
|
1693
1700
|
# Prepare EQ Info for Title Line
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
else:
|
|
1702
|
-
eq_display = f"🎚 EQ: {current_eq}"
|
|
1701
|
+
eq_display = ""
|
|
1702
|
+
if not IS_WSL:
|
|
1703
|
+
current_eq = EQUALIZER_KEYS[self.current_eq_index]
|
|
1704
|
+
if current_eq == "Auto":
|
|
1705
|
+
eq_display = f"🎚 Auto: {self.auto_preset_name}"
|
|
1706
|
+
else:
|
|
1707
|
+
eq_display = f"🎚 EQ: {current_eq}"
|
|
1703
1708
|
|
|
1704
|
-
eq_info = f" [{eq_display}]" # Right side content
|
|
1709
|
+
eq_info = f" [{eq_display}]" if eq_display else "" # Right side content
|
|
1705
1710
|
|
|
1706
1711
|
# Calculate space for Title
|
|
1707
1712
|
# Total Width - margins(2) - Icon(2) - Space(1) - EQ Info - Branding(Maybe separate line, but here we just need fit)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mytunes-pro
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.1
|
|
4
4
|
Summary: A lightweight, keyboard-centric terminal player for streaming YouTube music.
|
|
5
5
|
Author-email: loxo <loxo5432@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/postgresql-co-kr/mytunes
|
|
@@ -18,9 +18,9 @@ Requires-Dist: yt-dlp
|
|
|
18
18
|
Requires-Dist: pusher
|
|
19
19
|
Dynamic: license-file
|
|
20
20
|
|
|
21
|
-
# 🎵 MyTunes Pro - Professional TUI Edition v2.1.
|
|
21
|
+
# 🎵 MyTunes Pro - Professional TUI Edition v2.1.1
|
|
22
22
|
|
|
23
|
-
## 🚀 Terminal-based Media Workflow Experiment v2.1.
|
|
23
|
+
## 🚀 Terminal-based Media Workflow Experiment v2.1.1
|
|
24
24
|
|
|
25
25
|
> [!IMPORTANT]
|
|
26
26
|
> **Legal Disclaimer:** This project is a personal, non-commercial research experiment for developer education.
|
|
@@ -390,6 +390,10 @@ Windows 환경에서 한글 검색이 안 되거나 설치가 어려운 분들
|
|
|
390
390
|
|
|
391
391
|
## 🔄 Changelog
|
|
392
392
|
|
|
393
|
+
### v2.1.1 (2026-02-02)
|
|
394
|
+
- **WSL UI Polish**: Hides Equalizer (EQ) labels and status in the TUI when running on WSL to avoid confusion, as the feature is disabled in that environment for stability.
|
|
395
|
+
- **Improved Feedback**: Provides a clear status message when the 'E' key is pressed on WSL.
|
|
396
|
+
|
|
393
397
|
### v2.1.0 (2026-02-02)
|
|
394
398
|
- **Zero-Freeze IPC Resilience**: Implemented a "Fast-Fail" mechanism that detects mpv process death within 0.1ms via `poll()`, preventing TUI freezes.
|
|
395
399
|
- **Fail-Early Polling**: Main loop now aborts all remaining IPC property checks immediately if any call fails, maintaining a smooth 5fps even on broken connections.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
mytunes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
mytunes/app.py,sha256=ns6bWufnE3ElzBbLHtlfdjjqlKJq2B-VnaQiJLmLcUk,84259
|
|
3
|
+
mytunes_pro-2.1.1.dist-info/licenses/LICENSE,sha256=lOrP0EIjxcgJia__W3f3PVDZkRd2oRzFkyH2g3LRRCg,1063
|
|
4
|
+
mytunes_pro-2.1.1.dist-info/METADATA,sha256=K7UsewSpojOy421P374Hye4Bhe96hwDxKCxQwJs9VSk,30046
|
|
5
|
+
mytunes_pro-2.1.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
6
|
+
mytunes_pro-2.1.1.dist-info/entry_points.txt,sha256=6-MsC13nIgzLvrREaGotc32FgxHx_Iuu1z2qCzJs1_4,65
|
|
7
|
+
mytunes_pro-2.1.1.dist-info/top_level.txt,sha256=KWzdFyNNG_sO7GT83-sN5fYArP4_DL5I8HYIwgazXyY,8
|
|
8
|
+
mytunes_pro-2.1.1.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
mytunes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
mytunes/app.py,sha256=h3HseVdqdM03G5AX1TGghi7rs5FVDxBcZeooXSiyd6U,83870
|
|
3
|
-
mytunes_pro-2.1.0.dist-info/licenses/LICENSE,sha256=lOrP0EIjxcgJia__W3f3PVDZkRd2oRzFkyH2g3LRRCg,1063
|
|
4
|
-
mytunes_pro-2.1.0.dist-info/METADATA,sha256=ieQwUOTyg6pfC2lBY6VHk_GE_-6JgG396xK_8ISh3l4,29755
|
|
5
|
-
mytunes_pro-2.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
6
|
-
mytunes_pro-2.1.0.dist-info/entry_points.txt,sha256=6-MsC13nIgzLvrREaGotc32FgxHx_Iuu1z2qCzJs1_4,65
|
|
7
|
-
mytunes_pro-2.1.0.dist-info/top_level.txt,sha256=KWzdFyNNG_sO7GT83-sN5fYArP4_DL5I8HYIwgazXyY,8
|
|
8
|
-
mytunes_pro-2.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|