diff --git a/Makefile b/Makefile
index 6b6db352..e8a20d32 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
# Change also in pyproject.toml and buzz/__version__.py
-version := 1.5.0
+version := 1.4.3
mac_app_path := ./dist/Buzz.app
mac_zip_path := ./dist/Buzz-${version}-mac.zip
@@ -52,7 +52,8 @@ ifeq ($(OS), Windows_NT)
# The _DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR is needed to prevent mutex lock issues on Windows
# https://github.com/actions/runner-images/issues/10004#issuecomment-2156109231
# -DCMAKE_[C|CXX]_COMPILER_WORKS=TRUE is used to prevent issue in building test program that fails on CI
- cmake -S whisper.cpp -B whisper.cpp/build/ -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_RPATH='$$ORIGIN' -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON -DCMAKE_C_FLAGS="-D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR" -DCMAKE_CXX_FLAGS="-D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR" -DCMAKE_C_COMPILER_WORKS=TRUE -DCMAKE_CXX_COMPILER_WORKS=TRUE -DGGML_VULKAN=1
+ # GGML_NATIVE=OFF ensures we don't use -march=native (which would target the build machine's CPU)
+ cmake -S whisper.cpp -B whisper.cpp/build/ -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_RPATH='$$ORIGIN' -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON -DCMAKE_C_FLAGS="-D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR" -DCMAKE_CXX_FLAGS="-D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR" -DCMAKE_C_COMPILER_WORKS=TRUE -DCMAKE_CXX_COMPILER_WORKS=TRUE -DGGML_VULKAN=1 -DGGML_NATIVE=OFF
cmake --build whisper.cpp/build -j --config Release --verbose
-mkdir buzz/whisper_cpp
@@ -63,9 +64,11 @@ endif
ifeq ($(shell uname -s), Linux)
# Build Whisper with Vulkan support
+ # GGML_NATIVE=OFF ensures we don't use -march=native (which would target the build machine's CPU)
+ # This enables portable SSE4.2/AVX/AVX2 optimizations that work on most x86_64 CPUs
rm -rf whisper.cpp/build || true
-mkdir -p buzz/whisper_cpp
- cmake -S whisper.cpp -B whisper.cpp/build/ -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_RPATH='$$ORIGIN' -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON -DGGML_VULKAN=1
+ cmake -S whisper.cpp -B whisper.cpp/build/ -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_RPATH='$$ORIGIN' -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON -DGGML_VULKAN=1 -DGGML_NATIVE=OFF
cmake --build whisper.cpp/build -j --config Release --verbose
cp whisper.cpp/build/bin/whisper-cli buzz/whisper_cpp/ || true
cp whisper.cpp/build/bin/whisper-server buzz/whisper_cpp/ || true
diff --git a/buzz/__version__.py b/buzz/__version__.py
index 177b9352..fd870296 100644
--- a/buzz/__version__.py
+++ b/buzz/__version__.py
@@ -1 +1 @@
-VERSION = "1.5.0"
+VERSION = "1.4.3"
diff --git a/buzz/model_loader.py b/buzz/model_loader.py
index 2d28ebdd..224bd6d3 100644
--- a/buzz/model_loader.py
+++ b/buzz/model_loader.py
@@ -49,7 +49,6 @@ if _certifi_ca_bundle is not None:
return session
configure_http_backend(backend_factory=_hf_session_factory)
- logging.debug(f"Configured huggingface_hub to use certifi CA bundle: {_certifi_ca_bundle}")
except ImportError:
# configure_http_backend not available in older huggingface_hub versions
pass
diff --git a/docs/docs/usage/4_edit_and_resize.md b/docs/docs/usage/4_edit_and_resize.md
index cb79f482..7bdf92bb 100644
--- a/docs/docs/usage/4_edit_and_resize.md
+++ b/docs/docs/usage/4_edit_and_resize.md
@@ -10,4 +10,4 @@ Transcription view screen has option to resize the transcripts. Click on the "Re
If audio file is still present on the system word-level timing merge will also analyze the audio for silences to improve subtitle accuracy. Subtitle generation from transcripts with word-level timings is available since version 1.3.0.
-The resize tool also has an option to extend end time of segments if you want the subtitles to be on the screen for longer. You can specify the amount of time in seconds to extend each subtitle segment. Buzz will add this amount of time to the end of each subtitle segment making sure that the end of a segment does not go over start of the next segment. This feature is available since 1.5.0.
\ No newline at end of file
+The resize tool also has an option to extend end time of segments if you want the subtitles to be on the screen for longer. You can specify the amount of time in seconds to extend each subtitle segment. Buzz will add this amount of time to the end of each subtitle segment making sure that the end of a segment does not go over start of the next segment. This feature is available since 1.4.3.
\ No newline at end of file
diff --git a/pyproject.toml b/pyproject.toml
index 7ada3306..8f26e4ed 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,7 +1,7 @@
[project]
name = "buzz-captions"
# Change also in Makefile and buzz/__version__.py
-version = "1.5.0"
+version = "1.4.3"
description = ""
authors = [{ name = "Chidi Williams", email = "williamschidi1@gmail.com" }]
requires-python = ">=3.12,<3.13"
diff --git a/share/metainfo/io.github.chidiwilliams.Buzz.metainfo.xml b/share/metainfo/io.github.chidiwilliams.Buzz.metainfo.xml
index 58f5ddb2..2b7bd1ab 100644
--- a/share/metainfo/io.github.chidiwilliams.Buzz.metainfo.xml
+++ b/share/metainfo/io.github.chidiwilliams.Buzz.metainfo.xml
@@ -65,6 +65,12 @@
+
+ https://github.com/chidiwilliams/buzz/releases/tag/v1.4.3
+
+
Fixed support for whisper.cpp on older CPUs and issues in speaker identification.