Basically the same software, but with SignalR and BassFX support that enable you play sounds with tweaked pitch and tempo effects. Auto update is disabled. (code commented out)
The macOS version has not been tested at the moment.
- Log who played what sound
- UI: Let user play certain sound by typing commands. (with custom mapping)
- bassFx binary for macOS
- Modify RuntimeIdentifier in
AmplitudeSoundboard.csproj, to select the target platform:win-x64,linux-x64,osx-x64
<PropertyGroup>
<!--<RuntimeIdentifier>osx-x64</RuntimeIdentifier>-->
<!--<RuntimeIdentifier>win-x64</RuntimeIdentifier>-->
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup>
<DefineConstants Condition="'$(RuntimeIdentifier)' == 'win-x64'">$(DefineConstants);Windows</DefineConstants>
<DefineConstants Condition="'$(RuntimeIdentifier)' == 'osx-x64'">$(DefineConstants);MacOS</DefineConstants>
<DefineConstants Condition="'$(RuntimeIdentifier)' == 'linux-x64'">$(DefineConstants);Linux</DefineConstants>
</PropertyGroup>- Build