├── .clang-format ├── .clang-tidy ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── main.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json └── settings.json ├── BuildAndInstall.sh ├── CMakeLists.txt ├── CMakeModules ├── AppleConfiguration.cmake ├── CPackConfiguration.cmake ├── CPackGeneratedConfig.cmake.in ├── ClangTidy.cmake ├── CompilerFlags.cmake ├── CompleteBundle.cmake ├── CompleteBundleOSX.cmake.in ├── CompleteBundleWin.cmake.in ├── DependencyConfiguration.cmake ├── FetchDependencies.cmake ├── FindCEC.cmake ├── FindDL.cmake ├── FindGLES2.cmake ├── FindICU.cmake ├── FindIconv.cmake ├── FindMPV.cmake ├── FindSDL2.cmake ├── GetGitRevisionDescription.cmake ├── GetGitRevisionDescription.cmake.in ├── InputConfiguration.cmake ├── InstallLinuxDesktopFile.cmake ├── LinuxConfiguration.cmake ├── NameConfiguration.cmake ├── PlayerConfiguration.cmake ├── QtConfiguration.cmake ├── VersionConfiguration.cmake ├── Win32Configuration.cmake ├── WindowsInstaller.cmake └── utils.cmake ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bundle ├── osx │ ├── Info.plist.in │ ├── Konvergo.entitlements │ ├── WebEngine.entitlements │ └── jellyfin.icns └── win │ ├── Bundle.wxs │ ├── ControlPanel.wxi │ ├── Global.wxi │ ├── HyperlinkTheme.wxl │ ├── JMP.wxs │ ├── JellyfinExitDialog.wxs │ ├── JellyfinMediaPlayer-NoChromiumGPU.bat │ ├── Version.wxi.in │ ├── iconres.rc │ ├── jellyfin-chevron-85.png │ ├── jellyfin.ico │ ├── pms64x64.png │ ├── pmstheme.xml │ ├── progress-bar.png │ └── qt.conf ├── client-api.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── install ├── rules └── source │ ├── format │ └── options ├── deployment ├── Dockerfile.debian └── build.debian ├── external ├── CMakeLists.txt ├── HIDRemote │ ├── CMakeLists.txt │ ├── HIDRemote.h │ ├── HIDRemote.m │ ├── LICENSE.txt │ └── README.txt ├── letsmove │ ├── CMakeLists.txt │ ├── PFMoveApplication.h │ └── PFMoveApplication.m ├── mpvqt_export.h ├── mpvrenderer-wrapper.cpp ├── plistparser │ ├── CMakeLists.txt │ ├── LICENSE │ ├── plistparser.cpp │ ├── plistparser.h │ ├── plistserializer.cpp │ └── plistserializer.h └── qt-wayland-compat.h ├── for-web-developers.md ├── native ├── connectivityHelper.js ├── find-webclient.css ├── find-webclient.html ├── find-webclient.js ├── find-webclient.lang.js ├── jmpInputPlugin.js ├── jmpUpdatePlugin.js ├── logo.png ├── mpvAudioPlayer.js ├── mpvVideoPlayer.js └── nativeshell.js ├── resources ├── images │ ├── icon.png │ ├── icon.svg │ ├── splash.png │ └── splash.svg ├── inputmaps │ ├── LIRC.json │ ├── apple-media-keys.json │ ├── apple-remote.json │ ├── cec.json │ ├── dualshock4-usb.json │ ├── dualshock4-xbox-emulate.json │ ├── dualshock4.json │ ├── keyboard.json │ ├── roku.json │ ├── wiimote.json │ ├── xbox-controller-linux.json │ ├── xbox-controller-mac.json │ └── xbox-controller-windows.json ├── meta │ ├── com.github.iwalton3.jellyfin-media-player.appdata.xml │ └── com.github.iwalton3.jellyfin-media-player.desktop ├── misc │ └── licenses.txt ├── settings │ └── settings_description.json ├── sounds │ ├── Back.wav │ ├── Click.wav │ ├── Cursor.wav │ ├── Notify.wav │ ├── Out.wav │ └── Shutter.wav └── testmedia │ ├── README.txt │ ├── high_1920x1080.h264 │ ├── high_4096x2160.h264 │ └── high_4096x2304.h264 ├── scripts ├── WindowsSign.cmd ├── build-konvergo-qt.sh ├── build-qt-resources.py ├── build-windows.bat ├── compress.py ├── dump-syms.sh ├── dump_qt_symbols_osx.sh ├── fix-install-names.py ├── fix-webengine.py ├── install-dylibs.py └── make_mpv_lib.bat ├── src ├── CMakeLists.txt ├── KonvergoPCH.h ├── core │ ├── CMakeLists.txt │ ├── ComponentManager.cpp │ ├── ComponentManager.h │ ├── Globals.cpp │ ├── Globals.h │ ├── SignalManager.cpp │ ├── SignalManager.h │ ├── Version.cpp.in │ └── Version.h ├── display │ ├── CMakeLists.txt │ ├── DisplayComponent.cpp │ ├── DisplayComponent.h │ ├── DisplayManager.cpp │ ├── DisplayManager.h │ ├── dummy │ │ ├── CMakeLists.txt │ │ ├── DisplayManagerDummy.cpp │ │ └── DisplayManagerDummy.h │ ├── osx │ │ ├── CMakeLists.txt │ │ ├── DisplayManagerOSX.cpp │ │ └── DisplayManagerOSX.h │ ├── rpi │ │ ├── CMakeLists.txt │ │ ├── DisplayManagerRPI.cpp │ │ └── DisplayManagerRPI.h │ ├── win │ │ ├── CMakeLists.txt │ │ ├── DisplayManagerWin.cpp │ │ └── DisplayManagerWin.h │ └── x11 │ │ ├── CMakeLists.txt │ │ ├── DisplayManagerX11.cpp │ │ └── DisplayManagerX11.h ├── input │ ├── CMakeLists.txt │ ├── InputCEC.cpp │ ├── InputCEC.h │ ├── InputComponent.cpp │ ├── InputComponent.h │ ├── InputKeyboard.h │ ├── InputLIRC.cpp │ ├── InputLIRC.h │ ├── InputMapping.cpp │ ├── InputMapping.h │ ├── InputSDL.cpp │ ├── InputSDL.h │ ├── InputSocket.cpp │ ├── InputSocket.h │ └── apple │ │ ├── AppleRemoteDelegate.h │ │ ├── AppleRemoteDelegate.mm │ │ ├── CMakeLists.txt │ │ ├── InputAppleMediaKeys.h │ │ ├── InputAppleMediaKeys.mm │ │ ├── InputAppleRemote.h │ │ └── InputAppleRemote.mm ├── main.cpp ├── mpris │ ├── CMakeLists.txt │ ├── MprisComponent.cpp │ ├── MprisComponent.h │ ├── MprisPlayerAdaptor.cpp │ ├── MprisPlayerAdaptor.h │ ├── MprisRootAdaptor.cpp │ └── MprisRootAdaptor.h ├── player │ ├── CMakeLists.txt │ ├── CodecsComponent.cpp │ ├── CodecsComponent.h │ ├── MpvVideoItem.cpp │ ├── MpvVideoItem.h │ ├── OpenGLDetect.cpp │ ├── OpenGLDetect.h │ ├── PlayerComponent.cpp │ ├── PlayerComponent.h │ └── QtHelper.h ├── plugins │ └── RPI_jpeg │ │ ├── QRPIJpegHandler.cpp │ │ ├── QRPIJpegHandler.h │ │ ├── QRPIJpegPlugin.cpp │ │ ├── QRPIJpegPlugin.h │ │ ├── RPI_jpeg.pro │ │ ├── brcmjpeg.cpp │ │ ├── brcmjpeg.h │ │ └── jpeg.json ├── power │ ├── CMakeLists.txt │ ├── PowerComponent.cpp │ ├── PowerComponent.h │ ├── PowerComponentDBus.cpp │ ├── PowerComponentDBus.h │ ├── PowerComponentMac.cpp │ ├── PowerComponentMac.h │ ├── PowerComponentWin.cpp │ ├── PowerComponentWin.h │ ├── PowerComponentX11.cpp │ └── PowerComponentX11.h ├── settings │ ├── AudioSettingsController.cpp │ ├── AudioSettingsController.h │ ├── CMakeLists.txt │ ├── SettingsComponent.cpp │ ├── SettingsComponent.h │ ├── SettingsSection.cpp │ ├── SettingsSection.h │ └── SettingsValue.h ├── shared │ ├── CMakeLists.txt │ ├── LocalJsonClient.cpp │ ├── LocalJsonClient.h │ ├── LocalJsonServer.cpp │ ├── LocalJsonServer.h │ ├── Names.cpp.in │ ├── Names.h │ ├── Paths.cpp │ ├── Paths.h │ └── UniqueApplication.h ├── system │ ├── CMakeLists.txt │ ├── SystemComponent.cpp │ ├── SystemComponent.h │ └── openelec │ │ ├── CMakeLists.txt │ │ ├── OESystemComponent.cpp │ │ ├── OESystemComponent.h │ │ ├── SystemdManager.cpp │ │ └── SystemdManager.h ├── taskbar │ ├── CMakeLists.txt │ ├── TaskbarComponent.cpp │ ├── TaskbarComponent.h │ ├── TaskbarComponentWin.cpp │ └── TaskbarComponentWin.h ├── ui │ ├── CMakeLists.txt │ ├── ErrorMessage.cpp │ ├── ErrorMessage.h │ ├── EventFilter.cpp │ ├── EventFilter.h │ ├── WindowManager.cpp │ ├── WindowManager.h │ └── webview.qml └── utils │ ├── CMakeLists.txt │ ├── CachedRegexMatcher.cpp │ ├── CachedRegexMatcher.h │ ├── Log.cpp │ ├── Log.h │ ├── PlatformUtils.cpp │ ├── PlatformUtils.h │ ├── Utils.cpp │ ├── Utils.h │ ├── osx │ ├── CMakeLists.txt │ ├── OSXUtils.h │ └── OSXUtils.mm │ └── win │ ├── CMakeLists.txt │ ├── WinUtils.cpp │ └── WinUtils.h └── tests ├── CMakeLists.txt └── test_systemcomponent.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /BuildAndInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/BuildAndInstall.sh -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/AppleConfiguration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/AppleConfiguration.cmake -------------------------------------------------------------------------------- /CMakeModules/CPackConfiguration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/CPackConfiguration.cmake -------------------------------------------------------------------------------- /CMakeModules/CPackGeneratedConfig.cmake.in: -------------------------------------------------------------------------------- 1 | if(CPACK_GENERATOR MATCHES "IFW") 2 | set(CMAKE_EXECUTABLE_SUFFIX ".exe") 3 | endif() 4 | -------------------------------------------------------------------------------- /CMakeModules/ClangTidy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/ClangTidy.cmake -------------------------------------------------------------------------------- /CMakeModules/CompilerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/CompilerFlags.cmake -------------------------------------------------------------------------------- /CMakeModules/CompleteBundle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/CompleteBundle.cmake -------------------------------------------------------------------------------- /CMakeModules/CompleteBundleOSX.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/CompleteBundleOSX.cmake.in -------------------------------------------------------------------------------- /CMakeModules/CompleteBundleWin.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/CompleteBundleWin.cmake.in -------------------------------------------------------------------------------- /CMakeModules/DependencyConfiguration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/DependencyConfiguration.cmake -------------------------------------------------------------------------------- /CMakeModules/FetchDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/FetchDependencies.cmake -------------------------------------------------------------------------------- /CMakeModules/FindCEC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/FindCEC.cmake -------------------------------------------------------------------------------- /CMakeModules/FindDL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/FindDL.cmake -------------------------------------------------------------------------------- /CMakeModules/FindGLES2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/FindGLES2.cmake -------------------------------------------------------------------------------- /CMakeModules/FindICU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/FindICU.cmake -------------------------------------------------------------------------------- /CMakeModules/FindIconv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/FindIconv.cmake -------------------------------------------------------------------------------- /CMakeModules/FindMPV.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/FindMPV.cmake -------------------------------------------------------------------------------- /CMakeModules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/FindSDL2.cmake -------------------------------------------------------------------------------- /CMakeModules/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /CMakeModules/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /CMakeModules/InputConfiguration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/InputConfiguration.cmake -------------------------------------------------------------------------------- /CMakeModules/InstallLinuxDesktopFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/InstallLinuxDesktopFile.cmake -------------------------------------------------------------------------------- /CMakeModules/LinuxConfiguration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/LinuxConfiguration.cmake -------------------------------------------------------------------------------- /CMakeModules/NameConfiguration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/NameConfiguration.cmake -------------------------------------------------------------------------------- /CMakeModules/PlayerConfiguration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/PlayerConfiguration.cmake -------------------------------------------------------------------------------- /CMakeModules/QtConfiguration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/QtConfiguration.cmake -------------------------------------------------------------------------------- /CMakeModules/VersionConfiguration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/VersionConfiguration.cmake -------------------------------------------------------------------------------- /CMakeModules/Win32Configuration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/Win32Configuration.cmake -------------------------------------------------------------------------------- /CMakeModules/WindowsInstaller.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/WindowsInstaller.cmake -------------------------------------------------------------------------------- /CMakeModules/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CMakeModules/utils.cmake -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/README.md -------------------------------------------------------------------------------- /bundle/osx/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/osx/Info.plist.in -------------------------------------------------------------------------------- /bundle/osx/Konvergo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/osx/Konvergo.entitlements -------------------------------------------------------------------------------- /bundle/osx/WebEngine.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/osx/WebEngine.entitlements -------------------------------------------------------------------------------- /bundle/osx/jellyfin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/osx/jellyfin.icns -------------------------------------------------------------------------------- /bundle/win/Bundle.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/Bundle.wxs -------------------------------------------------------------------------------- /bundle/win/ControlPanel.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/ControlPanel.wxi -------------------------------------------------------------------------------- /bundle/win/Global.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/Global.wxi -------------------------------------------------------------------------------- /bundle/win/HyperlinkTheme.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/HyperlinkTheme.wxl -------------------------------------------------------------------------------- /bundle/win/JMP.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/JMP.wxs -------------------------------------------------------------------------------- /bundle/win/JellyfinExitDialog.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/JellyfinExitDialog.wxs -------------------------------------------------------------------------------- /bundle/win/JellyfinMediaPlayer-NoChromiumGPU.bat: -------------------------------------------------------------------------------- 1 | start "" "JellyfinMediaPlayer.exe" "--disable-gpu" -------------------------------------------------------------------------------- /bundle/win/Version.wxi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/Version.wxi.in -------------------------------------------------------------------------------- /bundle/win/iconres.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/iconres.rc -------------------------------------------------------------------------------- /bundle/win/jellyfin-chevron-85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/jellyfin-chevron-85.png -------------------------------------------------------------------------------- /bundle/win/jellyfin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/jellyfin.ico -------------------------------------------------------------------------------- /bundle/win/pms64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/pms64x64.png -------------------------------------------------------------------------------- /bundle/win/pmstheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/pmstheme.xml -------------------------------------------------------------------------------- /bundle/win/progress-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/progress-bar.png -------------------------------------------------------------------------------- /bundle/win/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/bundle/win/qt.conf -------------------------------------------------------------------------------- /client-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/client-api.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #! /usr/bin/make -f 2 | 3 | %: 4 | dh $@ -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/debian/source/options -------------------------------------------------------------------------------- /deployment/Dockerfile.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/deployment/Dockerfile.debian -------------------------------------------------------------------------------- /deployment/build.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/deployment/build.debian -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/HIDRemote/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/HIDRemote/CMakeLists.txt -------------------------------------------------------------------------------- /external/HIDRemote/HIDRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/HIDRemote/HIDRemote.h -------------------------------------------------------------------------------- /external/HIDRemote/HIDRemote.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/HIDRemote/HIDRemote.m -------------------------------------------------------------------------------- /external/HIDRemote/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/HIDRemote/LICENSE.txt -------------------------------------------------------------------------------- /external/HIDRemote/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/HIDRemote/README.txt -------------------------------------------------------------------------------- /external/letsmove/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/letsmove/CMakeLists.txt -------------------------------------------------------------------------------- /external/letsmove/PFMoveApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/letsmove/PFMoveApplication.h -------------------------------------------------------------------------------- /external/letsmove/PFMoveApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/letsmove/PFMoveApplication.m -------------------------------------------------------------------------------- /external/mpvqt_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/mpvqt_export.h -------------------------------------------------------------------------------- /external/mpvrenderer-wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/mpvrenderer-wrapper.cpp -------------------------------------------------------------------------------- /external/plistparser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/plistparser/CMakeLists.txt -------------------------------------------------------------------------------- /external/plistparser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/plistparser/LICENSE -------------------------------------------------------------------------------- /external/plistparser/plistparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/plistparser/plistparser.cpp -------------------------------------------------------------------------------- /external/plistparser/plistparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/plistparser/plistparser.h -------------------------------------------------------------------------------- /external/plistparser/plistserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/plistparser/plistserializer.cpp -------------------------------------------------------------------------------- /external/plistparser/plistserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/plistparser/plistserializer.h -------------------------------------------------------------------------------- /external/qt-wayland-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/external/qt-wayland-compat.h -------------------------------------------------------------------------------- /for-web-developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/for-web-developers.md -------------------------------------------------------------------------------- /native/connectivityHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/native/connectivityHelper.js -------------------------------------------------------------------------------- /native/find-webclient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/native/find-webclient.css -------------------------------------------------------------------------------- /native/find-webclient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/native/find-webclient.html -------------------------------------------------------------------------------- /native/find-webclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/native/find-webclient.js -------------------------------------------------------------------------------- /native/find-webclient.lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/native/find-webclient.lang.js -------------------------------------------------------------------------------- /native/jmpInputPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/native/jmpInputPlugin.js -------------------------------------------------------------------------------- /native/jmpUpdatePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/native/jmpUpdatePlugin.js -------------------------------------------------------------------------------- /native/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/native/logo.png -------------------------------------------------------------------------------- /native/mpvAudioPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/native/mpvAudioPlayer.js -------------------------------------------------------------------------------- /native/mpvVideoPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/native/mpvVideoPlayer.js -------------------------------------------------------------------------------- /native/nativeshell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/native/nativeshell.js -------------------------------------------------------------------------------- /resources/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/images/icon.png -------------------------------------------------------------------------------- /resources/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/images/icon.svg -------------------------------------------------------------------------------- /resources/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/images/splash.png -------------------------------------------------------------------------------- /resources/images/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/images/splash.svg -------------------------------------------------------------------------------- /resources/inputmaps/LIRC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/inputmaps/LIRC.json -------------------------------------------------------------------------------- /resources/inputmaps/apple-media-keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/inputmaps/apple-media-keys.json -------------------------------------------------------------------------------- /resources/inputmaps/apple-remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/inputmaps/apple-remote.json -------------------------------------------------------------------------------- /resources/inputmaps/cec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/inputmaps/cec.json -------------------------------------------------------------------------------- /resources/inputmaps/dualshock4-usb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/inputmaps/dualshock4-usb.json -------------------------------------------------------------------------------- /resources/inputmaps/dualshock4-xbox-emulate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/inputmaps/dualshock4-xbox-emulate.json -------------------------------------------------------------------------------- /resources/inputmaps/dualshock4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/inputmaps/dualshock4.json -------------------------------------------------------------------------------- /resources/inputmaps/keyboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/inputmaps/keyboard.json -------------------------------------------------------------------------------- /resources/inputmaps/roku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/inputmaps/roku.json -------------------------------------------------------------------------------- /resources/inputmaps/wiimote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/inputmaps/wiimote.json -------------------------------------------------------------------------------- /resources/inputmaps/xbox-controller-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/inputmaps/xbox-controller-linux.json -------------------------------------------------------------------------------- /resources/inputmaps/xbox-controller-mac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/inputmaps/xbox-controller-mac.json -------------------------------------------------------------------------------- /resources/inputmaps/xbox-controller-windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/inputmaps/xbox-controller-windows.json -------------------------------------------------------------------------------- /resources/meta/com.github.iwalton3.jellyfin-media-player.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/meta/com.github.iwalton3.jellyfin-media-player.appdata.xml -------------------------------------------------------------------------------- /resources/meta/com.github.iwalton3.jellyfin-media-player.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/meta/com.github.iwalton3.jellyfin-media-player.desktop -------------------------------------------------------------------------------- /resources/misc/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/misc/licenses.txt -------------------------------------------------------------------------------- /resources/settings/settings_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/settings/settings_description.json -------------------------------------------------------------------------------- /resources/sounds/Back.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/sounds/Back.wav -------------------------------------------------------------------------------- /resources/sounds/Click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/sounds/Click.wav -------------------------------------------------------------------------------- /resources/sounds/Cursor.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/sounds/Cursor.wav -------------------------------------------------------------------------------- /resources/sounds/Notify.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/sounds/Notify.wav -------------------------------------------------------------------------------- /resources/sounds/Out.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/sounds/Out.wav -------------------------------------------------------------------------------- /resources/sounds/Shutter.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/sounds/Shutter.wav -------------------------------------------------------------------------------- /resources/testmedia/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/testmedia/README.txt -------------------------------------------------------------------------------- /resources/testmedia/high_1920x1080.h264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/testmedia/high_1920x1080.h264 -------------------------------------------------------------------------------- /resources/testmedia/high_4096x2160.h264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/testmedia/high_4096x2160.h264 -------------------------------------------------------------------------------- /resources/testmedia/high_4096x2304.h264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/resources/testmedia/high_4096x2304.h264 -------------------------------------------------------------------------------- /scripts/WindowsSign.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/scripts/WindowsSign.cmd -------------------------------------------------------------------------------- /scripts/build-konvergo-qt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/scripts/build-konvergo-qt.sh -------------------------------------------------------------------------------- /scripts/build-qt-resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/scripts/build-qt-resources.py -------------------------------------------------------------------------------- /scripts/build-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/scripts/build-windows.bat -------------------------------------------------------------------------------- /scripts/compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/scripts/compress.py -------------------------------------------------------------------------------- /scripts/dump-syms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/scripts/dump-syms.sh -------------------------------------------------------------------------------- /scripts/dump_qt_symbols_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/scripts/dump_qt_symbols_osx.sh -------------------------------------------------------------------------------- /scripts/fix-install-names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/scripts/fix-install-names.py -------------------------------------------------------------------------------- /scripts/fix-webengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/scripts/fix-webengine.py -------------------------------------------------------------------------------- /scripts/install-dylibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/scripts/install-dylibs.py -------------------------------------------------------------------------------- /scripts/make_mpv_lib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/scripts/make_mpv_lib.bat -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/KonvergoPCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/KonvergoPCH.h -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/ComponentManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/core/ComponentManager.cpp -------------------------------------------------------------------------------- /src/core/ComponentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/core/ComponentManager.h -------------------------------------------------------------------------------- /src/core/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/core/Globals.cpp -------------------------------------------------------------------------------- /src/core/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/core/Globals.h -------------------------------------------------------------------------------- /src/core/SignalManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/core/SignalManager.cpp -------------------------------------------------------------------------------- /src/core/SignalManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/core/SignalManager.h -------------------------------------------------------------------------------- /src/core/Version.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/core/Version.cpp.in -------------------------------------------------------------------------------- /src/core/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/core/Version.h -------------------------------------------------------------------------------- /src/display/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/CMakeLists.txt -------------------------------------------------------------------------------- /src/display/DisplayComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/DisplayComponent.cpp -------------------------------------------------------------------------------- /src/display/DisplayComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/DisplayComponent.h -------------------------------------------------------------------------------- /src/display/DisplayManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/DisplayManager.cpp -------------------------------------------------------------------------------- /src/display/DisplayManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/DisplayManager.h -------------------------------------------------------------------------------- /src/display/dummy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/dummy/CMakeLists.txt -------------------------------------------------------------------------------- /src/display/dummy/DisplayManagerDummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/dummy/DisplayManagerDummy.cpp -------------------------------------------------------------------------------- /src/display/dummy/DisplayManagerDummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/dummy/DisplayManagerDummy.h -------------------------------------------------------------------------------- /src/display/osx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/osx/CMakeLists.txt -------------------------------------------------------------------------------- /src/display/osx/DisplayManagerOSX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/osx/DisplayManagerOSX.cpp -------------------------------------------------------------------------------- /src/display/osx/DisplayManagerOSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/osx/DisplayManagerOSX.h -------------------------------------------------------------------------------- /src/display/rpi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/rpi/CMakeLists.txt -------------------------------------------------------------------------------- /src/display/rpi/DisplayManagerRPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/rpi/DisplayManagerRPI.cpp -------------------------------------------------------------------------------- /src/display/rpi/DisplayManagerRPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/rpi/DisplayManagerRPI.h -------------------------------------------------------------------------------- /src/display/win/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/win/CMakeLists.txt -------------------------------------------------------------------------------- /src/display/win/DisplayManagerWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/win/DisplayManagerWin.cpp -------------------------------------------------------------------------------- /src/display/win/DisplayManagerWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/win/DisplayManagerWin.h -------------------------------------------------------------------------------- /src/display/x11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/x11/CMakeLists.txt -------------------------------------------------------------------------------- /src/display/x11/DisplayManagerX11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/x11/DisplayManagerX11.cpp -------------------------------------------------------------------------------- /src/display/x11/DisplayManagerX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/display/x11/DisplayManagerX11.h -------------------------------------------------------------------------------- /src/input/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/CMakeLists.txt -------------------------------------------------------------------------------- /src/input/InputCEC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/InputCEC.cpp -------------------------------------------------------------------------------- /src/input/InputCEC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/InputCEC.h -------------------------------------------------------------------------------- /src/input/InputComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/InputComponent.cpp -------------------------------------------------------------------------------- /src/input/InputComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/InputComponent.h -------------------------------------------------------------------------------- /src/input/InputKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/InputKeyboard.h -------------------------------------------------------------------------------- /src/input/InputLIRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/InputLIRC.cpp -------------------------------------------------------------------------------- /src/input/InputLIRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/InputLIRC.h -------------------------------------------------------------------------------- /src/input/InputMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/InputMapping.cpp -------------------------------------------------------------------------------- /src/input/InputMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/InputMapping.h -------------------------------------------------------------------------------- /src/input/InputSDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/InputSDL.cpp -------------------------------------------------------------------------------- /src/input/InputSDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/InputSDL.h -------------------------------------------------------------------------------- /src/input/InputSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/InputSocket.cpp -------------------------------------------------------------------------------- /src/input/InputSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/InputSocket.h -------------------------------------------------------------------------------- /src/input/apple/AppleRemoteDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/apple/AppleRemoteDelegate.h -------------------------------------------------------------------------------- /src/input/apple/AppleRemoteDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/apple/AppleRemoteDelegate.mm -------------------------------------------------------------------------------- /src/input/apple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/apple/CMakeLists.txt -------------------------------------------------------------------------------- /src/input/apple/InputAppleMediaKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/apple/InputAppleMediaKeys.h -------------------------------------------------------------------------------- /src/input/apple/InputAppleMediaKeys.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/apple/InputAppleMediaKeys.mm -------------------------------------------------------------------------------- /src/input/apple/InputAppleRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/apple/InputAppleRemote.h -------------------------------------------------------------------------------- /src/input/apple/InputAppleRemote.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/input/apple/InputAppleRemote.mm -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mpris/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/mpris/CMakeLists.txt -------------------------------------------------------------------------------- /src/mpris/MprisComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/mpris/MprisComponent.cpp -------------------------------------------------------------------------------- /src/mpris/MprisComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/mpris/MprisComponent.h -------------------------------------------------------------------------------- /src/mpris/MprisPlayerAdaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/mpris/MprisPlayerAdaptor.cpp -------------------------------------------------------------------------------- /src/mpris/MprisPlayerAdaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/mpris/MprisPlayerAdaptor.h -------------------------------------------------------------------------------- /src/mpris/MprisRootAdaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/mpris/MprisRootAdaptor.cpp -------------------------------------------------------------------------------- /src/mpris/MprisRootAdaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/mpris/MprisRootAdaptor.h -------------------------------------------------------------------------------- /src/player/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/player/CMakeLists.txt -------------------------------------------------------------------------------- /src/player/CodecsComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/player/CodecsComponent.cpp -------------------------------------------------------------------------------- /src/player/CodecsComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/player/CodecsComponent.h -------------------------------------------------------------------------------- /src/player/MpvVideoItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/player/MpvVideoItem.cpp -------------------------------------------------------------------------------- /src/player/MpvVideoItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/player/MpvVideoItem.h -------------------------------------------------------------------------------- /src/player/OpenGLDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/player/OpenGLDetect.cpp -------------------------------------------------------------------------------- /src/player/OpenGLDetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/player/OpenGLDetect.h -------------------------------------------------------------------------------- /src/player/PlayerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/player/PlayerComponent.cpp -------------------------------------------------------------------------------- /src/player/PlayerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/player/PlayerComponent.h -------------------------------------------------------------------------------- /src/player/QtHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/player/QtHelper.h -------------------------------------------------------------------------------- /src/plugins/RPI_jpeg/QRPIJpegHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/plugins/RPI_jpeg/QRPIJpegHandler.cpp -------------------------------------------------------------------------------- /src/plugins/RPI_jpeg/QRPIJpegHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/plugins/RPI_jpeg/QRPIJpegHandler.h -------------------------------------------------------------------------------- /src/plugins/RPI_jpeg/QRPIJpegPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/plugins/RPI_jpeg/QRPIJpegPlugin.cpp -------------------------------------------------------------------------------- /src/plugins/RPI_jpeg/QRPIJpegPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/plugins/RPI_jpeg/QRPIJpegPlugin.h -------------------------------------------------------------------------------- /src/plugins/RPI_jpeg/RPI_jpeg.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/plugins/RPI_jpeg/RPI_jpeg.pro -------------------------------------------------------------------------------- /src/plugins/RPI_jpeg/brcmjpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/plugins/RPI_jpeg/brcmjpeg.cpp -------------------------------------------------------------------------------- /src/plugins/RPI_jpeg/brcmjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/plugins/RPI_jpeg/brcmjpeg.h -------------------------------------------------------------------------------- /src/plugins/RPI_jpeg/jpeg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/plugins/RPI_jpeg/jpeg.json -------------------------------------------------------------------------------- /src/power/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/power/CMakeLists.txt -------------------------------------------------------------------------------- /src/power/PowerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/power/PowerComponent.cpp -------------------------------------------------------------------------------- /src/power/PowerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/power/PowerComponent.h -------------------------------------------------------------------------------- /src/power/PowerComponentDBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/power/PowerComponentDBus.cpp -------------------------------------------------------------------------------- /src/power/PowerComponentDBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/power/PowerComponentDBus.h -------------------------------------------------------------------------------- /src/power/PowerComponentMac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/power/PowerComponentMac.cpp -------------------------------------------------------------------------------- /src/power/PowerComponentMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/power/PowerComponentMac.h -------------------------------------------------------------------------------- /src/power/PowerComponentWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/power/PowerComponentWin.cpp -------------------------------------------------------------------------------- /src/power/PowerComponentWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/power/PowerComponentWin.h -------------------------------------------------------------------------------- /src/power/PowerComponentX11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/power/PowerComponentX11.cpp -------------------------------------------------------------------------------- /src/power/PowerComponentX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/power/PowerComponentX11.h -------------------------------------------------------------------------------- /src/settings/AudioSettingsController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/settings/AudioSettingsController.cpp -------------------------------------------------------------------------------- /src/settings/AudioSettingsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/settings/AudioSettingsController.h -------------------------------------------------------------------------------- /src/settings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/settings/CMakeLists.txt -------------------------------------------------------------------------------- /src/settings/SettingsComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/settings/SettingsComponent.cpp -------------------------------------------------------------------------------- /src/settings/SettingsComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/settings/SettingsComponent.h -------------------------------------------------------------------------------- /src/settings/SettingsSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/settings/SettingsSection.cpp -------------------------------------------------------------------------------- /src/settings/SettingsSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/settings/SettingsSection.h -------------------------------------------------------------------------------- /src/settings/SettingsValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/settings/SettingsValue.h -------------------------------------------------------------------------------- /src/shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/shared/CMakeLists.txt -------------------------------------------------------------------------------- /src/shared/LocalJsonClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/shared/LocalJsonClient.cpp -------------------------------------------------------------------------------- /src/shared/LocalJsonClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/shared/LocalJsonClient.h -------------------------------------------------------------------------------- /src/shared/LocalJsonServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/shared/LocalJsonServer.cpp -------------------------------------------------------------------------------- /src/shared/LocalJsonServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/shared/LocalJsonServer.h -------------------------------------------------------------------------------- /src/shared/Names.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/shared/Names.cpp.in -------------------------------------------------------------------------------- /src/shared/Names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/shared/Names.h -------------------------------------------------------------------------------- /src/shared/Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/shared/Paths.cpp -------------------------------------------------------------------------------- /src/shared/Paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/shared/Paths.h -------------------------------------------------------------------------------- /src/shared/UniqueApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/shared/UniqueApplication.h -------------------------------------------------------------------------------- /src/system/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/system/CMakeLists.txt -------------------------------------------------------------------------------- /src/system/SystemComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/system/SystemComponent.cpp -------------------------------------------------------------------------------- /src/system/SystemComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/system/SystemComponent.h -------------------------------------------------------------------------------- /src/system/openelec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/system/openelec/CMakeLists.txt -------------------------------------------------------------------------------- /src/system/openelec/OESystemComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/system/openelec/OESystemComponent.cpp -------------------------------------------------------------------------------- /src/system/openelec/OESystemComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/system/openelec/OESystemComponent.h -------------------------------------------------------------------------------- /src/system/openelec/SystemdManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/system/openelec/SystemdManager.cpp -------------------------------------------------------------------------------- /src/system/openelec/SystemdManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/system/openelec/SystemdManager.h -------------------------------------------------------------------------------- /src/taskbar/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/taskbar/CMakeLists.txt -------------------------------------------------------------------------------- /src/taskbar/TaskbarComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/taskbar/TaskbarComponent.cpp -------------------------------------------------------------------------------- /src/taskbar/TaskbarComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/taskbar/TaskbarComponent.h -------------------------------------------------------------------------------- /src/taskbar/TaskbarComponentWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/taskbar/TaskbarComponentWin.cpp -------------------------------------------------------------------------------- /src/taskbar/TaskbarComponentWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/taskbar/TaskbarComponentWin.h -------------------------------------------------------------------------------- /src/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/ui/CMakeLists.txt -------------------------------------------------------------------------------- /src/ui/ErrorMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/ui/ErrorMessage.cpp -------------------------------------------------------------------------------- /src/ui/ErrorMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/ui/ErrorMessage.h -------------------------------------------------------------------------------- /src/ui/EventFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/ui/EventFilter.cpp -------------------------------------------------------------------------------- /src/ui/EventFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/ui/EventFilter.h -------------------------------------------------------------------------------- /src/ui/WindowManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/ui/WindowManager.cpp -------------------------------------------------------------------------------- /src/ui/WindowManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/ui/WindowManager.h -------------------------------------------------------------------------------- /src/ui/webview.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/ui/webview.qml -------------------------------------------------------------------------------- /src/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/CMakeLists.txt -------------------------------------------------------------------------------- /src/utils/CachedRegexMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/CachedRegexMatcher.cpp -------------------------------------------------------------------------------- /src/utils/CachedRegexMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/CachedRegexMatcher.h -------------------------------------------------------------------------------- /src/utils/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/Log.cpp -------------------------------------------------------------------------------- /src/utils/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/Log.h -------------------------------------------------------------------------------- /src/utils/PlatformUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/PlatformUtils.cpp -------------------------------------------------------------------------------- /src/utils/PlatformUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/PlatformUtils.h -------------------------------------------------------------------------------- /src/utils/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/Utils.cpp -------------------------------------------------------------------------------- /src/utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/Utils.h -------------------------------------------------------------------------------- /src/utils/osx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/osx/CMakeLists.txt -------------------------------------------------------------------------------- /src/utils/osx/OSXUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/osx/OSXUtils.h -------------------------------------------------------------------------------- /src/utils/osx/OSXUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/osx/OSXUtils.mm -------------------------------------------------------------------------------- /src/utils/win/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/win/CMakeLists.txt -------------------------------------------------------------------------------- /src/utils/win/WinUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/win/WinUtils.cpp -------------------------------------------------------------------------------- /src/utils/win/WinUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/src/utils/win/WinUtils.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_systemcomponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-media-player/HEAD/tests/test_systemcomponent.cpp --------------------------------------------------------------------------------