Skip to content

Commit

Permalink
fix - Fixed mpg123 deps
Browse files Browse the repository at this point in the history
---

We've fixed mpg123 dependencies for Windows; they now use UCRT again

---

Type: fix
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Nov 6, 2024
1 parent 01efef5 commit 080533a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion BassBoom.Native/MpgNative.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,10 @@ internal static void InitializeLibrary(string libPath, string libPathOut)
if (architecture == Architecture.X86 || architecture == Architecture.Arm)
throw new BasoliaNativeLibraryException("32-bit platforms are no longer supported.");
libManagerMpg = new LibraryManager(new LibraryFile(mpg123LibPath));
libManagerOut = new LibraryManager([new LibraryFile(pthreadLibPath), new LibraryFile(out123LibPath)]);
libManagerOut = new LibraryManager(
architecture == Architecture.X64 && PlatformHelper.IsOnWindows() ?
[new LibraryFile(pthreadLibPath), new LibraryFile(out123LibPath)] :
[new LibraryFile(out123LibPath)]);
libManagerMpg.LoadNativeLibrary();
libManagerOut.LoadNativeLibrary();

Expand Down
2 changes: 1 addition & 1 deletion CHANGES.TITLE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[servicing] BassBoom v0.2.4.1: More Secure!
[servicing] BassBoom v0.2.4.2: More Secure!
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>0.2.4.1</Version>
<Version>0.2.4.2</Version>
<Authors>Aptivi</Authors>
<Company>Aptivi</Company>
<Copyright>Copyright (c) 2021-2024 Aptivi</Copyright>
Expand Down

0 comments on commit 080533a

Please sign in to comment.