[core] improvement: multi-threaded download not enabled by default since it fails for some scenarios

This commit is contained in:
Vinicius Moreira
2021-11-19 18:28:35 -03:00
parent 6a68588cd4
commit a136ef28f4
2 changed files with 4 additions and 1 deletions

View File

@@ -25,6 +25,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- crashing when QT components sizes are not integers [#198](https://github.com/vinifmor/bauh/issues/198)
### Improvements
- General
- multi-threaded download not enabled by default since it fails for some scenarios (still can be enabled through the settings panel/file)
- AppImage
- not stopping the upgrade process when one of several applications have been selected to upgrade

View File

@@ -48,7 +48,7 @@ class CoreConfigManager(YAMLConfigManager):
},
'download': {
'multithreaded': True,
'multithreaded': False,
'multithreaded_client': None,
'icons': True
},