mytunes-pro 1.8.8__py3-none-any.whl → 1.8.9__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 +11 -9
- {mytunes_pro-1.8.8.dist-info → mytunes_pro-1.8.9.dist-info}/METADATA +8 -4
- mytunes_pro-1.8.9.dist-info/RECORD +8 -0
- mytunes_pro-1.8.8.dist-info/RECORD +0 -8
- {mytunes_pro-1.8.8.dist-info → mytunes_pro-1.8.9.dist-info}/WHEEL +0 -0
- {mytunes_pro-1.8.8.dist-info → mytunes_pro-1.8.9.dist-info}/entry_points.txt +0 -0
- {mytunes_pro-1.8.8.dist-info → mytunes_pro-1.8.9.dist-info}/licenses/LICENSE +0 -0
- {mytunes_pro-1.8.8.dist-info → mytunes_pro-1.8.9.dist-info}/top_level.txt +0 -0
mytunes/app.py
CHANGED
|
@@ -35,7 +35,7 @@ MPV_SOCKET = "/tmp/mpv_socket"
|
|
|
35
35
|
LOG_FILE = "/tmp/mytunes_mpv.log"
|
|
36
36
|
PID_FILE = "/tmp/mytunes_mpv.pid"
|
|
37
37
|
APP_NAME = "MyTunes Pro"
|
|
38
|
-
APP_VERSION = "1.8.
|
|
38
|
+
APP_VERSION = "1.8.9"
|
|
39
39
|
|
|
40
40
|
# === [Strings & Localization] ===
|
|
41
41
|
STRINGS = {
|
|
@@ -767,6 +767,14 @@ class MyTunesApp:
|
|
|
767
767
|
|
|
768
768
|
# v1.8.6 - Force window size/position by isolating profile
|
|
769
769
|
temp_user_data = os.path.join(tempfile.gettempdir(), f"mytunes_v186_{int(time.time() / 10)}")
|
|
770
|
+
|
|
771
|
+
# v1.8.9 - Critical Fix for WSL: Convert Linux path to Windows path upstream
|
|
772
|
+
# This ensures both Direct Launch and Fallback methods receive the correct path.
|
|
773
|
+
if self.is_wsl():
|
|
774
|
+
try:
|
|
775
|
+
win_path = subprocess.check_output(['wslpath', '-w', temp_user_data], text=True).strip()
|
|
776
|
+
temp_user_data = win_path
|
|
777
|
+
except: pass
|
|
770
778
|
|
|
771
779
|
# Optimized Flag Set (Context7 Research)
|
|
772
780
|
flags = [
|
|
@@ -831,14 +839,8 @@ class MyTunesApp:
|
|
|
831
839
|
|
|
832
840
|
if not launched:
|
|
833
841
|
try:
|
|
834
|
-
# Fallback for WSL to CMD (
|
|
835
|
-
|
|
836
|
-
try:
|
|
837
|
-
# Use wslpath -w to convert /tmp/... to C:\Users\...
|
|
838
|
-
win_user_data = subprocess.check_output(['wslpath', '-w', temp_user_data], text=True).strip()
|
|
839
|
-
except: pass
|
|
840
|
-
|
|
841
|
-
subprocess.Popen(["cmd.exe", "/c", f"start chrome --app={live_url} --user-data-dir={win_user_data}"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, start_new_session=True)
|
|
842
|
+
# Fallback for WSL to CMD (path is already converted upstream)
|
|
843
|
+
subprocess.Popen(["cmd.exe", "/c", f"start chrome --app={live_url} --user-data-dir={temp_user_data}"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, start_new_session=True)
|
|
842
844
|
launched = True
|
|
843
845
|
except: pass
|
|
844
846
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mytunes-pro
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.9
|
|
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
|
|
@@ -19,7 +19,7 @@ Dynamic: license-file
|
|
|
19
19
|
|
|
20
20
|
# 🎵 MyTunes Pro (Korean)
|
|
21
21
|
|
|
22
|
-
**현대적인 CLI 유튜브 뮤직 플레이어 (v1.8.
|
|
22
|
+
**현대적인 CLI 유튜브 뮤직 플레이어 (v1.8.9)**
|
|
23
23
|
터미널 환경에서 **YouTube 음악을 검색하여 듣는** 가볍고 빠른 키보드 중심의 플레이어입니다.
|
|
24
24
|
한국어 입력 환경에서도 **숫자 키(1~5)**를 통해 지연 없는 쾌적한 조작이 가능합니다.
|
|
25
25
|
|
|
@@ -208,7 +208,7 @@ Windows 환경에서 한글 검색이 안 되거나 설치가 어려운 분들
|
|
|
208
208
|
|
|
209
209
|
# 🎵 MyTunes Pro (English)
|
|
210
210
|
|
|
211
|
-
**Modern CLI YouTube Music Player (v1.8.
|
|
211
|
+
**Modern CLI YouTube Music Player (v1.8.9)**
|
|
212
212
|
A lightweight, keyboard-centric terminal player for streaming YouTube music.
|
|
213
213
|
|
|
214
214
|
---
|
|
@@ -296,7 +296,11 @@ sudo apt install mpv python3 python3-pip pipx python3-venv -y
|
|
|
296
296
|
|
|
297
297
|
## 🔄 Changelog
|
|
298
298
|
|
|
299
|
-
### v1.8.
|
|
299
|
+
### v1.8.9 (Latest)
|
|
300
|
+
|
|
301
|
+
- **Robust WSL Path Fix**: Resolved an issue where direct browser launching (non-fallback) in WSL was still using Linux paths for the profile, causing "User Data Directory" creation errors. Path conversion is now applied globally before launch.
|
|
302
|
+
|
|
303
|
+
### v1.8.8
|
|
300
304
|
|
|
301
305
|
- **WSL Path Conversion**: Implemented `wslpath -w` logic to correctly convert Linux-style temp paths to Windows format when launching Chrome via `cmd.exe` on WSL.
|
|
302
306
|
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
mytunes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
mytunes/app.py,sha256=OVqw4T3uYy1ETB3_5hGaYTDq2QArGZaPhiH_qH01lj8,60822
|
|
3
|
+
mytunes_pro-1.8.9.dist-info/licenses/LICENSE,sha256=lOrP0EIjxcgJia__W3f3PVDZkRd2oRzFkyH2g3LRRCg,1063
|
|
4
|
+
mytunes_pro-1.8.9.dist-info/METADATA,sha256=zK6hWxwErUAlSv7WURqz7Gdq7Yi4N3QZvYNoHwGDVyM,18603
|
|
5
|
+
mytunes_pro-1.8.9.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
6
|
+
mytunes_pro-1.8.9.dist-info/entry_points.txt,sha256=6-MsC13nIgzLvrREaGotc32FgxHx_Iuu1z2qCzJs1_4,65
|
|
7
|
+
mytunes_pro-1.8.9.dist-info/top_level.txt,sha256=KWzdFyNNG_sO7GT83-sN5fYArP4_DL5I8HYIwgazXyY,8
|
|
8
|
+
mytunes_pro-1.8.9.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
mytunes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
mytunes/app.py,sha256=HnpXqxoAH5ROjq4FlkTWTN2Ah9x02MqPpZHbswdFIeI,60748
|
|
3
|
-
mytunes_pro-1.8.8.dist-info/licenses/LICENSE,sha256=lOrP0EIjxcgJia__W3f3PVDZkRd2oRzFkyH2g3LRRCg,1063
|
|
4
|
-
mytunes_pro-1.8.8.dist-info/METADATA,sha256=bVWXTAIs7YjsGJA-Qc8MFDEO-f08yDTOASBHRtSIvt4,18345
|
|
5
|
-
mytunes_pro-1.8.8.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
6
|
-
mytunes_pro-1.8.8.dist-info/entry_points.txt,sha256=6-MsC13nIgzLvrREaGotc32FgxHx_Iuu1z2qCzJs1_4,65
|
|
7
|
-
mytunes_pro-1.8.8.dist-info/top_level.txt,sha256=KWzdFyNNG_sO7GT83-sN5fYArP4_DL5I8HYIwgazXyY,8
|
|
8
|
-
mytunes_pro-1.8.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|