mytunes-pro 1.8.0__py3-none-any.whl → 1.8.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 +9 -8
- {mytunes_pro-1.8.0.dist-info → mytunes_pro-1.8.1.dist-info}/METADATA +15 -4
- mytunes_pro-1.8.1.dist-info/RECORD +8 -0
- mytunes_pro-1.8.0.dist-info/RECORD +0 -8
- {mytunes_pro-1.8.0.dist-info → mytunes_pro-1.8.1.dist-info}/WHEEL +0 -0
- {mytunes_pro-1.8.0.dist-info → mytunes_pro-1.8.1.dist-info}/entry_points.txt +0 -0
- {mytunes_pro-1.8.0.dist-info → mytunes_pro-1.8.1.dist-info}/licenses/LICENSE +0 -0
- {mytunes_pro-1.8.0.dist-info → mytunes_pro-1.8.1.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.1"
|
|
39
39
|
|
|
40
40
|
# === [Strings & Localization] ===
|
|
41
41
|
STRINGS = {
|
|
@@ -809,10 +809,9 @@ class MyTunesApp:
|
|
|
809
809
|
os.path.join(os.environ.get('PROGRAMFILES(X86)', 'C:\\Program Files (x86)'), 'Microsoft\\Edge\\Application\\msedge.exe'),
|
|
810
810
|
os.path.join(os.environ.get('PROGRAMFILES', 'C:\\Program Files'), 'Microsoft\\Edge\\Application\\msedge.exe'),
|
|
811
811
|
]
|
|
812
|
-
#
|
|
813
|
-
# app mode + new-window + window-size is sufficient.
|
|
812
|
+
# v1.8.1 - Precise: No internal quotes around URL to avoid misparsing as literal parts of URI
|
|
814
813
|
win_flags = [
|
|
815
|
-
f'--app=
|
|
814
|
+
f'--app={live_url}',
|
|
816
815
|
'--window-size=712,800',
|
|
817
816
|
'--window-position=100,100',
|
|
818
817
|
'--new-window',
|
|
@@ -830,10 +829,12 @@ class MyTunesApp:
|
|
|
830
829
|
# 3. WSL (Run Windows Chrome via cmd.exe)
|
|
831
830
|
elif self.is_wsl():
|
|
832
831
|
try:
|
|
833
|
-
#
|
|
834
|
-
#
|
|
832
|
+
# v1.8.1 - Pure and Precise for WSL->CMD
|
|
833
|
+
# 1. No internal quotes for the URL (prevents "Empty URL" / navigation failure)
|
|
834
|
+
# 2. Use start "" chrome (Prevents 'start' from hijacking the first flag as a title)
|
|
835
|
+
# 3. Combined flags for maximum compatibility
|
|
835
836
|
c_args = [
|
|
836
|
-
f'--app
|
|
837
|
+
f'--app={live_url}',
|
|
837
838
|
'--window-size=712,800',
|
|
838
839
|
'--window-position=100,100',
|
|
839
840
|
'--new-window',
|
|
@@ -841,7 +842,7 @@ class MyTunesApp:
|
|
|
841
842
|
'--disable-extensions'
|
|
842
843
|
]
|
|
843
844
|
# Direct call to chrome via cmd start
|
|
844
|
-
full_cmd = f'start chrome {" ".join(c_args)}'
|
|
845
|
+
full_cmd = f'start "" chrome {" ".join(c_args)}'
|
|
845
846
|
subprocess.Popen(["cmd.exe", "/c", full_cmd], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
|
846
847
|
launched = True
|
|
847
848
|
except:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mytunes-pro
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.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
|
|
@@ -19,7 +19,7 @@ Dynamic: license-file
|
|
|
19
19
|
|
|
20
20
|
# 🎵 MyTunes Pro (Korean)
|
|
21
21
|
|
|
22
|
-
**현대적인 CLI 유튜브 뮤직 플레이어 (v1.
|
|
22
|
+
**현대적인 CLI 유튜브 뮤직 플레이어 (v1.8.1)**
|
|
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.
|
|
211
|
+
**Modern CLI YouTube Music Player (v1.8.1)**
|
|
212
212
|
A lightweight, keyboard-centric terminal player for streaming YouTube music.
|
|
213
213
|
|
|
214
214
|
---
|
|
@@ -296,7 +296,18 @@ sudo apt install mpv python3 python3-pip pipx python3-venv -y
|
|
|
296
296
|
|
|
297
297
|
## 🔄 Changelog
|
|
298
298
|
|
|
299
|
-
### v1.
|
|
299
|
+
### v1.8.1 (Latest)
|
|
300
|
+
|
|
301
|
+
- **Fixed App Mode (WSL/Win)**: Guaranteed the browser opens in a clean "App Mode" popup by fixing shell quoting issues in the launch command.
|
|
302
|
+
- **URL Resolution Fix**: Resolved the "Empty URL" bug on WSL/Windows by ensuring the `--app` flag is correctly parsed by the native Windows shell.
|
|
303
|
+
- **Reliable Popup UI**: Standardized on `start "" chrome` for WSL to ensure flags are never misidentified as window titles.
|
|
304
|
+
|
|
305
|
+
### v1.8.0
|
|
306
|
+
|
|
307
|
+
- **Stabilized Browser Launch (Windows/WSL)**: Completely removed the `--user-data-dir` flag for all Windows-based environments. This permanently resolves the "cannot read or write" directory errors while maintaining reliable 712x800 window sizing through pure app-mode flags.
|
|
308
|
+
- **Clean CMD Execution**: Simplified the WSL-to-Windows transition by using standard `cmd.exe` calls without complex path or variable expansion, ensuring consistent behavior across all systems.
|
|
309
|
+
|
|
310
|
+
### v1.7.9
|
|
300
311
|
|
|
301
312
|
- **Pure CMD-based Launch (WSL/Win)**: Final fix for WSL-to-Windows browser launch using `cmd.exe /c` with native `%LOCALAPPDATA%` expansion.
|
|
302
313
|
- **Directory Reliability**: Ensured Chrome data directory creation and access by using native Windows shell commands, eliminating the "cannot read or write" errors seen in v1.7.8.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
mytunes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
mytunes/app.py,sha256=cMlDP9j0M7AtoJtgCQiYDysG9TmoDknq-yZG3Th76Oc,60962
|
|
3
|
+
mytunes_pro-1.8.1.dist-info/licenses/LICENSE,sha256=lOrP0EIjxcgJia__W3f3PVDZkRd2oRzFkyH2g3LRRCg,1063
|
|
4
|
+
mytunes_pro-1.8.1.dist-info/METADATA,sha256=WMwanWpyV1OEIPMJJHgiHjSqZ0RhY9Yrf1NcOwjvqpw,16208
|
|
5
|
+
mytunes_pro-1.8.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
6
|
+
mytunes_pro-1.8.1.dist-info/entry_points.txt,sha256=6-MsC13nIgzLvrREaGotc32FgxHx_Iuu1z2qCzJs1_4,65
|
|
7
|
+
mytunes_pro-1.8.1.dist-info/top_level.txt,sha256=KWzdFyNNG_sO7GT83-sN5fYArP4_DL5I8HYIwgazXyY,8
|
|
8
|
+
mytunes_pro-1.8.1.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
mytunes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
mytunes/app.py,sha256=EBMpGbTzRmynKsNHk1P-5qKH43LZn6KHgRM1SVKKedQ,60855
|
|
3
|
-
mytunes_pro-1.8.0.dist-info/licenses/LICENSE,sha256=lOrP0EIjxcgJia__W3f3PVDZkRd2oRzFkyH2g3LRRCg,1063
|
|
4
|
-
mytunes_pro-1.8.0.dist-info/METADATA,sha256=ihPxSaFC7mLvJfJrIXqY6v55M3h8Qm2yts71GJuBjCg,15294
|
|
5
|
-
mytunes_pro-1.8.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
6
|
-
mytunes_pro-1.8.0.dist-info/entry_points.txt,sha256=6-MsC13nIgzLvrREaGotc32FgxHx_Iuu1z2qCzJs1_4,65
|
|
7
|
-
mytunes_pro-1.8.0.dist-info/top_level.txt,sha256=KWzdFyNNG_sO7GT83-sN5fYArP4_DL5I8HYIwgazXyY,8
|
|
8
|
-
mytunes_pro-1.8.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|