summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rwxr-xr-xmdkapplet7
2 files changed, 7 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index a10960ec..219e573a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,6 @@
- mdkapplet
o actually honor DO_NOT_ASK_FOR_NO_MORE_SUPPORTED
+ o restore old behaviour when detecting a new distro
o make link button usable in no more supported dialog
Version 2.77.15.6 - 2 February 2010, Thierry Vignaud
diff --git a/mdkapplet b/mdkapplet
index bb1bcd9c..12c5e386 100755
--- a/mdkapplet
+++ b/mdkapplet
@@ -885,7 +885,12 @@ sub setState {
if ($state{$state}{tt}[0] && $icon->isa('Gtk2::StatusIcon') && !$state{$state}{do_not_use_bubble}) {
my $bubble = Gtk2::Notify->new_with_status_icon(N("Warning"), formatAlaTeX(translate($state{$state}{tt}[0])) . "\n",
'/usr/share/icons/mdkonline.png', $icon);
- if (member($state, qw(new_distribution no_more_supported))) {
+ if ($state eq 'new_distribution') {
+ $bubble->add_action('clicked', N("More Information"), \&upgrade);
+ if ($sub_state eq 'updates') {
+ push @arr, 'update';
+ }
+ } elsif ($state eq 'no_more_supported') {
$bubble->add_action('clicked', N("More Information"), \&no_more_supported);
if ($sub_state eq 'updates') {
push @arr, 'update';