Skip to content

Commit 6a43faf

Browse files
committed
feat: Update deps
1 parent 4c3d31f commit 6a43faf

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

flatpak/org.nickvision.application.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
"sources": [
3131
{
3232
"type": "archive",
33-
"url": "https://archives.boost.io/release/1.88.0/source/boost_1_88_0.tar.bz2",
34-
"sha256": "46d9d2c06637b219270877c9e16155cbd015b6dc84349af064c088e9b5b12f7b"
33+
"url": "https://archives.boost.io/release/1.89.0/source/boost_1_89_0.tar.bz2",
34+
"sha256": "85a33fa22621b4f314f8e85e1a5e2a9363d22e4f4992925d4bb3bc631b5a0c7a"
3535
}
3636
]
3737
},

libapplication/src/controllers/mainwindowcontroller.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,11 @@ namespace Nickvision::Application::Shared::Controllers
177177
{
178178
return true;
179179
}
180-
m_appUpdateProgressChanged.invoke({ static_cast<double>(static_cast<long double>(downloadNow) / static_cast<long double>(downloadTotal)) });
181-
return true;
180+
double progress{ static_cast<double>(static_cast<long double>(downloadNow) / static_cast<long double>(downloadTotal)) };
181+
if(progress != 1.0)
182+
{
183+
m_appUpdateProgressChanged.invoke({ progress });
184+
}
182185
} }) };
183186
m_appUpdateProgressChanged.invoke({ 1.0 });
184187
if(!res)

0 commit comments

Comments
 (0)