Skip to content

Commit

Permalink
Update MonoGame.Library.OpenAL to 1.23.1.9
Browse files Browse the repository at this point in the history
An issue was reported that our OpenAL binaries were
not working on Linux. It turns out that we had not
installed the developer packages for most of the supported
backends. As a result we only supported ALSA.

The CI has been updated to include all the supported backends
with the exception of SoundIO. This is because if you build
with SoundIO support you get a hard link to the library. However
it is not a common library. Having a hard link stops the .so
being loaded if it is not installed.

So lets bump all the projects that use OpenAL to use the latest
package.
  • Loading branch information
dellis1972 committed Nov 7, 2024
1 parent 8b35cf5 commit be81c51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MonoGame.Framework/MonoGame.Framework.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MonoGame.Library.OpenAL" Version="1.23.1.7" />
<PackageReference Include="MonoGame.Library.OpenAL" Version="1.23.1.9" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion MonoGame.Framework/MonoGame.Framework.DesktopGL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="MonoGame.Library.SDL" Version="2.26.5.5" />
<PackageReference Include="MonoGame.Library.OpenAL" Version="1.23.1.7" />
<PackageReference Include="MonoGame.Library.OpenAL" Version="1.23.1.9" />
<PackageReference Include="NVorbis" Version="0.10.4" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion MonoGame.Framework/MonoGame.Framework.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MonoGame.Library.OpenAL" Version="1.23.1.7" />
<PackageReference Include="MonoGame.Library.OpenAL" Version="1.23.1.9" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit be81c51

Please sign in to comment.