├── .github └── FUNDING.yml ├── FileLogger.cs ├── Form1.Designer.cs ├── Form1.cs ├── PiperTrayApp.cs ├── Program.cs ├── README.md ├── Resources ├── icon.ico ├── refresh-32.png └── test ├── Settings.cs ├── banned.dict ├── ignore.dict ├── piper_tray.csproj ├── piper_tray.csproj.user ├── piper_tray.generated.sln ├── replace.dict └── settings.conf /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /FileLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/FileLogger.cs -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/Form1.Designer.cs -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/Form1.cs -------------------------------------------------------------------------------- /PiperTrayApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/PiperTrayApp.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/README.md -------------------------------------------------------------------------------- /Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/Resources/icon.ico -------------------------------------------------------------------------------- /Resources/refresh-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/Resources/refresh-32.png -------------------------------------------------------------------------------- /Resources/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/Settings.cs -------------------------------------------------------------------------------- /banned.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/banned.dict -------------------------------------------------------------------------------- /ignore.dict: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /piper_tray.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/piper_tray.csproj -------------------------------------------------------------------------------- /piper_tray.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/piper_tray.csproj.user -------------------------------------------------------------------------------- /piper_tray.generated.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/piper_tray.generated.sln -------------------------------------------------------------------------------- /replace.dict: -------------------------------------------------------------------------------- 1 | LHC=Large Hadron Collider 2 | -------------------------------------------------------------------------------- /settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jame25/Piper-Tray/HEAD/settings.conf --------------------------------------------------------------------------------