├── .gitignore ├── CONTRIBUTING.md ├── Improvements.md ├── LICENSE-APACHE.txt ├── LICENSE_NOTICE.md ├── README.md ├── ReleaseNotes.md ├── Version ├── assets ├── logo.jpg ├── logo48.ico ├── logo48.jpg └── logoHD.jpg ├── dist └── .gitkeep ├── scripts ├── CreateNewPack.bat ├── CreateNewPack.sh ├── CreateSetup.iss └── InnoSetUp_Installer.bat └── src ├── ChatGPT-Executor.csproj ├── ChatGPT-Executor.sln ├── CommandManager.cs ├── Config.json ├── WebSocketService.cs └── firstPrompt.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Improvements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/Improvements.md -------------------------------------------------------------------------------- /LICENSE-APACHE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/LICENSE-APACHE.txt -------------------------------------------------------------------------------- /LICENSE_NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/LICENSE_NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /Version: -------------------------------------------------------------------------------- 1 | 1.2.0 -------------------------------------------------------------------------------- /assets/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/assets/logo.jpg -------------------------------------------------------------------------------- /assets/logo48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/assets/logo48.ico -------------------------------------------------------------------------------- /assets/logo48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/assets/logo48.jpg -------------------------------------------------------------------------------- /assets/logoHD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/assets/logoHD.jpg -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/CreateNewPack.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/scripts/CreateNewPack.bat -------------------------------------------------------------------------------- /scripts/CreateNewPack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/scripts/CreateNewPack.sh -------------------------------------------------------------------------------- /scripts/CreateSetup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/scripts/CreateSetup.iss -------------------------------------------------------------------------------- /scripts/InnoSetUp_Installer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/scripts/InnoSetUp_Installer.bat -------------------------------------------------------------------------------- /src/ChatGPT-Executor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/src/ChatGPT-Executor.csproj -------------------------------------------------------------------------------- /src/ChatGPT-Executor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/src/ChatGPT-Executor.sln -------------------------------------------------------------------------------- /src/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/src/CommandManager.cs -------------------------------------------------------------------------------- /src/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/src/Config.json -------------------------------------------------------------------------------- /src/WebSocketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/src/WebSocketService.cs -------------------------------------------------------------------------------- /src/firstPrompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/improveTheWorld/ChatGPT-Executor/HEAD/src/firstPrompt.md --------------------------------------------------------------------------------