├── .gitattributes ├── .gitignore ├── PM3UniversalGUI.sln ├── PM3UniversalGUI ├── App.config ├── ConsoleStreamReader.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── PM3Client.cs ├── PM3UniversalGUI.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── StringUtils.cs ├── bin │ └── Release │ │ ├── PM3UniversalGUI.exe │ │ └── PM3UniversalGUI.exe.config ├── crab.png └── pm3universalgui.png └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /PM3UniversalGUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI.sln -------------------------------------------------------------------------------- /PM3UniversalGUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/App.config -------------------------------------------------------------------------------- /PM3UniversalGUI/ConsoleStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/ConsoleStreamReader.cs -------------------------------------------------------------------------------- /PM3UniversalGUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /PM3UniversalGUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/MainForm.cs -------------------------------------------------------------------------------- /PM3UniversalGUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/MainForm.resx -------------------------------------------------------------------------------- /PM3UniversalGUI/PM3Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/PM3Client.cs -------------------------------------------------------------------------------- /PM3UniversalGUI/PM3UniversalGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/PM3UniversalGUI.csproj -------------------------------------------------------------------------------- /PM3UniversalGUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/Program.cs -------------------------------------------------------------------------------- /PM3UniversalGUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PM3UniversalGUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PM3UniversalGUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/Properties/Resources.resx -------------------------------------------------------------------------------- /PM3UniversalGUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PM3UniversalGUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/Properties/Settings.settings -------------------------------------------------------------------------------- /PM3UniversalGUI/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/StringUtils.cs -------------------------------------------------------------------------------- /PM3UniversalGUI/bin/Release/PM3UniversalGUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/bin/Release/PM3UniversalGUI.exe -------------------------------------------------------------------------------- /PM3UniversalGUI/bin/Release/PM3UniversalGUI.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/bin/Release/PM3UniversalGUI.exe.config -------------------------------------------------------------------------------- /PM3UniversalGUI/crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/crab.png -------------------------------------------------------------------------------- /PM3UniversalGUI/pm3universalgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/PM3UniversalGUI/pm3universalgui.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burma69/PM3UniversalGUI/HEAD/README.md --------------------------------------------------------------------------------