summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rwxr-xr-xmdkapplet-config34
2 files changed, 36 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index e7c4589a..7db16662 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+- mdkapplet-config
+ o offer a couple more options regarding checks
+
Version 2.77.12 - 26 November 2009, Thierry Vignaud
- mdkapplet-restricted-helper:
diff --git a/mdkapplet-config b/mdkapplet-config
index 7e5ed24b..edcd180c 100755
--- a/mdkapplet-config
+++ b/mdkapplet-config
@@ -33,6 +33,7 @@ use mdkonline;
use mdkapplet_gui;
use interactive;
+get_product_id();
configure();
ugtk2::exit(0);
@@ -53,9 +54,13 @@ sub configure() {
# sanity check:
$config{UPDATE_FREQUENCY} = 1 if $config{UPDATE_FREQUENCY} < 1;
+
+ # config file has negative options but GUI want positive options (HIG):
+ invbools_for_display(\%config);
my $_ww = eval { gtknew('HScale', digits => 5) };
my $is_hscale_unsupported = $@;
+ my $product = translate_product();
my $res =
fill_n_run_portable_dialog(
@@ -79,7 +84,24 @@ sub configure() {
lower => 5,
upper => 30,
step_increment => 1,
- value_ref => \$config{FIRST_CHECK_DELAY})) ]
+ value_ref => \$config{FIRST_CHECK_DELAY})) ],
+ [ gtknew('CheckButton',
+ text => N("Check for newer \"%s\" releases", $product),
+ active_ref => \$config{DO_NOT_ASK_FOR_DISTRO_UPGRADE},
+ ),
+ ],
+ [ gtknew('CheckButton',
+ text => N("Check for missing \"%s\" media", N("Restricted")),
+ active_ref => \$config{DO_NOT_ASK_FOR_RESTRICTED},
+ sensitive => is_restricted_media_supported(),
+ ),
+ ],
+ [ gtknew('CheckButton',
+ text => N("Check for missing \"%s\" media", N("Enterprise")),
+ active_ref => \$config{DO_NOT_ASK_FOR_ENTERPRISE_UPDATE_MEDIA},
+ sensitive => is_enterprise_media_supported(),
+ ),
+ ],
]),
create_okcancel($w), #, N("Next"), N("Cancel")),
]);
@@ -94,6 +116,16 @@ sub configure() {
# convert back into ms from seconds:
$config{FIRST_CHECK_DELAY} *= 1000;
+ # config file has negative options but GUI want positive options (HIG):
+ invbools_for_display(\%config);
+
setVarsInSh($config_file, \%config);
}
}
+
+sub invbools_for_display {
+ my ($config) = @_;
+ foreach (qw(DO_NOT_ASK_FOR_DISTRO_UPGRADE DO_NOT_ASK_FOR_RESTRICTED DO_NOT_ASK_FOR_ENTERPRISE_UPDATE_MEDIA)) {
+ invbool(\$config->{$_});
+ }
+}