diff options
| author | Paul Buetow <paul@buetow.org> | 2012-06-24 16:56:42 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2012-06-24 16:56:42 +0200 |
| commit | cfc4f47dff63d62d0c2255f7c1416205986b6242 (patch) | |
| tree | 207dce2f3bb08029f0022da66c011fbce2dd6ece | |
| parent | 96ebe8611bc62c4d913efd5defd9e7178a02f6d5 (diff) | |
dont save "title" to loadbarsrc
| -rw-r--r-- | .version | 2 | ||||
| -rw-r--r-- | debian/changelog | 4 | ||||
| -rw-r--r-- | lib/Loadbars/Config.pm | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -1 +1 @@ -0.5.3 +0.5.99 diff --git a/debian/changelog b/debian/changelog index f96fa74..e4bbe79 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,7 @@ +loadbars (0.5.99) testing; urgency=low + + * Some new features. + loadbars (0.5.3) stable; urgency=low * Introduce new param --hasagent. With --hasagent 1 loadbars will not diff --git a/lib/Loadbars/Config.pm b/lib/Loadbars/Config.pm index 9e1ad12..365d8c6 100644 --- a/lib/Loadbars/Config.pm +++ b/lib/Loadbars/Config.pm @@ -55,7 +55,7 @@ sub write () { return undef; }; - for ( keys %C ) { + for ( grep !/title/, keys %C ) { print $conffile "$_=$C{$_}\n"; } |
