diff options
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | src/ivymon | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 2dfa3e9..f69d085 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -ivymon (1.6) unstable; urgency=low +ivymon (1.16) unstable; urgency=low * added a time regulation system for replay functionality. It works only when speed rate = 1. @@ -269,14 +269,16 @@ $history = $opt_history if $opt_history; my $title; my $ivy_version = $Ivy::VERSION; my $ivy_cvsrevision = 0; +my $ivy_versionstring = "v$ivy_version"; if ($ivy_version =~ s/Revision: (.*)//) { $ivy_version = $1; $ivy_cvsrevision = 1; + $ivy_versionstring = "v$ivy_version (cvs revision)"; } if ($ivy_port) { - $title = "Ivymon v$VERSION ($ivy_port) - Ivy v$ivy_version"; + $title = "Ivymon v$VERSION ($ivy_port) - Ivy $ivy_versionstring"; } else { - $title = "Ivymon v$VERSION (default port) - Ivy v$ivy_version"; + $title = "Ivymon v$VERSION (default port) - Ivy $ivy_versionstring"; } $replay_time_granularity = $opt_replaytimegranularity if $opt_replaytimegranularity > 0; if ($replay_time_granularity >= 1) { |