File tree Expand file tree Collapse file tree
libapplication/src/controllers Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 },
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments