summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rwxr-xr-xmdkapplet2
2 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index bb57e35e..1bfb6079 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- mdkapplet
+ o set 'low' urgency for new distribution notification
- mdkapplet-upgrade-helper
o disable custom downloader settings in order to default to aria2
o disable the X screen saver while upgrading the system
diff --git a/mdkapplet b/mdkapplet
index 10aae9e9..1fa6b148 100755
--- a/mdkapplet
+++ b/mdkapplet
@@ -106,6 +106,7 @@ my %state = (
colour => [ 'bundle' ],
changes => [ 'okay' ],
menu => [ 'upgrade_distro', 'check' ],
+ urgency => 'low',
tt => [ N("A new version of Mandriva Linux distribution has been released") . "\n\n" . N("Do you want to upgrade?") ]
},
disconnected => {
@@ -573,6 +574,7 @@ sub setState {
$bubble->add_action('clicked', N("Add media"), \&add_media);
}
+ $bubble->set_urgency($state{$state}{urgency}) if $state{$state}{urgency};
$bubble->set_timeout(5000);
eval { $bubble->show };
}