summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2012-06-24 16:56:42 +0200
committerPaul Buetow <paul@buetow.org>2012-06-24 16:56:42 +0200
commitcfc4f47dff63d62d0c2255f7c1416205986b6242 (patch)
tree207dce2f3bb08029f0022da66c011fbce2dd6ece
parent96ebe8611bc62c4d913efd5defd9e7178a02f6d5 (diff)
dont save "title" to loadbarsrc
-rw-r--r--.version2
-rw-r--r--debian/changelog4
-rw-r--r--lib/Loadbars/Config.pm2
3 files changed, 6 insertions, 2 deletions
diff --git a/.version b/.version
index be14282..6d0dc3b 100644
--- a/.version
+++ b/.version
@@ -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";
}