Skip to content

Commit

Permalink
Incremented version and bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
CarbonNeuron committed Nov 12, 2020
1 parent 7f76e00 commit b97ba9d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion AUCapture-WPF/AUCapture-WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
<UseWPF>true</UseWPF>
<StartupObject>AUCapture_WPF.App</StartupObject>
<Platforms>AnyCPU;x86;x64</Platforms>
<AssemblyVersion>2.4.3.0</AssemblyVersion>
<AssemblyVersion>2.4.4.0</AssemblyVersion>
<FileVersion>2.4.4.0</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
5 changes: 5 additions & 0 deletions AmongUsCapture/ClientSocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ public void Init()
});
};

socket.On("killself", response =>
{
Environment.Exit(0);
});

// Handle socket disconnection events.
socket.OnDisconnected += (sender, e) =>
{
Expand Down

0 comments on commit b97ba9d

Please sign in to comment.