diff src/track/constants.cc @ 83:d02fdf1d6708

*: huuuge update 1. make the now playing page function correctly 2. de-constructorfy many of our custom widgets, allowing them to be changed on-the-fly from the Now Playing page 3. ... :)
author Paper <mrpapersonic@gmail.com>
date Tue, 24 Oct 2023 22:01:02 -0400
parents 8b65c417c225
children 18979b066284
line wrap: on
line diff
--- a/src/track/constants.cc	Mon Oct 23 13:37:42 2023 -0400
+++ b/src/track/constants.cc	Tue Oct 24 22:01:02 2023 -0400
@@ -1,5 +1,7 @@
 #include "track/constants.h"
 
+// clang-format off
+// https://github.com/llvm/llvm-project/issues/62676
 const std::vector<std::string> media_extensions = {
     "avi",
     "asf",
@@ -12,8 +14,9 @@
 #ifdef MACOSX
     "VLC"
 #elif WIN32
-    "vlc.exe", "mpc-hc.exe", "mpc-hc64.exe", "wmplayer.exe"
+    "vlc.exe", "mpc-hc.exe", "mpc-hc64.exe", "wmplayer.exe", "mpv.exe"
 #else // linux, unix, whatevs
     "vlc", "mpv", "mpc-qt"
 #endif
 };
+// clang-format on