mytunes-pro 1.7.5__py3-none-any.whl → 1.7.7__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 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.7.5"
38
+ APP_VERSION = "1.7.7"
39
39
 
40
40
  # === [Strings & Localization] ===
41
41
  STRINGS = {
@@ -819,16 +819,29 @@ class MyTunesApp:
819
819
  launched = True; break
820
820
  except: pass
821
821
 
822
- # 3. WSL (Run Windows Chrome via cmd.exe)
822
+ # 3. WSL (Run Windows Chrome via powershell.exe for robust quoting/paths)
823
823
  elif self.is_wsl():
824
- # In WSL, we use cmd.exe to start the browser. Window size flags work best when passed directly.
825
- # Note: user-data-dir is skipped in WSL for now as Windows can't see /tmp safely without complex path translation.
826
- wsl_flags = f"--app={live_url} --window-size=712,800 --window-position=100,100 --new-window --no-first-run --disable-extensions"
827
824
  try:
828
- subprocess.Popen(["cmd.exe", "/c", f"start chrome {wsl_flags}"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
825
+ # In WSL, use powershell to get a clean Windows-native launch.
826
+ # Start-Process handles the argument list much better than cmd.exe /c
827
+ # We use $env:TEMP to ensure a valid, writable Windows path.
828
+ ps_args = [
829
+ f'--app="{live_url}"',
830
+ '--window-size=712,800',
831
+ '--window-position=100,100',
832
+ '--user-data-dir=$env:TEMP\\mytunes_v177',
833
+ '--new-window',
834
+ '--no-first-run',
835
+ '--disable-extensions'
836
+ ]
837
+ # Join with commas for PowerShell -ArgumentList
838
+ arg_list = ",".join([f"'{a}'" for a in ps_args])
839
+ ps_command = f'Start-Process chrome -ArgumentList {arg_list}'
840
+
841
+ subprocess.Popen(["powershell.exe", "-NoProfile", "-Command", ps_command], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
829
842
  launched = True
830
843
  except:
831
- # Fallback to general start if chrome command fails
844
+ # Fallback to cmd.exe start
832
845
  try:
833
846
  subprocess.Popen(["cmd.exe", "/c", "start", live_url], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
834
847
  launched = True
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mytunes-pro
3
- Version: 1.7.5
3
+ Version: 1.7.7
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.7.5)**
22
+ **현대적인 CLI 유튜브 뮤직 플레이어 (v1.7.7)**
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.7.5)**
211
+ **Modern CLI YouTube Music Player (v1.7.7)**
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.7.5 (Latest)
299
+ ### v1.7.7 (Latest)
300
+
301
+ - **PowerShell Launch (WSL/Win)**: Switched to `powershell.exe` for launching browsers from WSL to ensure robust argument parsing and path handling.
302
+ - **Directory Fix**: Resolved "cannot read or write" error on Windows/WSL by utilizing `$env:TEMP` directly within a native shell context.
303
+ - **Reliable Sizing**: Guaranteed window size application by combining isolated profiles with PowerShell's superior process management.
304
+
305
+ ### v1.7.6
306
+
307
+ - **Isolated Browser Profile**: Guaranteed window sizing for the Live Station (F8) on Windows/WSL by forcing an isolated browser profile using the Windows `%TEMP%` directory.
308
+ - **WSL Path Translation**: Implemented automatic Windows temp path resolution in WSL to enable session persistence and profile isolation.
309
+
310
+ ### v1.7.5
300
311
 
301
312
  - **WSL Integration**: Fully optimized browser launch from WSL by utilizing `cmd.exe` to trigger native Windows browsers.
302
313
  - **F7 Windows Resolve**: Fixed an issue where YouTube (F7) wouldn't open in WSL environments.
@@ -0,0 +1,8 @@
1
+ mytunes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ mytunes/app.py,sha256=0_JHNuiBEQd_FemNQa8LucGkhKte72i1NVN6q_Jqkko,60895
3
+ mytunes_pro-1.7.7.dist-info/licenses/LICENSE,sha256=lOrP0EIjxcgJia__W3f3PVDZkRd2oRzFkyH2g3LRRCg,1063
4
+ mytunes_pro-1.7.7.dist-info/METADATA,sha256=5G92rHQnwBbBftKB9OIm3vWYeNYgKVQl73hQwWiFIBM,14306
5
+ mytunes_pro-1.7.7.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
6
+ mytunes_pro-1.7.7.dist-info/entry_points.txt,sha256=6-MsC13nIgzLvrREaGotc32FgxHx_Iuu1z2qCzJs1_4,65
7
+ mytunes_pro-1.7.7.dist-info/top_level.txt,sha256=KWzdFyNNG_sO7GT83-sN5fYArP4_DL5I8HYIwgazXyY,8
8
+ mytunes_pro-1.7.7.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- mytunes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- mytunes/app.py,sha256=2sLStqolIowxPL5Jk9_c8R00ojP7T_-oYdFNdCCjt_E,60373
3
- mytunes_pro-1.7.5.dist-info/licenses/LICENSE,sha256=lOrP0EIjxcgJia__W3f3PVDZkRd2oRzFkyH2g3LRRCg,1063
4
- mytunes_pro-1.7.5.dist-info/METADATA,sha256=CWyre9bjpR3l2dj4rQI_EZkO3nS3V5eKemeezwrf_1c,13542
5
- mytunes_pro-1.7.5.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
6
- mytunes_pro-1.7.5.dist-info/entry_points.txt,sha256=6-MsC13nIgzLvrREaGotc32FgxHx_Iuu1z2qCzJs1_4,65
7
- mytunes_pro-1.7.5.dist-info/top_level.txt,sha256=KWzdFyNNG_sO7GT83-sN5fYArP4_DL5I8HYIwgazXyY,8
8
- mytunes_pro-1.7.5.dist-info/RECORD,,