├── .gitignore ├── Jellyfin.Plugin.SmartCollections.sln ├── Jellyfin.Plugin.SmartCollections ├── Api │ └── SmartCollectionsController.cs ├── Configuration │ ├── PluginConfiguration.cs │ └── configurationpage.html ├── Jellyfin.Plugin.SmartCollections.csproj ├── Plugin.cs ├── ScheduledTasks │ └── SmartCollectionsTasks.cs └── SmartCollectionsManager.cs ├── LICENSE ├── Makefile ├── README.md ├── manifest.json └── scripts ├── update-version.js └── validate-and-update-manifest.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/.gitignore -------------------------------------------------------------------------------- /Jellyfin.Plugin.SmartCollections.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/Jellyfin.Plugin.SmartCollections.sln -------------------------------------------------------------------------------- /Jellyfin.Plugin.SmartCollections/Api/SmartCollectionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/Jellyfin.Plugin.SmartCollections/Api/SmartCollectionsController.cs -------------------------------------------------------------------------------- /Jellyfin.Plugin.SmartCollections/Configuration/PluginConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/Jellyfin.Plugin.SmartCollections/Configuration/PluginConfiguration.cs -------------------------------------------------------------------------------- /Jellyfin.Plugin.SmartCollections/Configuration/configurationpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/Jellyfin.Plugin.SmartCollections/Configuration/configurationpage.html -------------------------------------------------------------------------------- /Jellyfin.Plugin.SmartCollections/Jellyfin.Plugin.SmartCollections.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/Jellyfin.Plugin.SmartCollections/Jellyfin.Plugin.SmartCollections.csproj -------------------------------------------------------------------------------- /Jellyfin.Plugin.SmartCollections/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/Jellyfin.Plugin.SmartCollections/Plugin.cs -------------------------------------------------------------------------------- /Jellyfin.Plugin.SmartCollections/ScheduledTasks/SmartCollectionsTasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/Jellyfin.Plugin.SmartCollections/ScheduledTasks/SmartCollectionsTasks.cs -------------------------------------------------------------------------------- /Jellyfin.Plugin.SmartCollections/SmartCollectionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/Jellyfin.Plugin.SmartCollections/SmartCollectionsManager.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/manifest.json -------------------------------------------------------------------------------- /scripts/update-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/scripts/update-version.js -------------------------------------------------------------------------------- /scripts/validate-and-update-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpc/jellyfin-plugin-smart-collections/HEAD/scripts/validate-and-update-manifest.js --------------------------------------------------------------------------------