├── .gitignore ├── LICENSE ├── NewRoundNotify.sln ├── NewRoundNotify ├── App.config ├── FlashWindow.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── NewRoundNotify.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SampleConfig.txt ├── libraryfolders.vdf ├── packages.config └── statshelix.ICO └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/LICENSE -------------------------------------------------------------------------------- /NewRoundNotify.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify.sln -------------------------------------------------------------------------------- /NewRoundNotify/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/App.config -------------------------------------------------------------------------------- /NewRoundNotify/FlashWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/FlashWindow.cs -------------------------------------------------------------------------------- /NewRoundNotify/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/MainForm.Designer.cs -------------------------------------------------------------------------------- /NewRoundNotify/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/MainForm.cs -------------------------------------------------------------------------------- /NewRoundNotify/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/MainForm.resx -------------------------------------------------------------------------------- /NewRoundNotify/NewRoundNotify.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/NewRoundNotify.csproj -------------------------------------------------------------------------------- /NewRoundNotify/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/Program.cs -------------------------------------------------------------------------------- /NewRoundNotify/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NewRoundNotify/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /NewRoundNotify/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/Properties/Resources.resx -------------------------------------------------------------------------------- /NewRoundNotify/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /NewRoundNotify/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/Properties/Settings.settings -------------------------------------------------------------------------------- /NewRoundNotify/SampleConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/SampleConfig.txt -------------------------------------------------------------------------------- /NewRoundNotify/libraryfolders.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/libraryfolders.vdf -------------------------------------------------------------------------------- /NewRoundNotify/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/packages.config -------------------------------------------------------------------------------- /NewRoundNotify/statshelix.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/NewRoundNotify/statshelix.ICO -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatsHelix/NewRoundNotify/HEAD/README.md --------------------------------------------------------------------------------