├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .mailmap ├── AppVeyorServices ├── AppVeyor │ ├── GetProjectLastBuild.cs │ ├── GetProjectLastBuildResponse.cs │ ├── GetProjects.cs │ ├── GetProjectsResponse.cs │ ├── Project.cs │ └── ProjectBuild.cs ├── AppVeyorBuildDefinition.cs ├── AppVeyorBuildStatus.cs ├── AppVeyorCiEntryPoint.cs ├── AppVeyorService.cs ├── AppVeyorServices.csproj ├── AppVeyorWatcher.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── ServerConfiguration │ ├── ConfigureAppVeyor.Designer.cs │ ├── ConfigureAppVeyor.cs │ └── ConfigureAppVeyor.resx ├── app.config └── packages.config ├── BambooServices ├── BambooBuildDefinition.cs ├── BambooBuildStatus.cs ├── BambooCIEntryPoint.cs ├── BambooService.cs ├── BambooServices.csproj ├── BambooWatcher.cs ├── Properties │ └── AssemblyInfo.cs ├── ServerConfiguration │ ├── ConfigureBamboo.Designer.cs │ ├── ConfigureBamboo.cs │ └── ConfigureBamboo.resx ├── app.config └── packages.config ├── BuildBotServices ├── BuildBotBuildDefinition.cs ├── BuildBotBuildStatus.cs ├── BuildBotCIEntryPoint.cs ├── BuildBotService.cs ├── BuildBotServices.csproj ├── BuildBotWatcher.cs ├── Properties │ └── AssemblyInfo.cs ├── ServerConfiguration │ ├── ConfigureBuildBot.Designer.cs │ ├── ConfigureBuildBot.cs │ └── ConfigureBuildBot.resx ├── app.config └── packages.config ├── CruiseControlNetServices ├── CruiseControlNetBuildDefinition.cs ├── CruiseControlNetBuildStatus.cs ├── CruiseControlNetCIEntryPoint.cs ├── CruiseControlNetService.cs ├── CruiseControlNetServices.csproj ├── CruiseControlNetWatcher.cs ├── Properties │ └── AssemblyInfo.cs ├── ServerConfiguration │ ├── ConfigureCruiseControlNet.Designer.cs │ ├── ConfigureCruiseControlNet.cs │ └── ConfigureCruiseControlNet.resx ├── app.config └── packages.config ├── HudsonServices ├── HudsonBuildDefinition.cs ├── HudsonBuildStatus.cs ├── HudsonCIEntryPoint.cs ├── HudsonService.cs ├── HudsonServices.csproj ├── HudsonWatcher.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── ServerConfiguration │ ├── ConfigureHudson.Designer.cs │ ├── ConfigureHudson.cs │ └── ConfigureHudson.resx ├── app.config └── packages.config ├── Images ├── MainFormIcons.svg ├── Splash.pdn ├── balls.svg ├── curley borders.svg └── font.txt ├── LICENSE.md ├── Libs ├── Microsoft.VisualBasic.dll ├── TeamFoundation │ ├── Microsoft.ServiceBus.dll │ ├── Microsoft.TeamFoundation.Build.Client.dll │ ├── Microsoft.TeamFoundation.Build.Common.dll │ ├── Microsoft.TeamFoundation.Client.dll │ ├── Microsoft.TeamFoundation.Common.Library.dll │ ├── Microsoft.TeamFoundation.Common.dll │ ├── Microsoft.TeamFoundation.Diff.dll │ ├── Microsoft.TeamFoundation.VersionControl.Client.dll │ ├── Microsoft.TeamFoundation.VersionControl.Common.Integration.dll │ ├── Microsoft.TeamFoundation.VersionControl.Common.dll │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Cache.dll │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.DataStore.dll │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Provision.dll │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.RuleEngine.dll │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.dll │ ├── Microsoft.TeamFoundation.WorkItemTracking.Common.dll │ ├── Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll │ ├── Microsoft.TeamFoundation.dll │ ├── Microsoft.VisualStudio.Services.Client.dll │ ├── Microsoft.VisualStudio.Services.Common.dll │ ├── Microsoft.VisualStudio.Services.WebApi.dll │ └── System.Net.Http.Formatting.dll ├── WiX │ ├── WixBin │ │ ├── IncludeFile.ico │ │ ├── LocalizationFile.ico │ │ ├── LuxTasks.dll │ │ ├── Microsoft.Deployment.Compression.Cab.dll │ │ ├── Microsoft.Deployment.Compression.dll │ │ ├── Microsoft.Deployment.Resources.dll │ │ ├── Microsoft.Deployment.WindowsInstaller.Package.dll │ │ ├── Microsoft.Deployment.WindowsInstaller.dll │ │ ├── Microsoft.Tools.WindowsInstallerXml.NAntTasks.dll │ │ ├── ProductFile.ico │ │ ├── ProjectFile.ico │ │ ├── SetupBuilder.dll │ │ ├── ThmViewer.exe │ │ ├── WixBalExtension.dll │ │ ├── WixComPlusExtension.dll │ │ ├── WixCop.exe │ │ ├── WixDependencyExtension.dll │ │ ├── WixDifxAppExtension.dll │ │ ├── WixDirectXExtension.dll │ │ ├── WixFirewallExtension.dll │ │ ├── WixGamingExtension.dll │ │ ├── WixIIsExtension.dll │ │ ├── WixLibraryFile.ico │ │ ├── WixLuxExtension.dll │ │ ├── WixMsmqExtension.dll │ │ ├── WixNetFxExtension.dll │ │ ├── WixPSExtension.dll │ │ ├── WixSqlExtension.dll │ │ ├── WixTagExtension.dll │ │ ├── WixTasks.dll │ │ ├── WixUIExtension.dll │ │ ├── WixUnit.exe │ │ ├── WixUnit.exe.config │ │ ├── WixUtilExtension.dll │ │ ├── WixVSExtension.dll │ │ ├── candle.exe │ │ ├── candle.exe.config │ │ ├── darice.cub │ │ ├── dark.exe │ │ ├── dark.exe.config │ │ ├── difxapp_ia64.wixlib │ │ ├── difxapp_x64.wixlib │ │ ├── difxapp_x86.wixlib │ │ ├── heat.exe │ │ ├── heat.exe.config │ │ ├── insignia.exe │ │ ├── insignia.exe.config │ │ ├── light.exe │ │ ├── light.exe.config │ │ ├── lit.exe │ │ ├── lit.exe.config │ │ ├── lux.exe │ │ ├── lux.exe.config │ │ ├── melt.exe │ │ ├── melt.exe.config │ │ ├── mergemod.cub │ │ ├── mergemod.dll │ │ ├── mspatchc.dll │ │ ├── nit.exe │ │ ├── nit.exe.config │ │ ├── pyro.exe │ │ ├── pyro.exe.config │ │ ├── sconce2010.dll │ │ ├── setup.exe │ │ ├── setupbld.exe │ │ ├── shine.exe │ │ ├── shine.exe.config │ │ ├── smoke.exe │ │ ├── smoke.exe.config │ │ ├── torch.exe │ │ ├── torch.exe.config │ │ ├── votive2010.dll │ │ ├── wconsole.dll │ │ ├── winterop.dll │ │ ├── wix.dll │ │ └── wui.dll │ └── v3.x │ │ ├── LuxTasks.dll │ │ ├── Microsoft.Deployment.WindowsInstaller.dll │ │ ├── WixLuxExtension.dll │ │ ├── WixNetFxExtension.dll │ │ ├── WixTasks.dll │ │ ├── darice.cub │ │ ├── lux.targets │ │ ├── winterop.dll │ │ ├── wix.ca.targets │ │ ├── wix.dll │ │ ├── wix.targets │ │ ├── wix200x.targets │ │ └── wix2010.targets ├── ZedGraph.dll ├── sox-14.3.2 │ ├── ChangeLog.txt │ ├── LICENSE.GPL.txt │ ├── README.txt │ ├── README.win32.txt │ ├── batch-example.bat │ ├── libgomp-1.dll │ ├── libmad.dll │ ├── libmp3lame.dll │ ├── pthreadgc2.dll │ ├── sox.exe │ ├── sox.pdf │ ├── soxformat.pdf │ ├── soxi.pdf │ ├── wget.exe │ ├── wget.ini │ └── zlib1.dll └── wyUpdate │ ├── AutomaticUpdater.dll │ ├── AutomaticUpdater.pdb │ ├── AutomaticUpdater.xml │ ├── AutomaticUpdater │ ├── AutomaticUpdater.Designer │ │ ├── AutomaticUpdater.Design.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resource.Designer.cs │ │ └── Resource.resx │ ├── AutomaticUpdater.sln │ ├── Control │ │ ├── AUTranslation.cs │ │ ├── AnimationControl.cs │ │ ├── Args.cs │ │ ├── AutoUpdaterInfo.cs │ │ ├── AutomaticUpdater.cs │ │ ├── AutomaticUpdater.csproj │ │ ├── AutomaticUpdaterBackend.cs │ │ ├── AutomaticUpdaterDesigner.cs │ │ ├── GUIDEditor.cs │ │ ├── MenuType.cs │ │ ├── PipeClient.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReadWriteFiles.cs │ │ ├── RichTextBoxEx.cs │ │ ├── UpdateHelper.cs │ │ ├── UpdateHelperData.cs │ │ ├── UpdateStepOn.cs │ │ ├── UpdateType.cs │ │ ├── au.signkey.snk │ │ ├── cross.png │ │ ├── frmChanges.Designer.cs │ │ ├── frmChanges.cs │ │ ├── frmChanges.resx │ │ ├── frmError.Designer.cs │ │ ├── frmError.cs │ │ ├── frmError.resx │ │ ├── info.png │ │ ├── tick.png │ │ ├── update-notify.png │ │ └── update-working.png │ ├── Control4 │ │ ├── AutomaticUpdater4.csproj │ │ └── au.signkey.snk │ └── License.txt │ └── why is the source here.txt ├── Local.testsettings ├── MockCiServerServices ├── ConfigureMock.Designer.cs ├── ConfigureMock.cs ├── ConfigureMock.resx ├── MockBuildDefinition.cs ├── MockCiEntryPoint.cs ├── MockCiServerForm.Designer.cs ├── MockCiServerForm.cs ├── MockCiServerForm.resx ├── MockCiServerServices.csproj ├── MockProject.Designer.cs ├── MockProject.cs ├── MockProject.resx ├── MockWatcher.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── README.md ├── Releases ├── BuildArtifacts │ ├── 1.0.0.1 │ │ └── SirenOfShame.exe │ ├── 1.0.0.2 │ │ ├── SirenOfShame.Lib.dll │ │ └── SirenOfShame.exe │ ├── 1.0.0.3 │ │ ├── SirenOfShame.Lib.dll │ │ └── SirenOfShame.exe │ ├── 1.1.0 │ │ ├── FirmwareUpgrade.xml │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── TeamCityServices.dll │ │ │ └── TfsServices.dll │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ ├── SirenOfShame.exe.config │ │ ├── SoxLib.dll │ │ ├── TeensyHidBootloaderLib.dll │ │ └── UsbLib.dll │ ├── 1.1.1 │ │ ├── Plugins │ │ │ └── CruiseControlNetServices.dll │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ └── SirenOfShame.exe.config │ ├── 1.1.2 │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── SoxLib.dll │ │ │ ├── TeamCityServices.dll │ │ │ ├── TeensyHidBootloaderLib.dll │ │ │ ├── TfsServices.dll │ │ │ └── UsbLib.dll │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ └── SirenOfShame.exe.config │ ├── 1.1.3 │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── CruiseControlNetServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── TeamCityServices.dll │ │ │ └── TfsServices.dll │ │ ├── SirenOfShame.Lib.dll │ │ └── SirenOfShame.exe │ ├── 1.1.4 │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── CruiseControlNetServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── TeamCityServices.dll │ │ │ ├── TfsServices.dll │ │ │ └── UsbLib.dll │ │ ├── SirenOfShame.Lib.dll │ │ └── SirenOfShame.exe │ ├── 1.2.0 │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── CruiseControlNetServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── TeamCityServices.dll │ │ │ ├── TfsServices.dll │ │ │ └── UsbLib.dll │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ └── ZedGraph.dll │ ├── 1.3.0 │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── CruiseControlNetServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── TeamCityServices.dll │ │ │ ├── TfsServices.dll │ │ │ └── UsbLib.dll │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ └── ZedGraph.dll │ ├── 1.4.0 │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── CruiseControlNetServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── TeamCityServices.dll │ │ │ ├── TfsServices.dll │ │ │ └── UsbLib.dll │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ └── ZedGraph.dll │ ├── 1.5.0 │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── CruiseControlNetServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── TeamCityServices.dll │ │ │ ├── TfsServices.dll │ │ │ └── UsbLib.dll │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ └── ZedGraph.dll │ ├── 1.6.0 │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── BuildBotServices.dll │ │ │ ├── CruiseControlNetServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── TeamCityServices.dll │ │ │ ├── TfsServices.dll │ │ │ ├── TravisCiServices.dll │ │ │ └── UsbLib.dll │ │ ├── Release Notes.txt │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ └── ZedGraph.dll │ ├── 2.1.1 │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── BuildBotServices.dll │ │ │ ├── CruiseControlNetServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── SirenOfShame.Lib.dll │ │ │ ├── TeamCityServices.dll │ │ │ ├── TfsServices.dll │ │ │ ├── TravisCiServices.dll │ │ │ └── UsbLib.dll │ │ ├── SignalR.Client.dll │ │ ├── SignalR.Client.xml │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ └── ZedGraph.dll │ ├── 2.2.0 │ │ ├── Microsoft.TeamFoundation.Build.Client.dll │ │ ├── Microsoft.TeamFoundation.Build.Common.dll │ │ ├── Microsoft.TeamFoundation.Client.dll │ │ ├── Microsoft.TeamFoundation.Common.Library.dll │ │ ├── Microsoft.TeamFoundation.Common.dll │ │ ├── Microsoft.TeamFoundation.Diff.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Client.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Common.Integration.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Common.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Cache.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.DataStore.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Provision.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.RuleEngine.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll │ │ ├── Microsoft.TeamFoundation.dll │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── BuildBotServices.dll │ │ │ ├── CruiseControlNetServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── SirenOfShame.Lib.dll │ │ │ ├── TeamCityServices.dll │ │ │ ├── TfsServices.dll │ │ │ ├── TravisCiServices.dll │ │ │ └── UsbLib.dll │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ └── ZedGraph.dll │ ├── 2.2.1 │ │ ├── Microsoft.TeamFoundation.Build.Client.dll │ │ ├── Microsoft.TeamFoundation.Build.Common.dll │ │ ├── Microsoft.TeamFoundation.Client.dll │ │ ├── Microsoft.TeamFoundation.Common.Library.dll │ │ ├── Microsoft.TeamFoundation.Common.dll │ │ ├── Microsoft.TeamFoundation.Diff.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Client.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Common.Integration.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Common.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Cache.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.DataStore.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Provision.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.RuleEngine.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll │ │ ├── Microsoft.TeamFoundation.dll │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── BuildBotServices.dll │ │ │ ├── CruiseControlNetServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── SirenOfShame.Lib.dll │ │ │ ├── TeamCityServices.dll │ │ │ ├── TfsServices.dll │ │ │ ├── TravisCiServices.dll │ │ │ └── UsbLib.dll │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ ├── SoxLib.dll │ │ └── ZedGraph.dll │ ├── 2.2.3 │ │ ├── Microsoft.TeamFoundation.Build.Client.dll │ │ ├── Microsoft.TeamFoundation.Build.Common.dll │ │ ├── Microsoft.TeamFoundation.Client.dll │ │ ├── Microsoft.TeamFoundation.Common.Library.dll │ │ ├── Microsoft.TeamFoundation.Common.dll │ │ ├── Microsoft.TeamFoundation.Diff.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Client.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Common.Integration.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Common.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Cache.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.DataStore.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Provision.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.RuleEngine.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll │ │ ├── Microsoft.TeamFoundation.dll │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── BuildBotServices.dll │ │ │ ├── CruiseControlNetServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── SirenOfShame.Lib.dll │ │ │ ├── TeamCityServices.dll │ │ │ ├── TfsServices.dll │ │ │ ├── TravisCiServices.dll │ │ │ └── UsbLib.dll │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ ├── SoxLib.dll │ │ └── ZedGraph.dll │ ├── 2.3.10 │ │ ├── Microsoft.AspNet.SignalR.Client.dll │ │ ├── Microsoft.ServiceBus.dll │ │ ├── Microsoft.TeamFoundation.Build.Client.dll │ │ ├── Microsoft.TeamFoundation.Build.Common.dll │ │ ├── Microsoft.TeamFoundation.Client.dll │ │ ├── Microsoft.TeamFoundation.Common.Library.dll │ │ ├── Microsoft.TeamFoundation.Common.dll │ │ ├── Microsoft.TeamFoundation.Diff.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Client.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Common.Integration.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Common.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Cache.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.DataStore.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Provision.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.RuleEngine.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Common.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll │ │ ├── Microsoft.TeamFoundation.dll │ │ ├── Microsoft.VisualStudio.Services.Client.dll │ │ ├── Microsoft.VisualStudio.Services.Common.dll │ │ ├── Microsoft.VisualStudio.Services.WebApi.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Plugins │ │ │ ├── BambooServices.dll │ │ │ ├── BuildBotServices.dll │ │ │ ├── CruiseControlNetServices.dll │ │ │ ├── HudsonServices.dll │ │ │ ├── SirenOfShame.Lib.dll │ │ │ ├── SoxLib.dll │ │ │ ├── TeamCityServices.dll │ │ │ ├── TfsServices.dll │ │ │ ├── TravisCiServices.dll │ │ │ └── UsbLib.dll │ │ ├── SignalR.Client.dll │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ ├── SoxLib.dll │ │ ├── System.Net.Http.Formatting.dll │ │ ├── ZedGraph.dll │ │ └── log4net.dll │ └── 2.3.7 │ │ ├── Microsoft.AspNet.SignalR.Client.dll │ │ ├── Microsoft.TeamFoundation.Build.Client.dll │ │ ├── Microsoft.TeamFoundation.Build.Common.dll │ │ ├── Microsoft.TeamFoundation.Client.dll │ │ ├── Microsoft.TeamFoundation.Common.Library.dll │ │ ├── Microsoft.TeamFoundation.Common.dll │ │ ├── Microsoft.TeamFoundation.Diff.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Client.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Common.Integration.dll │ │ ├── Microsoft.TeamFoundation.VersionControl.Common.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Cache.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.DataStore.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Provision.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.RuleEngine.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Common.dll │ │ ├── Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll │ │ ├── Microsoft.TeamFoundation.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Plugins │ │ ├── BambooServices.dll │ │ ├── BuildBotServices.dll │ │ ├── CruiseControlNetServices.dll │ │ ├── HudsonServices.dll │ │ ├── Microsoft.AspNet.SignalR.Client.dll │ │ ├── Microsoft.ServiceBus.dll │ │ ├── Microsoft.VisualStudio.Services.Client.dll │ │ ├── Microsoft.VisualStudio.Services.Common.dll │ │ ├── Microsoft.VisualStudio.Services.WebApi.dll │ │ ├── SirenOfShame.Lib.dll │ │ ├── SoxLib.dll │ │ ├── System.Net.Http.Formatting.dll │ │ ├── TeamCityServices.dll │ │ ├── TfsServices.dll │ │ ├── TravisCiServices.dll │ │ ├── UsbLib.dll │ │ └── log4net.dll │ │ ├── SignalR.Client.dll │ │ ├── SirenOfShame.Lib.dll │ │ ├── SirenOfShame.exe │ │ ├── Sox │ │ ├── LICENSE.GPL.txt │ │ ├── libgomp-1.dll │ │ ├── libmad.dll │ │ ├── libmp3lame.dll │ │ ├── pthreadgc2.dll │ │ ├── sox.exe │ │ ├── wget.exe │ │ └── zlib1.dll │ │ ├── SoxLib.dll │ │ ├── ZedGraph.dll │ │ └── log4net.dll ├── SirenOfShame.wyp ├── copyeverything.bat ├── sred-left.png ├── sred-top.png └── wyUpdate │ ├── client.wyc │ └── wyUpdate.exe ├── SimpleSirenOfShameDeviceExample ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SimpleSirenOfShameDeviceExample.csproj ├── SimpleSirenOfShameExampleForm.Designer.cs ├── SimpleSirenOfShameExampleForm.cs ├── SimpleSirenOfShameExampleForm.resx └── app.config ├── SirenOfShame.CLI ├── DeviceController.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SirenOfShame.CLI.csproj └── app.config ├── SirenOfShame.Extruder.WixSetup ├── Product.wxs └── SirenOfShame.Extruder.WixSetup.wixproj ├── SirenOfShame.Extruder ├── App.config ├── BrowserPage.Designer.cs ├── BrowserPage.cs ├── BrowserPage.resx ├── Controls │ ├── ExtruderButton.cs │ └── HoverButton.cs ├── FormBase.cs ├── FormBase.resx ├── Helpers │ └── ControlHelpers.cs ├── Icons │ ├── dude.png │ ├── gear.png │ ├── hammer2.png │ ├── nav_refresh.png │ └── newspaper.png ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Models │ ├── ApiResultBase.cs │ ├── ConnectExtruderModel.cs │ ├── CredentialApiModel.cs │ ├── ExtruderSettings.cs │ └── TrayIcon.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── SirenOfShameTrayGreen.ico │ ├── SirenOfShameTrayRed.ico │ └── SirenOfShameTrayTriangle.ico ├── Services │ ├── MyLogManager.cs │ ├── MySosOnlineService.cs │ ├── SetTrayIconEvent.cs │ ├── SosOnlineService.cs │ ├── SosToolTipIcon.cs │ ├── TrayNotifyEvent.cs │ ├── TrayNotifyEventArgs.cs │ └── TrippleDesStringEncryptor.cs ├── SettingsPage.Designer.cs ├── SettingsPage.cs ├── SettingsPage.resx ├── ShameExtruder.ico ├── SirenOfShame.Extruder.csproj ├── SirenOfShame.Extruder.csproj.DotSettings └── packages.config ├── SirenOfShame.HardwareTestGui ├── Audio1.mp3 ├── Audio2.mp3 ├── DeviceConnect.Designer.cs ├── DeviceConnect.cs ├── DeviceConnect.resx ├── DeviceSetup.Designer.cs ├── DeviceSetup.cs ├── DeviceSetup.resx ├── FullTest.Designer.cs ├── FullTest.cs ├── FullTest.resx ├── HardwareTest.Designer.cs ├── HardwareTest.cs ├── HardwareTest.resx ├── InstallFirmware.Designer.cs ├── InstallFirmware.cs ├── InstallFirmware.resx ├── ManualControl.Designer.cs ├── ManualControl.cs ├── ManualControl.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SirenOfShame.HardwareTestGui.csproj ├── SirenOfShame.HardwareTestGui.csproj.DotSettings ├── app.config ├── packages.config ├── sine440hz.wav ├── siren1.wav └── siren2.wav ├── SirenOfShame.Lib ├── Achievements │ ├── AchievementBase.cs │ ├── AndGotAwayWithIt.cs │ ├── Apprentice.cs │ ├── ArribaArribaAndaleAndale.cs │ ├── Assassin.cs │ ├── ChronGrandMaster.cs │ ├── ChronMaster.cs │ ├── CiNinja.cs │ ├── Critical.cs │ ├── GrandMaster.cs │ ├── InTheZone.cs │ ├── JonSkeet.cs │ ├── Legend.cs │ ├── LikeLightning.cs │ ├── Macgyver.cs │ ├── Master.cs │ ├── Napoleon.cs │ ├── Neophyte.cs │ ├── Perfectionist.cs │ ├── ReputationRebound.cs │ ├── ShamePusher.cs │ ├── SpeedDaemon.cs │ ├── Terminator.cs │ └── TimeWarrior.cs ├── AppendTimeDialog.Designer.cs ├── AppendTimeDialog.cs ├── AppendTimeDialog.resx ├── ConfigureSirenDialog.Designer.cs ├── ConfigureSirenDialog.cs ├── ConfigureSirenDialog.resx ├── Device │ ├── AudioPattern.cs │ ├── HardwareType.cs │ ├── ISirenOfShameDevice.cs │ ├── LedPattern.cs │ ├── ManualControlData.cs │ ├── MockSirenOfShameDevice.cs │ ├── MockSirenOfShameDeviceDialog.Designer.cs │ ├── MockSirenOfShameDeviceDialog.cs │ ├── MockSirenOfShameDeviceDialog.resx │ ├── SdCardFileSystem │ │ ├── FileSystemBuilder.cs │ │ ├── FileSystemHeader.cs │ │ ├── UploadAudioPattern.cs │ │ ├── UploadAudioPatternMemory.cs │ │ ├── UploadAudioPatternStream.cs │ │ ├── UploadLedPattern.cs │ │ ├── UsbAudioFatPacket.cs │ │ └── UsbLedFatPacket.cs │ ├── SirenOfShameDevice.cs │ ├── SirenOfShameInfo.cs │ ├── UsbControlPacket.cs │ ├── UsbInfoPacket.cs │ ├── UsbReadAudioPacket.cs │ └── UsbReadLedPacket.cs ├── Dto │ ├── InstanceUserDto.cs │ └── OfflineUserAchievementDto.cs ├── ExceptionMessageBox.Designer.cs ├── ExceptionMessageBox.cs ├── ExceptionMessageBox.resx ├── Exceptions │ ├── BuildDefinitionNotFoundException.cs │ ├── InvalidCredentialsException.cs │ ├── ServerUnavailableException.cs │ └── SosException.cs ├── FormBase.cs ├── Helpers │ ├── ArrayHelpers.cs │ ├── AssemblyHelpers.cs │ ├── ControlHelpers.cs │ ├── FactoryExportProvider.cs │ ├── IEnumerableHelpers.cs │ ├── IocContainer.cs │ ├── ObjectHelpers.cs │ ├── PrettyDateHelper.cs │ ├── SiUnitHelpers.cs │ ├── StringHelpers.cs │ ├── ThreeStateTreeNode.cs │ ├── ThreeStateTreeView.cs │ └── XElementHelpers.cs ├── ICIEntryPoint.cs ├── MyLogManager.cs ├── Network │ └── SosWebClient.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Audio-Applause.wav │ ├── Audio-Boo-Hiss.wav │ ├── Audio-Chime.wav │ ├── Audio-DaDing.wav │ ├── Audio-Ding.wav │ ├── Audio-Plunk.wav │ ├── Audio-Sad-Trombone.wav │ ├── Audio-Tada.wav │ └── ResourceManager.cs ├── ServerConfiguration │ └── ConfigureServerBase.cs ├── Services │ ├── ActiveDirectoryService.cs │ ├── ApiResultBase.cs │ ├── AudioFileService.cs │ ├── CredentialApiModel.cs │ ├── GravatarService.cs │ ├── ImageService.cs │ ├── LedFileService.cs │ ├── MySosOnlineService.cs │ ├── NewSosOnlineNotification.cs │ ├── NewSosOnlineNotificationArgs.cs │ ├── ReputationResetService.cs │ ├── SosOnlineService.cs │ ├── SosOnlineStatusChangeArgs.cs │ └── SoundService.cs ├── Settings │ ├── AchievementAlertPreferenceEnum.cs │ ├── AchievementLookup.cs │ ├── AchievementSetting.cs │ ├── AudioPatternSetting.cs │ ├── BuildDefinitionSetting.cs │ ├── CiEntryPointSetting.cs │ ├── LedPatternSetting.cs │ ├── MyBuildDefinition.cs │ ├── PersonSetting.cs │ ├── Rule.cs │ ├── SirenOfShameSettings.cs │ ├── Sound.cs │ ├── TripleDESStringEncryptor.cs │ ├── UpdateLocation.cs │ ├── Upgrades │ │ ├── Upgrade0To1.cs │ │ ├── Upgrade1To2.cs │ │ ├── Upgrade2To3.cs │ │ ├── Upgrade3To4.cs │ │ ├── Upgrade4To5.cs │ │ ├── Upgrade5To6.cs │ │ ├── Upgrade6To7.cs │ │ ├── Upgrade7To8.cs │ │ └── UpgradeBase.cs │ ├── UserMapping.cs │ └── WhatToSyncEnum.cs ├── SirenOfShame.Lib.csproj ├── SosButton.cs ├── StatCalculators │ ├── BackToBackBuilds.cs │ ├── BuildRatio.cs │ ├── FixedSomeoneElsesBuild.cs │ ├── MaxBuildsInOneDay.cs │ ├── StatCalculatorBase.cs │ └── SuccessInARow.cs ├── UserControlBase.cs ├── Util │ └── BuildStatusUtil.cs ├── Watcher │ ├── BuildStatus.cs │ ├── BuildStatusDto.cs │ ├── BuildStatusEnum.cs │ ├── FileAdapter.cs │ ├── ModalDialogEvent.cs │ ├── ModalDialogEventArgs.cs │ ├── NewAchievementEvent.cs │ ├── NewAchievementEventArgs.cs │ ├── NewAlertEvent.cs │ ├── NewAlertEventArgs.cs │ ├── NewNewsItemEvent.cs │ ├── NewNewsItemEventArgs.cs │ ├── NewUserEvent.cs │ ├── NewUserEventArgs.cs │ ├── PersonBase.cs │ ├── PlayWindowsAudioEvent.cs │ ├── PlayWindowsAudioEventArgs.cs │ ├── RefreshStatusEventArgs.cs │ ├── RulesEngine.cs │ ├── ServiceBase.cs │ ├── SetAudioEvent.cs │ ├── SetAudioEventArgs.cs │ ├── SetLightsEvent.cs │ ├── SetLightsEventArgs.cs │ ├── SetTrayIconEvent.cs │ ├── SetTrayIconEventArgs.cs │ ├── SosDb.cs │ ├── SosOnlinePerson.cs │ ├── StatsChangedEvent.cs │ ├── StatsChangedEventArgs.cs │ ├── StatusChangedEvent.cs │ ├── StatusCheckedEvent.cs │ ├── StatusCheckedEventArgsArgs.cs │ ├── TrayNotifyEvent.cs │ ├── TrayNotifyEventArgs.cs │ ├── UpdateStatusBarEvent.cs │ ├── UpdateStatusBarEventArgs.cs │ ├── WatcherBase.cs │ └── WebClientXml.cs ├── WavEditor.Designer.cs ├── WavEditor.cs ├── WavEditor.resx ├── WavViewControl.Designer.cs ├── WavViewControl.cs ├── WavViewControl.resx ├── app.config └── packages.config ├── SirenOfShame.Test.Unit ├── Achievements │ ├── AndGotAwayWithItTest.cs │ ├── ArribaArribaAndaleAndaleTest.cs │ ├── CiNinjaTest.cs │ ├── CriticalTest.cs │ ├── InTheZoneTest.cs │ ├── LikeLightningTest.cs │ ├── MacgyverTest.cs │ ├── NapoleonTest.cs │ ├── ReputationReboundTest.cs │ └── ShamePusherTest.cs ├── CIEntryPointBuildStatus │ ├── BambooBuildStatusTest.cs │ ├── CruiseControlNetBuildStatusTest.cs │ ├── HudsonBuildStatusTest.cs │ ├── TeamCityBuildStatusTest.cs │ ├── TfsRestBuildStatusTest.cs │ └── TravisCiBuildStatusTest.cs ├── Device │ └── SdCardFileSystem │ │ └── FileSystemBuilderTest.cs ├── Extruder │ └── Services │ │ └── TripleDESStringEncryptorTest.cs ├── Helpers │ ├── PrettyDateHelperTest.cs │ └── StringHelpersTest.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── BambooFailingBuild.xml │ ├── Bug152HudsonDuration.xml │ ├── Bug95UnicodeCharacters.xml │ ├── CruiseControlNetBrokenWithAuthor.xml │ ├── CruiseControlNetJoesProject1.xml │ ├── CruiseControlNetJoesProject2.xml │ ├── JenkinsBuildStatusForIssue10.xml │ ├── JenkinsPassingBuild.xml │ ├── JenkinsUnstable.xml │ ├── ResourceManager.cs │ ├── TeamCity │ │ ├── 10.0.0.4 │ │ │ ├── BuildInfo.xml │ │ │ ├── ChangeInfo.xml │ │ │ ├── ChangeList.xml │ │ │ └── RunningBuild.xml │ │ ├── TeamCityFailingBuild.xml │ │ ├── TeamCityFailingChange.xml │ │ ├── TeamCityFailureDueToCleanup.xml │ │ ├── TeamCityResources.cs │ │ └── TeamCityServerCleanup.xml │ ├── TfsRestBuildDefinitions1.json │ ├── TravisCiWorkingBuild.json │ └── TravisFunkyDate.json ├── Service │ └── TeamCityBuildStatusTest.cs ├── Services │ ├── SosOnlineServiceDummy.cs │ ├── SosOnlineServiceFake.cs │ ├── SosOnlineServiceTest.cs │ ├── SoundServiceTest.cs │ └── TfsRestServiceTest.cs ├── Settings │ ├── PersonSettingTest.cs │ ├── SirenOfShameSettingsTest.cs │ ├── TripleDESStringEncryptorTest.cs │ └── Upgrades │ │ ├── Upgrade0To1Test.cs │ │ ├── Upgrade1To2Test.cs │ │ ├── Upgrade2To3Test.cs │ │ └── Upgrade5To6Test.cs ├── SirenOfShame.Test.Unit.csproj ├── StatCalculators │ └── SuccessInARowTest.cs ├── TestHelpers │ └── AssertHelpers.cs ├── TfsRestServices │ └── TfsRestWatcherTest.cs ├── UI │ ├── NewsFeedTest.cs │ └── ViewBuildsTest.cs ├── Util │ └── BuildStatusUtilTest.cs ├── Watcher │ ├── BuildStatusTest.cs │ ├── CiEntryPointSettingFake.cs │ ├── FakeRulesEngine.cs │ ├── FakeWebClient.cs │ ├── FileAdapterFake.cs │ ├── NewAlertEventArgsTest.cs │ ├── NewNewsItemEventArgsTest.cs │ ├── RulesEngineTest.cs │ ├── RulesEngineWrapper.cs │ ├── SirenOfShameSettingsFake.cs │ ├── SosDbFake.cs │ ├── SosDbTest.cs │ ├── WatcherFake.cs │ └── WebClientXmlTest.cs ├── app.config └── packages.config ├── SirenOfShame.WixSetup ├── Product.wxs ├── SirenOfShame.WixSetup.wixproj └── sign.bat ├── SirenOfShame.sln ├── SirenOfShame.sln.DotSettings ├── SirenOfShame.vsmdi ├── SirenOfShame ├── App.config ├── Avatar.Designer.cs ├── Avatar.cs ├── Avatar.resx ├── AvatarPicker.Designer.cs ├── AvatarPicker.cs ├── AvatarPicker.resx ├── BuildFailedMessageBox.Designer.cs ├── BuildFailedMessageBox.cs ├── BuildFailedMessageBox.resx ├── BuildStats.Designer.cs ├── BuildStats.cs ├── BuildStats.resx ├── Configuration │ ├── AddMapping.Designer.cs │ ├── AddMapping.cs │ ├── AddMapping.resx │ ├── AddRule.Designer.cs │ ├── AddRule.cs │ ├── AddRule.resx │ ├── ConfigureRules.Designer.cs │ ├── ConfigureRules.cs │ ├── ConfigureRules.resx │ ├── ConfigureServer.Designer.cs │ ├── ConfigureServer.cs │ ├── ConfigureServer.resx │ ├── ConfigureServers.Designer.cs │ ├── ConfigureServers.cs │ ├── ConfigureServers.resx │ ├── ConfigureSosOnline.Designer.cs │ ├── ConfigureSosOnline.cs │ ├── ConfigureSosOnline.resx │ ├── ConfigureSounds.Designer.cs │ ├── ConfigureSounds.cs │ ├── ConfigureSounds.resx │ ├── FindOldAchievements.Designer.cs │ ├── FindOldAchievements.cs │ ├── FindOldAchievements.resx │ ├── ResetReputation.Designer.cs │ ├── ResetReputation.cs │ ├── ResetReputation.resx │ ├── Settings.Designer.cs │ ├── Settings.cs │ ├── Settings.resx │ ├── SyncOffline.Designer.cs │ ├── SyncOffline.cs │ ├── SyncOffline.resx │ ├── SyncOnline.Designer.cs │ ├── SyncOnline.cs │ ├── SyncOnline.resx │ ├── UserMappings.Designer.cs │ ├── UserMappings.cs │ └── UserMappings.resx ├── FirmwareUpgrade.xml ├── FullScreenEnforcer.Designer.cs ├── FullScreenEnforcer.cs ├── FullScreenEnforcer.resx ├── FullScreenFormBase.cs ├── GettingStarted.Designer.cs ├── GettingStarted.cs ├── GettingStarted.resx ├── HeightAnimator.cs ├── HelpAbout.Designer.cs ├── HelpAbout.cs ├── HelpAbout.resx ├── Helpers │ └── GraphicsHelpers.cs ├── Leaders.Designer.cs ├── Leaders.cs ├── Leaders.resx ├── ListViewItemComparer.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── NewAchievement.Designer.cs ├── NewAchievement.cs ├── NewAchievement.resx ├── NewsFeed.Designer.cs ├── NewsFeed.cs ├── NewsFeed.resx ├── NewsItem.Designer.cs ├── NewsItem.cs ├── NewsItem.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ └── SirenOfShame.Watcher.BuildStatus.datasource │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── AchievementBackground.pdn │ ├── AchievementBackground.png │ ├── AchievementBall.png │ ├── Avatars │ │ ├── american_eskimo_puppy.png │ │ ├── angry_dog.png │ │ ├── basset_hound.png │ │ ├── beagle_harrier.png │ │ ├── black_and_white_dog.png │ │ ├── black_lab.png │ │ ├── cat_angry.png │ │ ├── cat_black.png │ │ ├── cat_fat.png │ │ ├── cat_tabby.png │ │ ├── cat_tongue_out.png │ │ ├── cat_white.png │ │ ├── chocolate_lab.png │ │ ├── chow.png │ │ ├── german_shepherd.png │ │ ├── golden_retriever_puppy.png │ │ ├── growling_pup.png │ │ ├── jack_russell_terrier.png │ │ ├── kromfohrlander.png │ │ ├── poodle.png │ │ └── retriever.png │ ├── CloseButton.png │ ├── CloseButton2.png │ ├── GettingStarted │ │ ├── earth.bmp │ │ ├── server.bmp │ │ └── server_checkbox_checked.bmp │ ├── JoesFavorite3.png │ ├── MainBackground.png │ ├── RibbonBackground.png │ ├── RibbonMore.png │ ├── SirenOfShameTrayGreen.ico │ ├── SirenOfShameTrayRed.ico │ ├── SirenOfShameTrayTriangle.ico │ ├── SmallButtons │ │ ├── add.bmp │ │ ├── check.bmp │ │ ├── checkbox.png │ │ ├── delete.bmp │ │ ├── edit.bmp │ │ ├── media_play.bmp │ │ ├── ok.bmp │ │ ├── refresh.bmp │ │ └── view.png │ ├── Smiley.png │ ├── Toolbar │ │ ├── alarm.bmp │ │ ├── bell3.bmp │ │ ├── businessmen.bmp │ │ ├── businessmen_hot.bmp │ │ ├── earth.bmp │ │ ├── gears.bmp │ │ ├── help.bmp │ │ ├── id_cards.bmp │ │ ├── lighthouse.bmp │ │ ├── loudspeaker.bmp │ │ ├── loudspeaker_forbidden.bmp │ │ ├── media_play.bmp │ │ ├── messages.bmp │ │ ├── music.bmp │ │ ├── recycle.bmp │ │ ├── server.bmp │ │ ├── users4_checkbox_checked.bmp │ │ ├── users4_checkbox_unchecked.bmp │ │ ├── window_gear.bmp │ │ └── window_size.bmp │ ├── TrashSmall.png │ ├── ball_gray_big.png │ ├── ball_green_big.png │ ├── ball_red_big.png │ ├── circle20.png │ ├── clock.bmp │ ├── delete2.png │ ├── error.bmp │ ├── funnel.bmp │ ├── funnel.png │ ├── gear.png │ ├── gear_white.png │ ├── gradient15.png │ ├── gradient33.png │ ├── id_cards.png │ ├── loading.gif │ ├── loadingBlue.gif │ ├── music.png │ ├── nav_left.png │ ├── nav_right.png │ ├── nav_up_right.png │ ├── navigate_down2.png │ ├── navigate_up.png │ ├── ok.bmp │ ├── question_big.png │ ├── separater.png │ ├── splash.png │ ├── twitter.png │ └── unknown.bmp ├── RuleDropDownItemTag.cs ├── Separator.cs ├── SirenConfiguration │ ├── TestSiren.Designer.cs │ ├── TestSiren.cs │ └── TestSiren.resx ├── SirenFirmwareUpgrade.Designer.cs ├── SirenFirmwareUpgrade.cs ├── SirenFirmwareUpgrade.resx ├── SirenOfShame.csproj ├── SirenOfShame.csproj.DotSettings ├── SirenOfShameTrayBlank.ico ├── SosMessageBox.Designer.cs ├── SosMessageBox.cs ├── SosMessageBox.resx ├── SplashScreen.Designer.cs ├── SplashScreen.cs ├── SplashScreen.resx ├── TimeboxEnforcer.Designer.cs ├── TimeboxEnforcer.cs ├── TimeboxEnforcer.resx ├── UserPanel.Designer.cs ├── UserPanel.cs ├── UserPanel.resx ├── ViewBuildBase.cs ├── ViewBuildBig.Designer.cs ├── ViewBuildBig.cs ├── ViewBuildBig.resx ├── ViewBuildSmall.Designer.cs ├── ViewBuildSmall.cs ├── ViewBuildSmall.resx ├── ViewBuilds.Designer.cs ├── ViewBuilds.cs ├── ViewBuilds.resx ├── ViewUser.Designer.cs ├── ViewUser.cs ├── ViewUser.resx ├── WaterMarkTextBox.cs ├── _postbuild.bat └── packages.config ├── SoxLib.Test.Unit ├── Properties │ └── AssemblyInfo.cs ├── SoxLib.Test.Unit.csproj ├── SoxTest.cs ├── TestHelpers │ └── StreamTestHelper.cs ├── TestInit.cs ├── doh-mp3.u8 ├── doh-wav-trim.u8 ├── doh-wav.u8 ├── doh.mp3 ├── doh.wav ├── packages.config ├── pattern1.sosled ├── pattern2.sosled └── pattern3.sosled ├── SoxLib ├── ConvertOptions.cs ├── EncodingType.cs ├── FileInfo.cs ├── FileType.cs ├── Helpers │ ├── DeleteFileStream.cs │ └── StreamHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── Sox.cs ├── SoxLib.csproj ├── SoxTime.cs ├── TrimOptions.cs └── packages.config ├── TeamCityServices ├── Properties │ └── AssemblyInfo.cs ├── ServerConfiguration │ ├── ConfigureTeamCity.Designer.cs │ ├── ConfigureTeamCity.cs │ └── ConfigureTeamCity.resx ├── TeamCityBuildDefinition.cs ├── TeamCityBuildStatus.cs ├── TeamCityCIEntryPoint.cs ├── TeamCityProject.cs ├── TeamCityService.cs ├── TeamCityServices.csproj ├── Watcher │ └── TeamCityWatcher.cs ├── app.config └── packages.config ├── TeensyHidBootloaderLib ├── IntelHexFile.cs ├── McuType.cs ├── Properties │ └── AssemblyInfo.cs ├── TeensyDevice.cs ├── TeensyHidBootloaderLib.csproj ├── TeensyHidBootloaderProgrammer.cs └── packages.config ├── TestPages ├── Default.aspx ├── Default.aspx.cs ├── Default.aspx.designer.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── jquery-1.4.1-vsdoc.js │ ├── jquery-1.4.1.js │ └── jquery-1.4.1.min.js ├── TeamCityFail.aspx ├── TeamCityFail.aspx.cs ├── TeamCityFail.aspx.designer.cs ├── TeamCitySuccess.aspx ├── TeamCitySuccess.aspx.cs ├── TeamCitySuccess.aspx.designer.cs ├── TestPages.csproj ├── Web.Debug.config ├── Web.Release.config └── Web.config ├── TfsRestServices ├── CommentsCache.cs ├── Properties │ └── AssemblyInfo.cs ├── ServerConfiguration │ ├── ConfigureTfsRest.Designer.cs │ ├── ConfigureTfsRest.cs │ └── ConfigureTfsRest.resx ├── TfsConnectionDetails.cs ├── TfsJsonService.cs ├── TfsJsonWrapper.cs ├── TfsRestBuildDefinition.cs ├── TfsRestBuildStatus.cs ├── TfsRestCiEntryPoint.cs ├── TfsRestProject.cs ├── TfsRestProjectCollection.cs ├── TfsRestService.cs ├── TfsRestServices.csproj ├── TfsRestWatcher.cs ├── app.config └── packages.config ├── TfsServices ├── Configuration │ ├── CheckinInfoGetterService.cs │ ├── ConfigureTfs.Designer.cs │ ├── ConfigureTfs.cs │ ├── ConfigureTfs.resx │ ├── MyBuildServer.cs │ ├── MyChangeset.cs │ ├── MyTfsBuildDefinition.cs │ ├── MyTfsProject.cs │ ├── MyTfsProjectCollection.cs │ └── MyTfsServer.cs ├── Properties │ └── AssemblyInfo.cs ├── TfsCIEntryPoint.cs ├── TfsServices.csproj ├── TfsWatcher.cs ├── app.config └── packages.config ├── TraceAndTestImpact.testsettings ├── TravisCiServices ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── AuthTokenImg.png ├── ServerConfiguration │ ├── ConfigureTravisCi.Designer.cs │ ├── ConfigureTravisCi.cs │ ├── ConfigureTravisCi.resx │ ├── GenerateTravisToken.Designer.cs │ ├── GenerateTravisToken.cs │ └── GenerateTravisToken.resx ├── TravisCiBuildDefinition.cs ├── TravisCiBuildStatus.cs ├── TravisCiEntryPoint.cs ├── TravisCiService.cs ├── TravisCiServices.csproj ├── TravisCiServices.csproj.DotSettings ├── TravisCiWatcher.cs ├── app.config └── packages.config ├── UsbLib ├── DevInfoData.cs ├── DeviceInformationSet.cs ├── DeviceInterface.cs ├── DeviceInterfaceData.cs ├── DeviceInterfaceDetail.cs ├── DeviceInterfaceDetailData.cs ├── DeviceInterfaceFile.cs ├── DiGetClassFlags.cs ├── HidCaps.cs ├── PInvoke.cs ├── Properties │ └── AssemblyInfo.cs ├── UsbDeviceNotification.cs └── UsbLib.csproj ├── WavToC ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── WavToC.csproj └── app.config ├── _makeFirmwareUpgradeXml.bat └── wyBuild or wyUpdate Update Deploy Instructions.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/.mailmap -------------------------------------------------------------------------------- /AppVeyorServices/AppVeyor/GetProjectLastBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/AppVeyor/GetProjectLastBuild.cs -------------------------------------------------------------------------------- /AppVeyorServices/AppVeyor/GetProjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/AppVeyor/GetProjects.cs -------------------------------------------------------------------------------- /AppVeyorServices/AppVeyor/GetProjectsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/AppVeyor/GetProjectsResponse.cs -------------------------------------------------------------------------------- /AppVeyorServices/AppVeyor/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/AppVeyor/Project.cs -------------------------------------------------------------------------------- /AppVeyorServices/AppVeyor/ProjectBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/AppVeyor/ProjectBuild.cs -------------------------------------------------------------------------------- /AppVeyorServices/AppVeyorBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/AppVeyorBuildDefinition.cs -------------------------------------------------------------------------------- /AppVeyorServices/AppVeyorBuildStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/AppVeyorBuildStatus.cs -------------------------------------------------------------------------------- /AppVeyorServices/AppVeyorCiEntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/AppVeyorCiEntryPoint.cs -------------------------------------------------------------------------------- /AppVeyorServices/AppVeyorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/AppVeyorService.cs -------------------------------------------------------------------------------- /AppVeyorServices/AppVeyorServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/AppVeyorServices.csproj -------------------------------------------------------------------------------- /AppVeyorServices/AppVeyorWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/AppVeyorWatcher.cs -------------------------------------------------------------------------------- /AppVeyorServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AppVeyorServices/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AppVeyorServices/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/Properties/Resources.resx -------------------------------------------------------------------------------- /AppVeyorServices/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/app.config -------------------------------------------------------------------------------- /AppVeyorServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/AppVeyorServices/packages.config -------------------------------------------------------------------------------- /BambooServices/BambooBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BambooServices/BambooBuildDefinition.cs -------------------------------------------------------------------------------- /BambooServices/BambooBuildStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BambooServices/BambooBuildStatus.cs -------------------------------------------------------------------------------- /BambooServices/BambooCIEntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BambooServices/BambooCIEntryPoint.cs -------------------------------------------------------------------------------- /BambooServices/BambooService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BambooServices/BambooService.cs -------------------------------------------------------------------------------- /BambooServices/BambooServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BambooServices/BambooServices.csproj -------------------------------------------------------------------------------- /BambooServices/BambooWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BambooServices/BambooWatcher.cs -------------------------------------------------------------------------------- /BambooServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BambooServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BambooServices/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BambooServices/app.config -------------------------------------------------------------------------------- /BambooServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BambooServices/packages.config -------------------------------------------------------------------------------- /BuildBotServices/BuildBotBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BuildBotServices/BuildBotBuildDefinition.cs -------------------------------------------------------------------------------- /BuildBotServices/BuildBotBuildStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BuildBotServices/BuildBotBuildStatus.cs -------------------------------------------------------------------------------- /BuildBotServices/BuildBotCIEntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BuildBotServices/BuildBotCIEntryPoint.cs -------------------------------------------------------------------------------- /BuildBotServices/BuildBotService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BuildBotServices/BuildBotService.cs -------------------------------------------------------------------------------- /BuildBotServices/BuildBotServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BuildBotServices/BuildBotServices.csproj -------------------------------------------------------------------------------- /BuildBotServices/BuildBotWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BuildBotServices/BuildBotWatcher.cs -------------------------------------------------------------------------------- /BuildBotServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BuildBotServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BuildBotServices/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BuildBotServices/app.config -------------------------------------------------------------------------------- /BuildBotServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/BuildBotServices/packages.config -------------------------------------------------------------------------------- /CruiseControlNetServices/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/CruiseControlNetServices/app.config -------------------------------------------------------------------------------- /CruiseControlNetServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/CruiseControlNetServices/packages.config -------------------------------------------------------------------------------- /HudsonServices/HudsonBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/HudsonServices/HudsonBuildDefinition.cs -------------------------------------------------------------------------------- /HudsonServices/HudsonBuildStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/HudsonServices/HudsonBuildStatus.cs -------------------------------------------------------------------------------- /HudsonServices/HudsonCIEntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/HudsonServices/HudsonCIEntryPoint.cs -------------------------------------------------------------------------------- /HudsonServices/HudsonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/HudsonServices/HudsonService.cs -------------------------------------------------------------------------------- /HudsonServices/HudsonServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/HudsonServices/HudsonServices.csproj -------------------------------------------------------------------------------- /HudsonServices/HudsonWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/HudsonServices/HudsonWatcher.cs -------------------------------------------------------------------------------- /HudsonServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/HudsonServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HudsonServices/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/HudsonServices/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /HudsonServices/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/HudsonServices/Properties/Resources.resx -------------------------------------------------------------------------------- /HudsonServices/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/HudsonServices/app.config -------------------------------------------------------------------------------- /HudsonServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/HudsonServices/packages.config -------------------------------------------------------------------------------- /Images/MainFormIcons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Images/MainFormIcons.svg -------------------------------------------------------------------------------- /Images/Splash.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Images/Splash.pdn -------------------------------------------------------------------------------- /Images/balls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Images/balls.svg -------------------------------------------------------------------------------- /Images/curley borders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Images/curley borders.svg -------------------------------------------------------------------------------- /Images/font.txt: -------------------------------------------------------------------------------- 1 | Moire ExtraBold -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Libs/Microsoft.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/Microsoft.VisualBasic.dll -------------------------------------------------------------------------------- /Libs/TeamFoundation/Microsoft.ServiceBus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/TeamFoundation/Microsoft.ServiceBus.dll -------------------------------------------------------------------------------- /Libs/TeamFoundation/Microsoft.TeamFoundation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/TeamFoundation/Microsoft.TeamFoundation.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/IncludeFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/IncludeFile.ico -------------------------------------------------------------------------------- /Libs/WiX/WixBin/LocalizationFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/LocalizationFile.ico -------------------------------------------------------------------------------- /Libs/WiX/WixBin/LuxTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/LuxTasks.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/ProductFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/ProductFile.ico -------------------------------------------------------------------------------- /Libs/WiX/WixBin/ProjectFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/ProjectFile.ico -------------------------------------------------------------------------------- /Libs/WiX/WixBin/SetupBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/SetupBuilder.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/ThmViewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/ThmViewer.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixBalExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixBalExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixComPlusExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixComPlusExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixCop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixCop.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixDependencyExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixDependencyExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixDifxAppExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixDifxAppExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixDirectXExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixDirectXExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixFirewallExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixFirewallExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixGamingExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixGamingExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixIIsExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixIIsExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixLibraryFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixLibraryFile.ico -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixLuxExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixLuxExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixMsmqExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixMsmqExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixNetFxExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixNetFxExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixPSExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixPSExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixSqlExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixSqlExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixTagExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixTagExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixTasks.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixUIExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixUIExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixUnit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixUnit.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixUnit.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixUnit.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixUtilExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixUtilExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/WixVSExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/WixVSExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/candle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/candle.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/candle.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/candle.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/darice.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/darice.cub -------------------------------------------------------------------------------- /Libs/WiX/WixBin/dark.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/dark.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/dark.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/dark.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/difxapp_ia64.wixlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/difxapp_ia64.wixlib -------------------------------------------------------------------------------- /Libs/WiX/WixBin/difxapp_x64.wixlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/difxapp_x64.wixlib -------------------------------------------------------------------------------- /Libs/WiX/WixBin/difxapp_x86.wixlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/difxapp_x86.wixlib -------------------------------------------------------------------------------- /Libs/WiX/WixBin/heat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/heat.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/heat.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/heat.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/insignia.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/insignia.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/insignia.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/insignia.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/light.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/light.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/light.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/light.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/lit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/lit.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/lit.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/lit.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/lux.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/lux.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/lux.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/lux.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/melt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/melt.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/melt.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/melt.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/mergemod.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/mergemod.cub -------------------------------------------------------------------------------- /Libs/WiX/WixBin/mergemod.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/mergemod.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/mspatchc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/mspatchc.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/nit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/nit.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/nit.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/nit.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/pyro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/pyro.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/pyro.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/pyro.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/sconce2010.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/sconce2010.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/setup.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/setupbld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/setupbld.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/shine.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/shine.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/shine.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/shine.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/smoke.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/smoke.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/smoke.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/smoke.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/torch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/torch.exe -------------------------------------------------------------------------------- /Libs/WiX/WixBin/torch.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/torch.exe.config -------------------------------------------------------------------------------- /Libs/WiX/WixBin/votive2010.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/votive2010.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/wconsole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/wconsole.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/winterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/winterop.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/wix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/wix.dll -------------------------------------------------------------------------------- /Libs/WiX/WixBin/wui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/WixBin/wui.dll -------------------------------------------------------------------------------- /Libs/WiX/v3.x/LuxTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/v3.x/LuxTasks.dll -------------------------------------------------------------------------------- /Libs/WiX/v3.x/WixLuxExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/v3.x/WixLuxExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/v3.x/WixNetFxExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/v3.x/WixNetFxExtension.dll -------------------------------------------------------------------------------- /Libs/WiX/v3.x/WixTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/v3.x/WixTasks.dll -------------------------------------------------------------------------------- /Libs/WiX/v3.x/darice.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/v3.x/darice.cub -------------------------------------------------------------------------------- /Libs/WiX/v3.x/lux.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/v3.x/lux.targets -------------------------------------------------------------------------------- /Libs/WiX/v3.x/winterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/v3.x/winterop.dll -------------------------------------------------------------------------------- /Libs/WiX/v3.x/wix.ca.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/v3.x/wix.ca.targets -------------------------------------------------------------------------------- /Libs/WiX/v3.x/wix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/v3.x/wix.dll -------------------------------------------------------------------------------- /Libs/WiX/v3.x/wix.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/v3.x/wix.targets -------------------------------------------------------------------------------- /Libs/WiX/v3.x/wix200x.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/v3.x/wix200x.targets -------------------------------------------------------------------------------- /Libs/WiX/v3.x/wix2010.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/WiX/v3.x/wix2010.targets -------------------------------------------------------------------------------- /Libs/ZedGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/ZedGraph.dll -------------------------------------------------------------------------------- /Libs/sox-14.3.2/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/ChangeLog.txt -------------------------------------------------------------------------------- /Libs/sox-14.3.2/LICENSE.GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/LICENSE.GPL.txt -------------------------------------------------------------------------------- /Libs/sox-14.3.2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/README.txt -------------------------------------------------------------------------------- /Libs/sox-14.3.2/README.win32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/README.win32.txt -------------------------------------------------------------------------------- /Libs/sox-14.3.2/batch-example.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/batch-example.bat -------------------------------------------------------------------------------- /Libs/sox-14.3.2/libgomp-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/libgomp-1.dll -------------------------------------------------------------------------------- /Libs/sox-14.3.2/libmad.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/libmad.dll -------------------------------------------------------------------------------- /Libs/sox-14.3.2/libmp3lame.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/libmp3lame.dll -------------------------------------------------------------------------------- /Libs/sox-14.3.2/pthreadgc2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/pthreadgc2.dll -------------------------------------------------------------------------------- /Libs/sox-14.3.2/sox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/sox.exe -------------------------------------------------------------------------------- /Libs/sox-14.3.2/sox.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/sox.pdf -------------------------------------------------------------------------------- /Libs/sox-14.3.2/soxformat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/soxformat.pdf -------------------------------------------------------------------------------- /Libs/sox-14.3.2/soxi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/soxi.pdf -------------------------------------------------------------------------------- /Libs/sox-14.3.2/wget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/wget.exe -------------------------------------------------------------------------------- /Libs/sox-14.3.2/wget.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/wget.ini -------------------------------------------------------------------------------- /Libs/sox-14.3.2/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/sox-14.3.2/zlib1.dll -------------------------------------------------------------------------------- /Libs/wyUpdate/AutomaticUpdater.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/wyUpdate/AutomaticUpdater.dll -------------------------------------------------------------------------------- /Libs/wyUpdate/AutomaticUpdater.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/wyUpdate/AutomaticUpdater.pdb -------------------------------------------------------------------------------- /Libs/wyUpdate/AutomaticUpdater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/wyUpdate/AutomaticUpdater.xml -------------------------------------------------------------------------------- /Libs/wyUpdate/AutomaticUpdater/Control/Args.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/wyUpdate/AutomaticUpdater/Control/Args.cs -------------------------------------------------------------------------------- /Libs/wyUpdate/AutomaticUpdater/Control/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/wyUpdate/AutomaticUpdater/Control/cross.png -------------------------------------------------------------------------------- /Libs/wyUpdate/AutomaticUpdater/Control/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/wyUpdate/AutomaticUpdater/Control/info.png -------------------------------------------------------------------------------- /Libs/wyUpdate/AutomaticUpdater/Control/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/wyUpdate/AutomaticUpdater/Control/tick.png -------------------------------------------------------------------------------- /Libs/wyUpdate/AutomaticUpdater/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/wyUpdate/AutomaticUpdater/License.txt -------------------------------------------------------------------------------- /Libs/wyUpdate/why is the source here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Libs/wyUpdate/why is the source here.txt -------------------------------------------------------------------------------- /Local.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Local.testsettings -------------------------------------------------------------------------------- /MockCiServerServices/ConfigureMock.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/ConfigureMock.Designer.cs -------------------------------------------------------------------------------- /MockCiServerServices/ConfigureMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/ConfigureMock.cs -------------------------------------------------------------------------------- /MockCiServerServices/ConfigureMock.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/ConfigureMock.resx -------------------------------------------------------------------------------- /MockCiServerServices/MockBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/MockBuildDefinition.cs -------------------------------------------------------------------------------- /MockCiServerServices/MockCiEntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/MockCiEntryPoint.cs -------------------------------------------------------------------------------- /MockCiServerServices/MockCiServerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/MockCiServerForm.Designer.cs -------------------------------------------------------------------------------- /MockCiServerServices/MockCiServerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/MockCiServerForm.cs -------------------------------------------------------------------------------- /MockCiServerServices/MockCiServerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/MockCiServerForm.resx -------------------------------------------------------------------------------- /MockCiServerServices/MockCiServerServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/MockCiServerServices.csproj -------------------------------------------------------------------------------- /MockCiServerServices/MockProject.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/MockProject.Designer.cs -------------------------------------------------------------------------------- /MockCiServerServices/MockProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/MockProject.cs -------------------------------------------------------------------------------- /MockCiServerServices/MockProject.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/MockProject.resx -------------------------------------------------------------------------------- /MockCiServerServices/MockWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/MockWatcher.cs -------------------------------------------------------------------------------- /MockCiServerServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MockCiServerServices/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/MockCiServerServices/app.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/README.md -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.0.0.1/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.0.0.1/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.0.0.2/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.0.0.2/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.0.0.3/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.0.0.3/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.1.0/FirmwareUpgrade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.1.0/FirmwareUpgrade.xml -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.1.0/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.1.0/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.1.0/SoxLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.1.0/SoxLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.1.0/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.1.0/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.1.1/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.1.1/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.1.2/Plugins/SoxLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.1.2/Plugins/SoxLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.1.2/Plugins/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.1.2/Plugins/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.1.2/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.1.2/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.1.3/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.1.3/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.1.4/Plugins/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.1.4/Plugins/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.1.4/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.1.4/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.2.0/Plugins/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.2.0/Plugins/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.2.0/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.2.0/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.2.0/ZedGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.2.0/ZedGraph.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.3.0/Plugins/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.3.0/Plugins/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.3.0/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.3.0/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.3.0/ZedGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.3.0/ZedGraph.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.4.0/Plugins/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.4.0/Plugins/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.4.0/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.4.0/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.4.0/ZedGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.4.0/ZedGraph.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.5.0/Plugins/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.5.0/Plugins/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.5.0/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.5.0/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.5.0/ZedGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.5.0/ZedGraph.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.6.0/Plugins/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.6.0/Plugins/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.6.0/Release Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.6.0/Release Notes.txt -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.6.0/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.6.0/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/1.6.0/ZedGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/1.6.0/ZedGraph.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.1.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.1.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.1.1/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.1.1/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.1.1/Plugins/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.1.1/Plugins/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.1.1/SignalR.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.1.1/SignalR.Client.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.1.1/SignalR.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.1.1/SignalR.Client.xml -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.1.1/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.1.1/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.1.1/ZedGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.1.1/ZedGraph.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.2.0/Plugins/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.2.0/Plugins/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.2.0/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.2.0/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.2.0/ZedGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.2.0/ZedGraph.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.2.1/Plugins/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.2.1/Plugins/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.2.1/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.2.1/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.2.1/SoxLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.2.1/SoxLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.2.1/ZedGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.2.1/ZedGraph.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.2.3/Plugins/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.2.3/Plugins/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.2.3/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.2.3/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.2.3/SoxLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.2.3/SoxLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.2.3/ZedGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.2.3/ZedGraph.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.10/Plugins/SoxLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.10/Plugins/SoxLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.10/Plugins/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.10/Plugins/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.10/SignalR.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.10/SignalR.Client.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.10/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.10/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.10/SoxLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.10/SoxLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.10/ZedGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.10/ZedGraph.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.10/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.10/log4net.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/Plugins/SoxLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/Plugins/SoxLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/Plugins/UsbLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/Plugins/UsbLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/Plugins/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/Plugins/log4net.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/SignalR.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/SignalR.Client.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/SirenOfShame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/SirenOfShame.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/Sox/LICENSE.GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/Sox/LICENSE.GPL.txt -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/Sox/libgomp-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/Sox/libgomp-1.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/Sox/libmad.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/Sox/libmad.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/Sox/libmp3lame.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/Sox/libmp3lame.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/Sox/pthreadgc2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/Sox/pthreadgc2.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/Sox/sox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/Sox/sox.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/Sox/wget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/Sox/wget.exe -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/Sox/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/Sox/zlib1.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/SoxLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/SoxLib.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/ZedGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/ZedGraph.dll -------------------------------------------------------------------------------- /Releases/BuildArtifacts/2.3.7/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/BuildArtifacts/2.3.7/log4net.dll -------------------------------------------------------------------------------- /Releases/SirenOfShame.wyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/SirenOfShame.wyp -------------------------------------------------------------------------------- /Releases/copyeverything.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/copyeverything.bat -------------------------------------------------------------------------------- /Releases/sred-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/sred-left.png -------------------------------------------------------------------------------- /Releases/sred-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/sred-top.png -------------------------------------------------------------------------------- /Releases/wyUpdate/client.wyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/wyUpdate/client.wyc -------------------------------------------------------------------------------- /Releases/wyUpdate/wyUpdate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/Releases/wyUpdate/wyUpdate.exe -------------------------------------------------------------------------------- /SimpleSirenOfShameDeviceExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SimpleSirenOfShameDeviceExample/Program.cs -------------------------------------------------------------------------------- /SimpleSirenOfShameDeviceExample/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SimpleSirenOfShameDeviceExample/app.config -------------------------------------------------------------------------------- /SirenOfShame.CLI/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.CLI/DeviceController.cs -------------------------------------------------------------------------------- /SirenOfShame.CLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.CLI/Program.cs -------------------------------------------------------------------------------- /SirenOfShame.CLI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.CLI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SirenOfShame.CLI/SirenOfShame.CLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.CLI/SirenOfShame.CLI.csproj -------------------------------------------------------------------------------- /SirenOfShame.CLI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.CLI/app.config -------------------------------------------------------------------------------- /SirenOfShame.Extruder.WixSetup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder.WixSetup/Product.wxs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/App.config -------------------------------------------------------------------------------- /SirenOfShame.Extruder/BrowserPage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/BrowserPage.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/BrowserPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/BrowserPage.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/BrowserPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/BrowserPage.resx -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Controls/ExtruderButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Controls/ExtruderButton.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Controls/HoverButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Controls/HoverButton.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/FormBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/FormBase.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/FormBase.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/FormBase.resx -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Helpers/ControlHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Helpers/ControlHelpers.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Icons/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Icons/dude.png -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Icons/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Icons/gear.png -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Icons/hammer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Icons/hammer2.png -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Icons/nav_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Icons/nav_refresh.png -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Icons/newspaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Icons/newspaper.png -------------------------------------------------------------------------------- /SirenOfShame.Extruder/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/MainForm.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/MainForm.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/MainForm.resx -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Models/ApiResultBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Models/ApiResultBase.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Models/ExtruderSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Models/ExtruderSettings.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Models/TrayIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Models/TrayIcon.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Program.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Properties/Resources.resx -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Services/MyLogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Services/MyLogManager.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Services/SosToolTipIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Services/SosToolTipIcon.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/Services/TrayNotifyEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/Services/TrayNotifyEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/SettingsPage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/SettingsPage.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/SettingsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/SettingsPage.cs -------------------------------------------------------------------------------- /SirenOfShame.Extruder/SettingsPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/SettingsPage.resx -------------------------------------------------------------------------------- /SirenOfShame.Extruder/ShameExtruder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/ShameExtruder.ico -------------------------------------------------------------------------------- /SirenOfShame.Extruder/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Extruder/packages.config -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/Audio1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/Audio1.mp3 -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/Audio2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/Audio2.mp3 -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/DeviceConnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/DeviceConnect.cs -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/DeviceConnect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/DeviceConnect.resx -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/DeviceSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/DeviceSetup.cs -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/DeviceSetup.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/DeviceSetup.resx -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/FullTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/FullTest.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/FullTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/FullTest.cs -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/FullTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/FullTest.resx -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/HardwareTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/HardwareTest.cs -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/HardwareTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/HardwareTest.resx -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/InstallFirmware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/InstallFirmware.cs -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/InstallFirmware.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/InstallFirmware.resx -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/ManualControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/ManualControl.cs -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/ManualControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/ManualControl.resx -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/Program.cs -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/app.config -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/packages.config -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/sine440hz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/sine440hz.wav -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/siren1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/siren1.wav -------------------------------------------------------------------------------- /SirenOfShame.HardwareTestGui/siren2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.HardwareTestGui/siren2.wav -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/AchievementBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/AchievementBase.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/AndGotAwayWithIt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/AndGotAwayWithIt.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/Apprentice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/Apprentice.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/Assassin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/Assassin.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/ChronGrandMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/ChronGrandMaster.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/ChronMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/ChronMaster.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/CiNinja.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/CiNinja.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/Critical.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/Critical.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/GrandMaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/GrandMaster.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/InTheZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/InTheZone.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/JonSkeet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/JonSkeet.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/Legend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/Legend.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/LikeLightning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/LikeLightning.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/Macgyver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/Macgyver.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/Master.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/Napoleon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/Napoleon.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/Neophyte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/Neophyte.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/Perfectionist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/Perfectionist.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/ShamePusher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/ShamePusher.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/SpeedDaemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/SpeedDaemon.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/Terminator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/Terminator.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Achievements/TimeWarrior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Achievements/TimeWarrior.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/AppendTimeDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/AppendTimeDialog.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/AppendTimeDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/AppendTimeDialog.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/AppendTimeDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/AppendTimeDialog.resx -------------------------------------------------------------------------------- /SirenOfShame.Lib/ConfigureSirenDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/ConfigureSirenDialog.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/ConfigureSirenDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/ConfigureSirenDialog.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/ConfigureSirenDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/ConfigureSirenDialog.resx -------------------------------------------------------------------------------- /SirenOfShame.Lib/Device/AudioPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Device/AudioPattern.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Device/HardwareType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Device/HardwareType.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Device/ISirenOfShameDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Device/ISirenOfShameDevice.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Device/LedPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Device/LedPattern.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Device/ManualControlData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Device/ManualControlData.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Device/MockSirenOfShameDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Device/MockSirenOfShameDevice.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Device/SirenOfShameDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Device/SirenOfShameDevice.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Device/SirenOfShameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Device/SirenOfShameInfo.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Device/UsbControlPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Device/UsbControlPacket.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Device/UsbInfoPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Device/UsbInfoPacket.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Device/UsbReadAudioPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Device/UsbReadAudioPacket.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Device/UsbReadLedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Device/UsbReadLedPacket.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Dto/InstanceUserDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Dto/InstanceUserDto.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Dto/OfflineUserAchievementDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Dto/OfflineUserAchievementDto.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/ExceptionMessageBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/ExceptionMessageBox.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/ExceptionMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/ExceptionMessageBox.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/ExceptionMessageBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/ExceptionMessageBox.resx -------------------------------------------------------------------------------- /SirenOfShame.Lib/Exceptions/SosException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Exceptions/SosException.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/FormBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/FormBase.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Helpers/ArrayHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Helpers/ArrayHelpers.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Helpers/AssemblyHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Helpers/AssemblyHelpers.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Helpers/ControlHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Helpers/ControlHelpers.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Helpers/FactoryExportProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Helpers/FactoryExportProvider.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Helpers/IEnumerableHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Helpers/IEnumerableHelpers.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Helpers/IocContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Helpers/IocContainer.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Helpers/ObjectHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Helpers/ObjectHelpers.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Helpers/PrettyDateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Helpers/PrettyDateHelper.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Helpers/SiUnitHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Helpers/SiUnitHelpers.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Helpers/StringHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Helpers/StringHelpers.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Helpers/ThreeStateTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Helpers/ThreeStateTreeNode.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Helpers/ThreeStateTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Helpers/ThreeStateTreeView.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Helpers/XElementHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Helpers/XElementHelpers.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/ICIEntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/ICIEntryPoint.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/MyLogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/MyLogManager.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Network/SosWebClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Network/SosWebClient.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Resources/Audio-Applause.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Resources/Audio-Applause.wav -------------------------------------------------------------------------------- /SirenOfShame.Lib/Resources/Audio-Boo-Hiss.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Resources/Audio-Boo-Hiss.wav -------------------------------------------------------------------------------- /SirenOfShame.Lib/Resources/Audio-Chime.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Resources/Audio-Chime.wav -------------------------------------------------------------------------------- /SirenOfShame.Lib/Resources/Audio-DaDing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Resources/Audio-DaDing.wav -------------------------------------------------------------------------------- /SirenOfShame.Lib/Resources/Audio-Ding.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Resources/Audio-Ding.wav -------------------------------------------------------------------------------- /SirenOfShame.Lib/Resources/Audio-Plunk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Resources/Audio-Plunk.wav -------------------------------------------------------------------------------- /SirenOfShame.Lib/Resources/Audio-Sad-Trombone.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Resources/Audio-Sad-Trombone.wav -------------------------------------------------------------------------------- /SirenOfShame.Lib/Resources/Audio-Tada.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Resources/Audio-Tada.wav -------------------------------------------------------------------------------- /SirenOfShame.Lib/Resources/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Resources/ResourceManager.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Services/ApiResultBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Services/ApiResultBase.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Services/AudioFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Services/AudioFileService.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Services/CredentialApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Services/CredentialApiModel.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Services/GravatarService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Services/GravatarService.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Services/ImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Services/ImageService.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Services/LedFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Services/LedFileService.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Services/MySosOnlineService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Services/MySosOnlineService.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Services/SosOnlineService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Services/SosOnlineService.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Services/SoundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Services/SoundService.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/AchievementLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/AchievementLookup.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/AchievementSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/AchievementSetting.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/AudioPatternSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/AudioPatternSetting.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/CiEntryPointSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/CiEntryPointSetting.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/LedPatternSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/LedPatternSetting.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/MyBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/MyBuildDefinition.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/PersonSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/PersonSetting.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/Rule.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/SirenOfShameSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/SirenOfShameSettings.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/Sound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/Sound.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/UpdateLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/UpdateLocation.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/Upgrades/Upgrade0To1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/Upgrades/Upgrade0To1.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/Upgrades/Upgrade1To2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/Upgrades/Upgrade1To2.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/Upgrades/Upgrade2To3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/Upgrades/Upgrade2To3.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/Upgrades/Upgrade3To4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/Upgrades/Upgrade3To4.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/Upgrades/Upgrade4To5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/Upgrades/Upgrade4To5.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/Upgrades/Upgrade5To6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/Upgrades/Upgrade5To6.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/Upgrades/Upgrade6To7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/Upgrades/Upgrade6To7.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/Upgrades/Upgrade7To8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/Upgrades/Upgrade7To8.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/Upgrades/UpgradeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/Upgrades/UpgradeBase.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/UserMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/UserMapping.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Settings/WhatToSyncEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Settings/WhatToSyncEnum.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/SirenOfShame.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/SirenOfShame.Lib.csproj -------------------------------------------------------------------------------- /SirenOfShame.Lib/SosButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/SosButton.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/StatCalculators/BuildRatio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/StatCalculators/BuildRatio.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/StatCalculators/SuccessInARow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/StatCalculators/SuccessInARow.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/UserControlBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/UserControlBase.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Util/BuildStatusUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Util/BuildStatusUtil.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/BuildStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/BuildStatus.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/BuildStatusDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/BuildStatusDto.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/BuildStatusEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/BuildStatusEnum.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/FileAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/FileAdapter.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/ModalDialogEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/ModalDialogEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/ModalDialogEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/ModalDialogEventArgs.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/NewAchievementEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/NewAchievementEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/NewAlertEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/NewAlertEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/NewAlertEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/NewAlertEventArgs.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/NewNewsItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/NewNewsItemEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/NewNewsItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/NewNewsItemEventArgs.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/NewUserEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/NewUserEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/NewUserEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/NewUserEventArgs.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/PersonBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/PersonBase.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/PlayWindowsAudioEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/PlayWindowsAudioEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/RulesEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/RulesEngine.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/ServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/ServiceBase.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/SetAudioEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/SetAudioEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/SetAudioEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/SetAudioEventArgs.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/SetLightsEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/SetLightsEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/SetLightsEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/SetLightsEventArgs.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/SetTrayIconEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/SetTrayIconEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/SetTrayIconEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/SetTrayIconEventArgs.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/SosDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/SosDb.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/SosOnlinePerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/SosOnlinePerson.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/StatsChangedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/StatsChangedEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/StatsChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/StatsChangedEventArgs.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/StatusChangedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/StatusChangedEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/StatusCheckedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/StatusCheckedEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/TrayNotifyEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/TrayNotifyEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/TrayNotifyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/TrayNotifyEventArgs.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/UpdateStatusBarEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/UpdateStatusBarEvent.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/WatcherBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/WatcherBase.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/Watcher/WebClientXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/Watcher/WebClientXml.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/WavEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/WavEditor.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/WavEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/WavEditor.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/WavEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/WavEditor.resx -------------------------------------------------------------------------------- /SirenOfShame.Lib/WavViewControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/WavViewControl.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/WavViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/WavViewControl.cs -------------------------------------------------------------------------------- /SirenOfShame.Lib/WavViewControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/WavViewControl.resx -------------------------------------------------------------------------------- /SirenOfShame.Lib/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/app.config -------------------------------------------------------------------------------- /SirenOfShame.Lib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Lib/packages.config -------------------------------------------------------------------------------- /SirenOfShame.Test.Unit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Test.Unit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SirenOfShame.Test.Unit/UI/NewsFeedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Test.Unit/UI/NewsFeedTest.cs -------------------------------------------------------------------------------- /SirenOfShame.Test.Unit/UI/ViewBuildsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Test.Unit/UI/ViewBuildsTest.cs -------------------------------------------------------------------------------- /SirenOfShame.Test.Unit/Watcher/BuildStatusTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Test.Unit/Watcher/BuildStatusTest.cs -------------------------------------------------------------------------------- /SirenOfShame.Test.Unit/Watcher/FakeRulesEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Test.Unit/Watcher/FakeRulesEngine.cs -------------------------------------------------------------------------------- /SirenOfShame.Test.Unit/Watcher/FakeWebClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Test.Unit/Watcher/FakeWebClient.cs -------------------------------------------------------------------------------- /SirenOfShame.Test.Unit/Watcher/FileAdapterFake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Test.Unit/Watcher/FileAdapterFake.cs -------------------------------------------------------------------------------- /SirenOfShame.Test.Unit/Watcher/RulesEngineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Test.Unit/Watcher/RulesEngineTest.cs -------------------------------------------------------------------------------- /SirenOfShame.Test.Unit/Watcher/SosDbFake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Test.Unit/Watcher/SosDbFake.cs -------------------------------------------------------------------------------- /SirenOfShame.Test.Unit/Watcher/SosDbTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Test.Unit/Watcher/SosDbTest.cs -------------------------------------------------------------------------------- /SirenOfShame.Test.Unit/Watcher/WatcherFake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Test.Unit/Watcher/WatcherFake.cs -------------------------------------------------------------------------------- /SirenOfShame.Test.Unit/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Test.Unit/app.config -------------------------------------------------------------------------------- /SirenOfShame.Test.Unit/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.Test.Unit/packages.config -------------------------------------------------------------------------------- /SirenOfShame.WixSetup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.WixSetup/Product.wxs -------------------------------------------------------------------------------- /SirenOfShame.WixSetup/sign.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.WixSetup/sign.bat -------------------------------------------------------------------------------- /SirenOfShame.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.sln -------------------------------------------------------------------------------- /SirenOfShame.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.sln.DotSettings -------------------------------------------------------------------------------- /SirenOfShame.vsmdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame.vsmdi -------------------------------------------------------------------------------- /SirenOfShame/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/App.config -------------------------------------------------------------------------------- /SirenOfShame/Avatar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Avatar.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/Avatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Avatar.cs -------------------------------------------------------------------------------- /SirenOfShame/Avatar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Avatar.resx -------------------------------------------------------------------------------- /SirenOfShame/AvatarPicker.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/AvatarPicker.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/AvatarPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/AvatarPicker.cs -------------------------------------------------------------------------------- /SirenOfShame/AvatarPicker.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/AvatarPicker.resx -------------------------------------------------------------------------------- /SirenOfShame/BuildFailedMessageBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/BuildFailedMessageBox.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/BuildFailedMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/BuildFailedMessageBox.cs -------------------------------------------------------------------------------- /SirenOfShame/BuildFailedMessageBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/BuildFailedMessageBox.resx -------------------------------------------------------------------------------- /SirenOfShame/BuildStats.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/BuildStats.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/BuildStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/BuildStats.cs -------------------------------------------------------------------------------- /SirenOfShame/BuildStats.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/BuildStats.resx -------------------------------------------------------------------------------- /SirenOfShame/Configuration/AddMapping.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/AddMapping.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/Configuration/AddMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/AddMapping.cs -------------------------------------------------------------------------------- /SirenOfShame/Configuration/AddMapping.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/AddMapping.resx -------------------------------------------------------------------------------- /SirenOfShame/Configuration/AddRule.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/AddRule.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/Configuration/AddRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/AddRule.cs -------------------------------------------------------------------------------- /SirenOfShame/Configuration/AddRule.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/AddRule.resx -------------------------------------------------------------------------------- /SirenOfShame/Configuration/ConfigureRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/ConfigureRules.cs -------------------------------------------------------------------------------- /SirenOfShame/Configuration/ConfigureRules.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/ConfigureRules.resx -------------------------------------------------------------------------------- /SirenOfShame/Configuration/ConfigureServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/ConfigureServer.cs -------------------------------------------------------------------------------- /SirenOfShame/Configuration/ConfigureServer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/ConfigureServer.resx -------------------------------------------------------------------------------- /SirenOfShame/Configuration/ConfigureServers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/ConfigureServers.cs -------------------------------------------------------------------------------- /SirenOfShame/Configuration/ConfigureSounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/ConfigureSounds.cs -------------------------------------------------------------------------------- /SirenOfShame/Configuration/ResetReputation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/ResetReputation.cs -------------------------------------------------------------------------------- /SirenOfShame/Configuration/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/Settings.cs -------------------------------------------------------------------------------- /SirenOfShame/Configuration/Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/Settings.resx -------------------------------------------------------------------------------- /SirenOfShame/Configuration/SyncOffline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/SyncOffline.cs -------------------------------------------------------------------------------- /SirenOfShame/Configuration/SyncOffline.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/SyncOffline.resx -------------------------------------------------------------------------------- /SirenOfShame/Configuration/SyncOnline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/SyncOnline.cs -------------------------------------------------------------------------------- /SirenOfShame/Configuration/SyncOnline.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/SyncOnline.resx -------------------------------------------------------------------------------- /SirenOfShame/Configuration/UserMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/UserMappings.cs -------------------------------------------------------------------------------- /SirenOfShame/Configuration/UserMappings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Configuration/UserMappings.resx -------------------------------------------------------------------------------- /SirenOfShame/FirmwareUpgrade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/FirmwareUpgrade.xml -------------------------------------------------------------------------------- /SirenOfShame/FullScreenEnforcer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/FullScreenEnforcer.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/FullScreenEnforcer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/FullScreenEnforcer.cs -------------------------------------------------------------------------------- /SirenOfShame/FullScreenEnforcer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/FullScreenEnforcer.resx -------------------------------------------------------------------------------- /SirenOfShame/FullScreenFormBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/FullScreenFormBase.cs -------------------------------------------------------------------------------- /SirenOfShame/GettingStarted.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/GettingStarted.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/GettingStarted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/GettingStarted.cs -------------------------------------------------------------------------------- /SirenOfShame/GettingStarted.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/GettingStarted.resx -------------------------------------------------------------------------------- /SirenOfShame/HeightAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/HeightAnimator.cs -------------------------------------------------------------------------------- /SirenOfShame/HelpAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/HelpAbout.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/HelpAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/HelpAbout.cs -------------------------------------------------------------------------------- /SirenOfShame/HelpAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/HelpAbout.resx -------------------------------------------------------------------------------- /SirenOfShame/Helpers/GraphicsHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Helpers/GraphicsHelpers.cs -------------------------------------------------------------------------------- /SirenOfShame/Leaders.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Leaders.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/Leaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Leaders.cs -------------------------------------------------------------------------------- /SirenOfShame/Leaders.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Leaders.resx -------------------------------------------------------------------------------- /SirenOfShame/ListViewItemComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ListViewItemComparer.cs -------------------------------------------------------------------------------- /SirenOfShame/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/MainForm.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/MainForm.cs -------------------------------------------------------------------------------- /SirenOfShame/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/MainForm.resx -------------------------------------------------------------------------------- /SirenOfShame/NewAchievement.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/NewAchievement.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/NewAchievement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/NewAchievement.cs -------------------------------------------------------------------------------- /SirenOfShame/NewAchievement.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/NewAchievement.resx -------------------------------------------------------------------------------- /SirenOfShame/NewsFeed.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/NewsFeed.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/NewsFeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/NewsFeed.cs -------------------------------------------------------------------------------- /SirenOfShame/NewsFeed.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/NewsFeed.resx -------------------------------------------------------------------------------- /SirenOfShame/NewsItem.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/NewsItem.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/NewsItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/NewsItem.cs -------------------------------------------------------------------------------- /SirenOfShame/NewsItem.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/NewsItem.resx -------------------------------------------------------------------------------- /SirenOfShame/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Program.cs -------------------------------------------------------------------------------- /SirenOfShame/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SirenOfShame/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Properties/Resources.resx -------------------------------------------------------------------------------- /SirenOfShame/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Properties/Settings.settings -------------------------------------------------------------------------------- /SirenOfShame/Resources/AchievementBall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/AchievementBall.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/Avatars/angry_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Avatars/angry_dog.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/Avatars/black_lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Avatars/black_lab.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/Avatars/cat_angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Avatars/cat_angry.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/Avatars/cat_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Avatars/cat_black.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/Avatars/cat_fat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Avatars/cat_fat.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/Avatars/cat_tabby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Avatars/cat_tabby.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/Avatars/cat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Avatars/cat_white.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/Avatars/chow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Avatars/chow.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/Avatars/poodle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Avatars/poodle.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/Avatars/retriever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Avatars/retriever.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/CloseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/CloseButton.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/CloseButton2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/CloseButton2.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/JoesFavorite3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/JoesFavorite3.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/MainBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/MainBackground.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/RibbonBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/RibbonBackground.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/RibbonMore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/RibbonMore.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/SirenOfShameTrayRed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/SirenOfShameTrayRed.ico -------------------------------------------------------------------------------- /SirenOfShame/Resources/SmallButtons/add.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/SmallButtons/add.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/SmallButtons/check.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/SmallButtons/check.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/SmallButtons/delete.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/SmallButtons/delete.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/SmallButtons/edit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/SmallButtons/edit.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/SmallButtons/ok.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/SmallButtons/ok.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/SmallButtons/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/SmallButtons/view.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/Smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Smiley.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/alarm.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/alarm.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/bell3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/bell3.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/businessmen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/businessmen.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/earth.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/earth.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/gears.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/gears.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/help.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/help.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/id_cards.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/id_cards.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/lighthouse.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/lighthouse.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/loudspeaker.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/loudspeaker.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/media_play.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/media_play.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/messages.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/messages.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/music.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/music.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/recycle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/recycle.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/server.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/server.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/window_gear.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/window_gear.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/Toolbar/window_size.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/Toolbar/window_size.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/TrashSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/TrashSmall.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/ball_gray_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/ball_gray_big.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/ball_green_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/ball_green_big.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/ball_red_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/ball_red_big.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/circle20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/circle20.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/clock.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/clock.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/delete2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/delete2.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/error.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/error.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/funnel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/funnel.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/funnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/funnel.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/gear.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/gear_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/gear_white.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/gradient15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/gradient15.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/gradient33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/gradient33.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/id_cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/id_cards.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/loading.gif -------------------------------------------------------------------------------- /SirenOfShame/Resources/loadingBlue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/loadingBlue.gif -------------------------------------------------------------------------------- /SirenOfShame/Resources/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/music.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/nav_left.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/nav_right.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/nav_up_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/nav_up_right.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/navigate_down2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/navigate_down2.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/navigate_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/navigate_up.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/ok.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/ok.bmp -------------------------------------------------------------------------------- /SirenOfShame/Resources/question_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/question_big.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/separater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/separater.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/splash.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/twitter.png -------------------------------------------------------------------------------- /SirenOfShame/Resources/unknown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Resources/unknown.bmp -------------------------------------------------------------------------------- /SirenOfShame/RuleDropDownItemTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/RuleDropDownItemTag.cs -------------------------------------------------------------------------------- /SirenOfShame/Separator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/Separator.cs -------------------------------------------------------------------------------- /SirenOfShame/SirenConfiguration/TestSiren.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SirenConfiguration/TestSiren.cs -------------------------------------------------------------------------------- /SirenOfShame/SirenConfiguration/TestSiren.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SirenConfiguration/TestSiren.resx -------------------------------------------------------------------------------- /SirenOfShame/SirenFirmwareUpgrade.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SirenFirmwareUpgrade.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/SirenFirmwareUpgrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SirenFirmwareUpgrade.cs -------------------------------------------------------------------------------- /SirenOfShame/SirenFirmwareUpgrade.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SirenFirmwareUpgrade.resx -------------------------------------------------------------------------------- /SirenOfShame/SirenOfShame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SirenOfShame.csproj -------------------------------------------------------------------------------- /SirenOfShame/SirenOfShame.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SirenOfShame.csproj.DotSettings -------------------------------------------------------------------------------- /SirenOfShame/SirenOfShameTrayBlank.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SirenOfShameTrayBlank.ico -------------------------------------------------------------------------------- /SirenOfShame/SosMessageBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SosMessageBox.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/SosMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SosMessageBox.cs -------------------------------------------------------------------------------- /SirenOfShame/SosMessageBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SosMessageBox.resx -------------------------------------------------------------------------------- /SirenOfShame/SplashScreen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SplashScreen.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/SplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SplashScreen.cs -------------------------------------------------------------------------------- /SirenOfShame/SplashScreen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/SplashScreen.resx -------------------------------------------------------------------------------- /SirenOfShame/TimeboxEnforcer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/TimeboxEnforcer.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/TimeboxEnforcer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/TimeboxEnforcer.cs -------------------------------------------------------------------------------- /SirenOfShame/TimeboxEnforcer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/TimeboxEnforcer.resx -------------------------------------------------------------------------------- /SirenOfShame/UserPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/UserPanel.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/UserPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/UserPanel.cs -------------------------------------------------------------------------------- /SirenOfShame/UserPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/UserPanel.resx -------------------------------------------------------------------------------- /SirenOfShame/ViewBuildBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ViewBuildBase.cs -------------------------------------------------------------------------------- /SirenOfShame/ViewBuildBig.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ViewBuildBig.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/ViewBuildBig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ViewBuildBig.cs -------------------------------------------------------------------------------- /SirenOfShame/ViewBuildBig.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ViewBuildBig.resx -------------------------------------------------------------------------------- /SirenOfShame/ViewBuildSmall.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ViewBuildSmall.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/ViewBuildSmall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ViewBuildSmall.cs -------------------------------------------------------------------------------- /SirenOfShame/ViewBuildSmall.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ViewBuildSmall.resx -------------------------------------------------------------------------------- /SirenOfShame/ViewBuilds.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ViewBuilds.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/ViewBuilds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ViewBuilds.cs -------------------------------------------------------------------------------- /SirenOfShame/ViewBuilds.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ViewBuilds.resx -------------------------------------------------------------------------------- /SirenOfShame/ViewUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ViewUser.Designer.cs -------------------------------------------------------------------------------- /SirenOfShame/ViewUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ViewUser.cs -------------------------------------------------------------------------------- /SirenOfShame/ViewUser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/ViewUser.resx -------------------------------------------------------------------------------- /SirenOfShame/WaterMarkTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/WaterMarkTextBox.cs -------------------------------------------------------------------------------- /SirenOfShame/_postbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/_postbuild.bat -------------------------------------------------------------------------------- /SirenOfShame/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SirenOfShame/packages.config -------------------------------------------------------------------------------- /SoxLib.Test.Unit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib.Test.Unit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SoxLib.Test.Unit/SoxLib.Test.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib.Test.Unit/SoxLib.Test.Unit.csproj -------------------------------------------------------------------------------- /SoxLib.Test.Unit/SoxTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib.Test.Unit/SoxTest.cs -------------------------------------------------------------------------------- /SoxLib.Test.Unit/TestInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib.Test.Unit/TestInit.cs -------------------------------------------------------------------------------- /SoxLib.Test.Unit/doh-mp3.u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib.Test.Unit/doh-mp3.u8 -------------------------------------------------------------------------------- /SoxLib.Test.Unit/doh-wav-trim.u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib.Test.Unit/doh-wav-trim.u8 -------------------------------------------------------------------------------- /SoxLib.Test.Unit/doh-wav.u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib.Test.Unit/doh-wav.u8 -------------------------------------------------------------------------------- /SoxLib.Test.Unit/doh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib.Test.Unit/doh.mp3 -------------------------------------------------------------------------------- /SoxLib.Test.Unit/doh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib.Test.Unit/doh.wav -------------------------------------------------------------------------------- /SoxLib.Test.Unit/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib.Test.Unit/packages.config -------------------------------------------------------------------------------- /SoxLib.Test.Unit/pattern1.sosled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib.Test.Unit/pattern1.sosled -------------------------------------------------------------------------------- /SoxLib.Test.Unit/pattern2.sosled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib.Test.Unit/pattern2.sosled -------------------------------------------------------------------------------- /SoxLib.Test.Unit/pattern3.sosled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib.Test.Unit/pattern3.sosled -------------------------------------------------------------------------------- /SoxLib/ConvertOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib/ConvertOptions.cs -------------------------------------------------------------------------------- /SoxLib/EncodingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib/EncodingType.cs -------------------------------------------------------------------------------- /SoxLib/FileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib/FileInfo.cs -------------------------------------------------------------------------------- /SoxLib/FileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib/FileType.cs -------------------------------------------------------------------------------- /SoxLib/Helpers/DeleteFileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib/Helpers/DeleteFileStream.cs -------------------------------------------------------------------------------- /SoxLib/Helpers/StreamHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib/Helpers/StreamHelper.cs -------------------------------------------------------------------------------- /SoxLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SoxLib/Sox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib/Sox.cs -------------------------------------------------------------------------------- /SoxLib/SoxLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib/SoxLib.csproj -------------------------------------------------------------------------------- /SoxLib/SoxTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib/SoxTime.cs -------------------------------------------------------------------------------- /SoxLib/TrimOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib/TrimOptions.cs -------------------------------------------------------------------------------- /SoxLib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/SoxLib/packages.config -------------------------------------------------------------------------------- /TeamCityServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeamCityServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TeamCityServices/TeamCityBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeamCityServices/TeamCityBuildDefinition.cs -------------------------------------------------------------------------------- /TeamCityServices/TeamCityBuildStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeamCityServices/TeamCityBuildStatus.cs -------------------------------------------------------------------------------- /TeamCityServices/TeamCityCIEntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeamCityServices/TeamCityCIEntryPoint.cs -------------------------------------------------------------------------------- /TeamCityServices/TeamCityProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeamCityServices/TeamCityProject.cs -------------------------------------------------------------------------------- /TeamCityServices/TeamCityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeamCityServices/TeamCityService.cs -------------------------------------------------------------------------------- /TeamCityServices/TeamCityServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeamCityServices/TeamCityServices.csproj -------------------------------------------------------------------------------- /TeamCityServices/Watcher/TeamCityWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeamCityServices/Watcher/TeamCityWatcher.cs -------------------------------------------------------------------------------- /TeamCityServices/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeamCityServices/app.config -------------------------------------------------------------------------------- /TeamCityServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeamCityServices/packages.config -------------------------------------------------------------------------------- /TeensyHidBootloaderLib/IntelHexFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeensyHidBootloaderLib/IntelHexFile.cs -------------------------------------------------------------------------------- /TeensyHidBootloaderLib/McuType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeensyHidBootloaderLib/McuType.cs -------------------------------------------------------------------------------- /TeensyHidBootloaderLib/TeensyDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeensyHidBootloaderLib/TeensyDevice.cs -------------------------------------------------------------------------------- /TeensyHidBootloaderLib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TeensyHidBootloaderLib/packages.config -------------------------------------------------------------------------------- /TestPages/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/Default.aspx -------------------------------------------------------------------------------- /TestPages/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/Default.aspx.cs -------------------------------------------------------------------------------- /TestPages/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/Default.aspx.designer.cs -------------------------------------------------------------------------------- /TestPages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestPages/Scripts/jquery-1.4.1-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/Scripts/jquery-1.4.1-vsdoc.js -------------------------------------------------------------------------------- /TestPages/Scripts/jquery-1.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/Scripts/jquery-1.4.1.js -------------------------------------------------------------------------------- /TestPages/Scripts/jquery-1.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/Scripts/jquery-1.4.1.min.js -------------------------------------------------------------------------------- /TestPages/TeamCityFail.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/TeamCityFail.aspx -------------------------------------------------------------------------------- /TestPages/TeamCityFail.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/TeamCityFail.aspx.cs -------------------------------------------------------------------------------- /TestPages/TeamCityFail.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/TeamCityFail.aspx.designer.cs -------------------------------------------------------------------------------- /TestPages/TeamCitySuccess.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/TeamCitySuccess.aspx -------------------------------------------------------------------------------- /TestPages/TeamCitySuccess.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/TeamCitySuccess.aspx.cs -------------------------------------------------------------------------------- /TestPages/TeamCitySuccess.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/TeamCitySuccess.aspx.designer.cs -------------------------------------------------------------------------------- /TestPages/TestPages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/TestPages.csproj -------------------------------------------------------------------------------- /TestPages/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/Web.Debug.config -------------------------------------------------------------------------------- /TestPages/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/Web.Release.config -------------------------------------------------------------------------------- /TestPages/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TestPages/Web.config -------------------------------------------------------------------------------- /TfsRestServices/CommentsCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/CommentsCache.cs -------------------------------------------------------------------------------- /TfsRestServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TfsRestServices/TfsConnectionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/TfsConnectionDetails.cs -------------------------------------------------------------------------------- /TfsRestServices/TfsJsonService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/TfsJsonService.cs -------------------------------------------------------------------------------- /TfsRestServices/TfsJsonWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/TfsJsonWrapper.cs -------------------------------------------------------------------------------- /TfsRestServices/TfsRestBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/TfsRestBuildDefinition.cs -------------------------------------------------------------------------------- /TfsRestServices/TfsRestBuildStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/TfsRestBuildStatus.cs -------------------------------------------------------------------------------- /TfsRestServices/TfsRestCiEntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/TfsRestCiEntryPoint.cs -------------------------------------------------------------------------------- /TfsRestServices/TfsRestProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/TfsRestProject.cs -------------------------------------------------------------------------------- /TfsRestServices/TfsRestProjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/TfsRestProjectCollection.cs -------------------------------------------------------------------------------- /TfsRestServices/TfsRestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/TfsRestService.cs -------------------------------------------------------------------------------- /TfsRestServices/TfsRestServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/TfsRestServices.csproj -------------------------------------------------------------------------------- /TfsRestServices/TfsRestWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/TfsRestWatcher.cs -------------------------------------------------------------------------------- /TfsRestServices/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/app.config -------------------------------------------------------------------------------- /TfsRestServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsRestServices/packages.config -------------------------------------------------------------------------------- /TfsServices/Configuration/ConfigureTfs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsServices/Configuration/ConfigureTfs.cs -------------------------------------------------------------------------------- /TfsServices/Configuration/ConfigureTfs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsServices/Configuration/ConfigureTfs.resx -------------------------------------------------------------------------------- /TfsServices/Configuration/MyBuildServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsServices/Configuration/MyBuildServer.cs -------------------------------------------------------------------------------- /TfsServices/Configuration/MyChangeset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsServices/Configuration/MyChangeset.cs -------------------------------------------------------------------------------- /TfsServices/Configuration/MyTfsProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsServices/Configuration/MyTfsProject.cs -------------------------------------------------------------------------------- /TfsServices/Configuration/MyTfsServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsServices/Configuration/MyTfsServer.cs -------------------------------------------------------------------------------- /TfsServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TfsServices/TfsCIEntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsServices/TfsCIEntryPoint.cs -------------------------------------------------------------------------------- /TfsServices/TfsServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsServices/TfsServices.csproj -------------------------------------------------------------------------------- /TfsServices/TfsWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsServices/TfsWatcher.cs -------------------------------------------------------------------------------- /TfsServices/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsServices/app.config -------------------------------------------------------------------------------- /TfsServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TfsServices/packages.config -------------------------------------------------------------------------------- /TraceAndTestImpact.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TraceAndTestImpact.testsettings -------------------------------------------------------------------------------- /TravisCiServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TravisCiServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TravisCiServices/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TravisCiServices/Properties/Resources.resx -------------------------------------------------------------------------------- /TravisCiServices/Resources/AuthTokenImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TravisCiServices/Resources/AuthTokenImg.png -------------------------------------------------------------------------------- /TravisCiServices/TravisCiBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TravisCiServices/TravisCiBuildDefinition.cs -------------------------------------------------------------------------------- /TravisCiServices/TravisCiBuildStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TravisCiServices/TravisCiBuildStatus.cs -------------------------------------------------------------------------------- /TravisCiServices/TravisCiEntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TravisCiServices/TravisCiEntryPoint.cs -------------------------------------------------------------------------------- /TravisCiServices/TravisCiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TravisCiServices/TravisCiService.cs -------------------------------------------------------------------------------- /TravisCiServices/TravisCiServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TravisCiServices/TravisCiServices.csproj -------------------------------------------------------------------------------- /TravisCiServices/TravisCiWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TravisCiServices/TravisCiWatcher.cs -------------------------------------------------------------------------------- /TravisCiServices/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TravisCiServices/app.config -------------------------------------------------------------------------------- /TravisCiServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/TravisCiServices/packages.config -------------------------------------------------------------------------------- /UsbLib/DevInfoData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/UsbLib/DevInfoData.cs -------------------------------------------------------------------------------- /UsbLib/DeviceInformationSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/UsbLib/DeviceInformationSet.cs -------------------------------------------------------------------------------- /UsbLib/DeviceInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/UsbLib/DeviceInterface.cs -------------------------------------------------------------------------------- /UsbLib/DeviceInterfaceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/UsbLib/DeviceInterfaceData.cs -------------------------------------------------------------------------------- /UsbLib/DeviceInterfaceDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/UsbLib/DeviceInterfaceDetail.cs -------------------------------------------------------------------------------- /UsbLib/DeviceInterfaceDetailData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/UsbLib/DeviceInterfaceDetailData.cs -------------------------------------------------------------------------------- /UsbLib/DeviceInterfaceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/UsbLib/DeviceInterfaceFile.cs -------------------------------------------------------------------------------- /UsbLib/DiGetClassFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/UsbLib/DiGetClassFlags.cs -------------------------------------------------------------------------------- /UsbLib/HidCaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/UsbLib/HidCaps.cs -------------------------------------------------------------------------------- /UsbLib/PInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/UsbLib/PInvoke.cs -------------------------------------------------------------------------------- /UsbLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/UsbLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UsbLib/UsbDeviceNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/UsbLib/UsbDeviceNotification.cs -------------------------------------------------------------------------------- /UsbLib/UsbLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/UsbLib/UsbLib.csproj -------------------------------------------------------------------------------- /WavToC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/WavToC/Program.cs -------------------------------------------------------------------------------- /WavToC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/WavToC/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WavToC/WavToC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/WavToC/WavToC.csproj -------------------------------------------------------------------------------- /WavToC/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/WavToC/app.config -------------------------------------------------------------------------------- /_makeFirmwareUpgradeXml.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutomatedArchitecture/SirenOfShame/HEAD/_makeFirmwareUpgradeXml.bat --------------------------------------------------------------------------------