summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rwxr-xr-xmdkapplet7
2 files changed, 3 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index cb7f3cb8..678ca087 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,7 @@
o add an "upgrade system" in the menu when a new distro is
available
o ask for confirmation before performing distro upgrade
+ o compute regular updates even if there's a new distro
o enable to not check again for new distro
o use blue icon when there's a new distro
diff --git a/mdkapplet b/mdkapplet
index fbe9815e..54805611 100755
--- a/mdkapplet
+++ b/mdkapplet
@@ -327,7 +327,7 @@ sub harvester {
my ($state) = grep { $_->{code} eq $status } values %comm_codes;
if ($state) {
logIt($state->{log});
- go2State($state->{status});
+ go2State($new_distro_version ? 'new_distribution' : $state->{status});
}
} elsif ($media_manager_pid && $media_manager_pid == $childpid) {
undef $media_manager_pid;
@@ -426,10 +426,7 @@ sub silentCheck() {
my $new_time = time();
if (!$check_time || $new_time - $check_time > $config{DISTRO_CHECK_DELAY}) {
$check_time = $new_time;
- if (is_there_a_new_distributions()) {
- go2State('new_distribution');
- return;
- }
+ is_there_a_new_distributions();
}
return if $mdv_update_pid || $checker_pid;