mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 11:30:24 +08:00
* Simplified task control by having all logic in a single class and using async control mechanism * Fixed the tests * Made the marking of a backup partial explicitly communicated if the enumeration process is stopped. * Added support for pausing active transfers * Introduced transfer token to abort operations. * Updated the way LiveControl is emitting events. * Retains the paused state of the server across reboots, this fixes #5760. * Reworked the way throttle speeds are propagated through LiveControls. * Added option to pause transfers in the UI. * Removed throttle settings from the LiveControls class so it is exclusively handled by the ApplicationSettings. * Removed `thread-priority` as it does not work at all when tasks are used. * Fixed the stop dialog and API to only support stop and abort. * Removed unused variables
6 lines
236 B
JavaScript
6 lines
236 B
JavaScript
backupApp.controller('PauseController', function($scope, $location, gettextCatalog) {
|
|
$scope.selection = $scope.$parent.state.CurrentItem;
|
|
|
|
$scope.selection.time = 'infinite';
|
|
$scope.selection.pauseTransfers = false;
|
|
});
|