[Users] Clawsker 0.7.14 unleashed!

Michael Schwendt bugs.michael at gmx.net
Thu Aug 18 18:38:38 CEST 2016


On Tue, 16 Aug 2016 19:16:41 +0200, Ricardo Mones wrote:

>   - Support hidden preferences 'next_on_delete' (since Claws Mail
>     3.13.1) and 'master_passphrase_pbkdf2_rounds' (since 3.14.0)

I guess it spits out a warning (use of uninitialized value ... in line 470),
if running it with Claws Mail 3.13.2, since "master_passphrase_pbkdf2_rounds"
is new in 3.14.0:

diff -Nur clawsker-0.7.14-orig/clawsker clawsker-0.7.14/clawsker
--- clawsker-0.7.14-orig/clawsker	2016-08-16 17:27:47.000000000 +0200
+++ clawsker-0.7.14/clawsker	2016-08-18 18:34:58.562582913 +0200
@@ -467,7 +467,9 @@
     my $pagei = int (($type[2] - $type[1]) / 10);
     my $gentry = Gtk2::SpinButton->new_with_range ($type[1], $type[2], $pagei);
     $gentry->set_numeric (TRUE);
-    $gentry->set_value ($HPVALUE{$name});
+    if (defined($HPVALUE{$name})) {
+        $gentry->set_value ($HPVALUE{$name});
+    }
     $$hash{$key}[GUI] = $gentry;
     $gentry->signal_connect('value-changed' => sub {
             my ($w, $e) = @_;



More information about the Users mailing list