Skip to content

Commit

Permalink
Release 1.4.2 (#43)
Browse files Browse the repository at this point in the history
* Started Release 1.4.2

* Bumped version 1.4.2
  • Loading branch information
sandrohanea authored May 20, 2023
1 parent d31d84b commit ddc1718
Show file tree
Hide file tree
Showing 23 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
BUILD_TYPE=Release
VERSION=1.4.0
VERSION=1.4.2
CMAKE_PARAMETERS=-DCMAKE_BUILD_TYPE=$(BUILD_TYPE)
NDK :=
ifeq ($(strip $(NDK_PATH)),)
ifeq ($(shell test -d $(HOME)/Library/Developer/Xamarin/android-sdk-macosx/ndk-bundle && echo -n yes),yes)
ifeq ($(shell test -d $(HOME)/Library/Developer/Xamarin/android-sdk-macosx/ndk-bundle && echo yes),yes)
NDK := $(HOME)/Library/Developer/Xamarin/android-sdk-macosx/ndk-bundle
else
$(error NDK_PATH not defined and NDK not found at default location on Mac.)
Expand Down
2 changes: 1 addition & 1 deletion Whisper.net.Runtime.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>Whisper.net.Runtime</id>
<title>Whisper.Net.Runtime</title>
<version>1.4.0</version>
<version>1.4.2</version>
<authors>Sandro Hanea</authors>
<owners>Sandro Hanea</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand Down
Binary file modified Whisper.net.Runtime/android-arm64-v8a/libwhisper.so
Binary file not shown.
Binary file modified Whisper.net.Runtime/android-x86/libwhisper.so
Binary file not shown.
Binary file modified Whisper.net.Runtime/android-x86_64/libwhisper.so
Binary file not shown.
Binary file modified Whisper.net.Runtime/ios-device/libwhisper.dylib
Binary file not shown.
Binary file modified Whisper.net.Runtime/ios-simulator/libwhisper.dylib
Binary file not shown.
Binary file modified Whisper.net.Runtime/linux-arm64/whisper.so
Binary file not shown.
Binary file modified Whisper.net.Runtime/linux-x64/whisper.so
Binary file not shown.
Binary file modified Whisper.net.Runtime/maccatalyst/libwhisper.dylib
Binary file not shown.
Binary file modified Whisper.net.Runtime/macos/libwhisper.dylib
Binary file not shown.
Binary file modified Whisper.net.Runtime/osx-arm64/whisper.dylib
Binary file not shown.
Binary file modified Whisper.net.Runtime/osx-x64/whisper.dylib
Binary file not shown.
Binary file modified Whisper.net.Runtime/tvos-device/libwhisper.dylib
Binary file not shown.
Binary file modified Whisper.net.Runtime/tvos-simulator/libwhisper.dylib
Binary file not shown.
Binary file modified Whisper.net.Runtime/win-arm/whisper.dll
Binary file not shown.
Binary file modified Whisper.net.Runtime/win-arm64/whisper.dll
Binary file not shown.
Binary file modified Whisper.net.Runtime/win-x64/whisper.dll
Binary file not shown.
Binary file modified Whisper.net.Runtime/win-x86/whisper.dll
Binary file not shown.
3 changes: 3 additions & 0 deletions Whisper.net/Internals/Native/Data.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ internal struct WhisperFullParams
// for auto-detection, set to nullptr, "" or "auto"
public IntPtr Language;

// Will end the pipeline after detecting the language. Not used by whisper.net
public byte DetectLanguage;

// common decoding parameters:
public byte SuppressBlank;

Expand Down
2 changes: 1 addition & 1 deletion Whisper.net/Whisper.net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>10</LangVersion>
<Version>1.4.0</Version>
<Version>1.4.2</Version>
<Authors>Sandro Hanea</Authors>
<Description>Cross-platform dotnet bindings for Whisper.</Description>
<PackageProjectUrl>https://github.com/sandrohanea/whisper.net</PackageProjectUrl>
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ To install Whisper.net, run the following command in the [Package Manager Consol
or simply add a package reference in your csproj:

```
<PackageReference Include="Whisper.net" Version="1.4.0" />
<PackageReference Include="Whisper.net.Runtime" Version="1.4.0" />
<PackageReference Include="Whisper.net" Version="1.4.2" />
<PackageReference Include="Whisper.net.Runtime" Version="1.4.2" />
```

## Runtime
Expand Down

0 comments on commit ddc1718

Please sign in to comment.