diff --git a/CMakeLists.txt b/CMakeLists.txt
index 00051f05a..f8c534326 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,7 +14,7 @@ set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
-set( PGR_VERSION "4.3.1" )
+set( PGR_VERSION "4.4.0" )
set( COPYRIGHT_YEARS "2021-2024" )
INCLUDE(GNUInstallDirs)
diff --git a/README.md b/README.md
index 06fc242d1..9e7c52f5c 100644
--- a/README.md
+++ b/README.md
@@ -45,13 +45,13 @@ Make sure you have access to the internet before you run the media-downloader fo
#### Installer for Microsoft Windows
-Installer for Microsoft Windows is [here](https://github.com/mhogomchungu/media-downloader/releases/download/4.3.1/MediaDownloader-4.3.1.setup.exe).
+Installer for Microsoft Windows is [here](https://github.com/mhogomchungu/media-downloader/releases/download/4.4.0/MediaDownloader-4.4.0.setup.exe).
#### Portable version for Microsoft Windows
-A portable version is a self-contained version that keeps everything in the application folder.
+A portable version is a self-contained version that keeps everything in the application folder and does not need to be installed first.
-Portable version for Microsoft Windows is [here](https://github.com/mhogomchungu/media-downloader/releases/download/4.3.1/MediaDownloader-4.3.1.zip).
+Portable version for Microsoft Windows is [here](https://github.com/mhogomchungu/media-downloader/releases/download/4.4.0/MediaDownloader-4.4.0.zip).
Git version of portable version for Microsoft Windows is [here](https://github.com/mhogomchungu/media-downloader-git/releases).
diff --git a/changelog b/changelog
index 6f15a54e5..6feb6a24c 100644
--- a/changelog
+++ b/changelog
@@ -249,7 +249,7 @@ Version 1.2.0(April 1st, 2021)
[All]
- Fix a bug that causes a crash when trying to be clever with certain user provided yt-dlp options.
- Version 4.4.0(Unreleased)
+ Version 4.4.0(March 3rd, 2024)
[Windows]
- Fix a bug that caused Media Downloader to not show progress report when file names contained invalid
json character.
diff --git a/src/media-downloader.appdata.xml b/src/media-downloader.appdata.xml
index 3a9ee24bb..ef9afad18 100644
--- a/src/media-downloader.appdata.xml
+++ b/src/media-downloader.appdata.xml
@@ -76,6 +76,7 @@
mhogomchungu_AT_gmail.com
+
diff --git a/src/utility.cpp b/src/utility.cpp
index 27e691166..9bec47569 100644
--- a/src/utility.cpp
+++ b/src/utility.cpp
@@ -1203,7 +1203,7 @@ static util::version _get_process_version( const QString& path,
if( file.open( QIODevice::ReadOnly ) ){
- util::version m = file.readAll() ;
+ util::version m = file.readAll().trimmed() ;
if( m.valid() ){