├── .editorconfig ├── .github └── workflows │ ├── _meta-publish.yaml │ ├── build.yaml │ ├── publish-stable.yaml │ └── publish-unstable.yaml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Jellyfin.Windows.Tray.sln ├── Jellyfin.Windows.Tray ├── .vscode │ ├── launch.json │ └── tasks.json ├── Jellyfin.Windows.Tray.csproj ├── JellyfinIcon.ico ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── AppIcon.png │ └── JellyfinIcon.ico ├── RunType.cs ├── StringExtensions.cs ├── TrayApplicationContext.cs └── app.manifest ├── LICENSE ├── README.md ├── Support Files ├── Jellyfin Registry.reg ├── LICENSE └── nsProcess │ ├── COPYING │ ├── ConvFunc.h │ ├── README_JamulusChanges.txt │ ├── Readme.txt │ ├── api.h │ ├── build_nsprocess.ps1 │ ├── nsProcess.c │ ├── nsProcess.sln │ ├── nsProcess.vcxproj │ ├── nsProcess.vcxproj.filters │ ├── nsis_tchar.h │ ├── pluginapi.c │ └── pluginapi.h ├── jellyfin.ruleset ├── nsis ├── dialogs │ ├── confirmation.nsddef │ ├── confirmation.nsdinc │ ├── data-directory.nsddef │ ├── service-config.nsddef │ ├── service-config.nsdinc │ ├── setuptype.nsddef │ ├── setuptype.nsdinc │ ├── warning.nsddef │ └── warning.nsdinc ├── helpers │ ├── ShowError.nsh │ ├── StrSlash.nsh │ └── nsProcess.nsh ├── jellyfin.nsi └── plugins │ └── nsProcess.dll └── renovate.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/_meta-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/.github/workflows/_meta-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-stable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/.github/workflows/publish-stable.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-unstable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/.github/workflows/publish-unstable.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray.sln -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray/.vscode/launch.json -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray/.vscode/tasks.json -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray/Jellyfin.Windows.Tray.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray/Jellyfin.Windows.Tray.csproj -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray/JellyfinIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray/JellyfinIcon.ico -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray/Program.cs -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray/Properties/Resources.resx -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray/Resources/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray/Resources/AppIcon.png -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray/Resources/JellyfinIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray/Resources/JellyfinIcon.ico -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray/RunType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray/RunType.cs -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray/StringExtensions.cs -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray/TrayApplicationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray/TrayApplicationContext.cs -------------------------------------------------------------------------------- /Jellyfin.Windows.Tray/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Jellyfin.Windows.Tray/app.manifest -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/README.md -------------------------------------------------------------------------------- /Support Files/Jellyfin Registry.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/Jellyfin Registry.reg -------------------------------------------------------------------------------- /Support Files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/LICENSE -------------------------------------------------------------------------------- /Support Files/nsProcess/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/nsProcess/COPYING -------------------------------------------------------------------------------- /Support Files/nsProcess/ConvFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/nsProcess/ConvFunc.h -------------------------------------------------------------------------------- /Support Files/nsProcess/README_JamulusChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/nsProcess/README_JamulusChanges.txt -------------------------------------------------------------------------------- /Support Files/nsProcess/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/nsProcess/Readme.txt -------------------------------------------------------------------------------- /Support Files/nsProcess/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/nsProcess/api.h -------------------------------------------------------------------------------- /Support Files/nsProcess/build_nsprocess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/nsProcess/build_nsprocess.ps1 -------------------------------------------------------------------------------- /Support Files/nsProcess/nsProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/nsProcess/nsProcess.c -------------------------------------------------------------------------------- /Support Files/nsProcess/nsProcess.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/nsProcess/nsProcess.sln -------------------------------------------------------------------------------- /Support Files/nsProcess/nsProcess.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/nsProcess/nsProcess.vcxproj -------------------------------------------------------------------------------- /Support Files/nsProcess/nsProcess.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/nsProcess/nsProcess.vcxproj.filters -------------------------------------------------------------------------------- /Support Files/nsProcess/nsis_tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/nsProcess/nsis_tchar.h -------------------------------------------------------------------------------- /Support Files/nsProcess/pluginapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/nsProcess/pluginapi.c -------------------------------------------------------------------------------- /Support Files/nsProcess/pluginapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/Support Files/nsProcess/pluginapi.h -------------------------------------------------------------------------------- /jellyfin.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/jellyfin.ruleset -------------------------------------------------------------------------------- /nsis/dialogs/confirmation.nsddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/dialogs/confirmation.nsddef -------------------------------------------------------------------------------- /nsis/dialogs/confirmation.nsdinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/dialogs/confirmation.nsdinc -------------------------------------------------------------------------------- /nsis/dialogs/data-directory.nsddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/dialogs/data-directory.nsddef -------------------------------------------------------------------------------- /nsis/dialogs/service-config.nsddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/dialogs/service-config.nsddef -------------------------------------------------------------------------------- /nsis/dialogs/service-config.nsdinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/dialogs/service-config.nsdinc -------------------------------------------------------------------------------- /nsis/dialogs/setuptype.nsddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/dialogs/setuptype.nsddef -------------------------------------------------------------------------------- /nsis/dialogs/setuptype.nsdinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/dialogs/setuptype.nsdinc -------------------------------------------------------------------------------- /nsis/dialogs/warning.nsddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/dialogs/warning.nsddef -------------------------------------------------------------------------------- /nsis/dialogs/warning.nsdinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/dialogs/warning.nsdinc -------------------------------------------------------------------------------- /nsis/helpers/ShowError.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/helpers/ShowError.nsh -------------------------------------------------------------------------------- /nsis/helpers/StrSlash.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/helpers/StrSlash.nsh -------------------------------------------------------------------------------- /nsis/helpers/nsProcess.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/helpers/nsProcess.nsh -------------------------------------------------------------------------------- /nsis/jellyfin.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/jellyfin.nsi -------------------------------------------------------------------------------- /nsis/plugins/nsProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/nsis/plugins/nsProcess.dll -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyfin/jellyfin-server-windows/HEAD/renovate.json --------------------------------------------------------------------------------