├── .gitignore ├── Config └── FilterPlugin.ini ├── Content └── VideoPlayerMaterial.uasset ├── PluginDownloader.uplugin ├── README.md ├── Resources ├── DiscordIcon.png ├── EmailIcon.png ├── EpicIcon.png ├── Icon128.png ├── VoxelIcon.png └── VoxelIconWithUpdate.png └── Source ├── PluginDownloaderEditor ├── PluginDownloaderEditor.Build.cs ├── Private │ ├── ImageDownload │ │ ├── WebImage.cpp │ │ ├── WebImage.h │ │ ├── WebImageCache.cpp │ │ └── WebImageCache.h │ ├── InstallPluginScript.inl │ ├── PluginDownloader.cpp │ ├── PluginDownloader.h │ ├── PluginDownloaderApi.cpp │ ├── PluginDownloaderApi.h │ ├── PluginDownloaderCustomization.cpp │ ├── PluginDownloaderCustomization.h │ ├── PluginDownloaderDownload.cpp │ ├── PluginDownloaderDownload.h │ ├── PluginDownloaderEditorModule.cpp │ ├── PluginDownloaderInfo.h │ ├── PluginDownloaderSettings.cpp │ ├── PluginDownloaderTokens.cpp │ ├── PluginDownloaderTokens.h │ ├── PluginDownloaderUpdates.cpp │ ├── PluginDownloaderUpdates.h │ ├── PluginDownloaderUtilities.cpp │ ├── SDownloadPlugin.cpp │ ├── SDownloadPlugin.h │ ├── SPluginList.cpp │ ├── SPluginList.h │ ├── SVideoPlayer.cpp │ └── SVideoPlayer.h └── Public │ ├── PluginDownloaderDefinitions.h │ ├── PluginDownloaderSettings.h │ ├── PluginDownloaderUtilities.h │ └── VoxelMinimal.h ├── ThirdParty ├── miniz.cpp └── miniz.h └── VoxelAuthEditor ├── Private └── VoxelAuthEditorModule.cpp └── VoxelAuthEditor.Build.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /Content/VideoPlayerMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Content/VideoPlayerMaterial.uasset -------------------------------------------------------------------------------- /PluginDownloader.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/PluginDownloader.uplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/README.md -------------------------------------------------------------------------------- /Resources/DiscordIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Resources/DiscordIcon.png -------------------------------------------------------------------------------- /Resources/EmailIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Resources/EmailIcon.png -------------------------------------------------------------------------------- /Resources/EpicIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Resources/EpicIcon.png -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Resources/VoxelIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Resources/VoxelIcon.png -------------------------------------------------------------------------------- /Resources/VoxelIconWithUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Resources/VoxelIconWithUpdate.png -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/PluginDownloaderEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/PluginDownloaderEditor.Build.cs -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/ImageDownload/WebImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/ImageDownload/WebImage.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/ImageDownload/WebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/ImageDownload/WebImage.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/ImageDownload/WebImageCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/ImageDownload/WebImageCache.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/ImageDownload/WebImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/ImageDownload/WebImageCache.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/InstallPluginScript.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/InstallPluginScript.inl -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloader.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloader.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderApi.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderApi.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderCustomization.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderCustomization.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderDownload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderDownload.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderDownload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderDownload.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderEditorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderEditorModule.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderInfo.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderSettings.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderTokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderTokens.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderTokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderTokens.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderUpdates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderUpdates.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderUpdates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderUpdates.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/PluginDownloaderUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/PluginDownloaderUtilities.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/SDownloadPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/SDownloadPlugin.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/SDownloadPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/SDownloadPlugin.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/SPluginList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/SPluginList.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/SPluginList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/SPluginList.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/SVideoPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/SVideoPlayer.cpp -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Private/SVideoPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Private/SVideoPlayer.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Public/PluginDownloaderDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Public/PluginDownloaderDefinitions.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Public/PluginDownloaderSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Public/PluginDownloaderSettings.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Public/PluginDownloaderUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Public/PluginDownloaderUtilities.h -------------------------------------------------------------------------------- /Source/PluginDownloaderEditor/Public/VoxelMinimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/PluginDownloaderEditor/Public/VoxelMinimal.h -------------------------------------------------------------------------------- /Source/ThirdParty/miniz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/ThirdParty/miniz.cpp -------------------------------------------------------------------------------- /Source/ThirdParty/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/ThirdParty/miniz.h -------------------------------------------------------------------------------- /Source/VoxelAuthEditor/Private/VoxelAuthEditorModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/VoxelAuthEditor/Private/VoxelAuthEditorModule.cpp -------------------------------------------------------------------------------- /Source/VoxelAuthEditor/VoxelAuthEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phyronnaz/PluginDownloader/HEAD/Source/VoxelAuthEditor/VoxelAuthEditor.Build.cs --------------------------------------------------------------------------------