├── .gitattributes ├── LICENSE.txt ├── README.md ├── TL_Installer_Prototype.sln └── TL_Installer_Prototype ├── Controllers ├── File Work │ ├── Extract Files.cs │ ├── File_Downloader.cs │ ├── File_Folder_Deleter.cs │ ├── File_Folder_Mover.cs │ ├── TL_Json_Writer.cs │ └── Write_To_Temmie_Config_Json.cs ├── Github │ ├── TemmieLauncher │ │ ├── TL_Commit_Json.cs │ │ ├── TL_Downloader.cs │ │ └── TL_Json_And_DownloadLink.cs │ └── fpPS4 │ │ ├── fpPS4_Action_Downloader.cs │ │ ├── fpPS4_Action_Link_Grabber.cs │ │ ├── fpPS4_Artifact_Json.cs │ │ ├── fpPS4_Check_Main_Workflow.cs │ │ └── fpPS4_Get_Workflows.cs ├── Logos.cs └── Unused │ └── ExtractNw.cs ├── Models └── Required Files.cs ├── Program.cs ├── TL_Installer_Prototype.csproj └── a.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/README.md -------------------------------------------------------------------------------- /TL_Installer_Prototype.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype.sln -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/File Work/Extract Files.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/File Work/Extract Files.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/File Work/File_Downloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/File Work/File_Downloader.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/File Work/File_Folder_Deleter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/File Work/File_Folder_Deleter.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/File Work/File_Folder_Mover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/File Work/File_Folder_Mover.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/File Work/TL_Json_Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/File Work/TL_Json_Writer.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/File Work/Write_To_Temmie_Config_Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/File Work/Write_To_Temmie_Config_Json.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/Github/TemmieLauncher/TL_Commit_Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/Github/TemmieLauncher/TL_Commit_Json.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/Github/TemmieLauncher/TL_Downloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/Github/TemmieLauncher/TL_Downloader.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/Github/TemmieLauncher/TL_Json_And_DownloadLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/Github/TemmieLauncher/TL_Json_And_DownloadLink.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/Github/fpPS4/fpPS4_Action_Downloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/Github/fpPS4/fpPS4_Action_Downloader.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/Github/fpPS4/fpPS4_Action_Link_Grabber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/Github/fpPS4/fpPS4_Action_Link_Grabber.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/Github/fpPS4/fpPS4_Artifact_Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/Github/fpPS4/fpPS4_Artifact_Json.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/Github/fpPS4/fpPS4_Check_Main_Workflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/Github/fpPS4/fpPS4_Check_Main_Workflow.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/Github/fpPS4/fpPS4_Get_Workflows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/Github/fpPS4/fpPS4_Get_Workflows.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/Logos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/Logos.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Controllers/Unused/ExtractNw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Controllers/Unused/ExtractNw.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Models/Required Files.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Models/Required Files.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/Program.cs -------------------------------------------------------------------------------- /TL_Installer_Prototype/TL_Installer_Prototype.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/TL_Installer_Prototype.csproj -------------------------------------------------------------------------------- /TL_Installer_Prototype/a.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KimieStar/TL_Installer_Prototype/HEAD/TL_Installer_Prototype/a.ico --------------------------------------------------------------------------------