summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog7
-rw-r--r--debian/files2
-rwxr-xr-xsrc/ivymon7
3 files changed, 13 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index f6cebf4..cec256c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+ivymon (0.2) unstable; urgency=low
+
+ * correction aide en ligne
+ * l'abonnement (.*) est cree par defaut au lancement
+
+ -- Daniel ETIENNE <etienne@tls.cena.fr> Thu, 28 Dec 2000 14:02:40 +0100
+
ivymon (0.1) unstable; urgency=low
* Initial release.
diff --git a/debian/files b/debian/files
index 410773c..b49f8f9 100644
--- a/debian/files
+++ b/debian/files
@@ -1 +1 @@
-ivymon_0.1_i386.deb unknown optional
+ivymon_0.2_i386.deb unknown optional
diff --git a/src/ivymon b/src/ivymon
index e6f3ceb..f546bdb 100755
--- a/src/ivymon
+++ b/src/ivymon
@@ -39,7 +39,7 @@ $mw->minsize(850, 768);
if (not GetOptions('-help', '-history=s', '-b=s') or $opt_help) {
print "Usage: ivymon [options]\n";
print "Options : \n";
- print " -s <[addr]:port> bus port(default $ivy_port)\n";
+ print " -b <[addr]:port> bus port(default $ivy_port)\n";
print " -history <number> messages history length (default $history)\n";
print " -help help message \n";
exit ;
@@ -209,7 +209,6 @@ my $bindingsRemove =
-command => [\&removeBinding])->pack(-fill => 'both',
-side => 'bottom',
-expand => 1);
-
#----------------------------------------------------------------------------------
# Description de la zone Recherche
#----------------------------------------------------------------------------------
@@ -367,6 +366,10 @@ $ivy->start;
$mw->repeat(1000, \&updateDuration);
+# par defaut on cree l'abonnement (.*)
+$bindingsEntry->insert(0, '(.*)');
+&addBinding;
+
MainLoop;
#==================================================================================