summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordscho <dscho>2006-06-15 12:32:37 +0000
committerdscho <dscho>2006-06-15 12:32:37 +0000
commitd12939e22c056345f5926595f0f5e7cc2b686077 (patch)
treea085ddb6b93646ca1d7e711505ae5868dc91a568
parentafcdc4f4b25f5568b4082d5c240bda1ea866d5e6 (diff)
downloadlibtdevnc-d12939e2.tar.gz
libtdevnc-d12939e2.zip
no need for Time::HiRes to play back
-rw-r--r--VisualNaCro/ChangeLog3
-rw-r--r--VisualNaCro/NEWS5
-rw-r--r--VisualNaCro/recorder.pl5
3 files changed, 7 insertions, 6 deletions
diff --git a/VisualNaCro/ChangeLog b/VisualNaCro/ChangeLog
index 03bb9d2..9f22e04 100644
--- a/VisualNaCro/ChangeLog
+++ b/VisualNaCro/ChangeLog
@@ -1,3 +1,6 @@
+2006-06-15: Johannes Schindelin <Johannes.Schindelin@gmx.de>
+ * added timing: you can record the events with their timestamps now
+
2005-01-13: Johannes Schindelin <Johannes.Schindelin@gmx.de>
* started the project
diff --git a/VisualNaCro/NEWS b/VisualNaCro/NEWS
index 838bb62..b6040b9 100644
--- a/VisualNaCro/NEWS
+++ b/VisualNaCro/NEWS
@@ -1 +1,4 @@
-No News yet
+With --timing, you can actually record action scripts which are meaningful...
+Earlier, the events just got garbled, because the GUI could not react as
+fast as the events were churned out.
+
diff --git a/VisualNaCro/recorder.pl b/VisualNaCro/recorder.pl
index 3b86e40..6621380 100644
--- a/VisualNaCro/recorder.pl
+++ b/VisualNaCro/recorder.pl
@@ -56,15 +56,10 @@ if($vnc<0) {
exit 1;
}
-# TODO: timing
-
open OUT, ">$output.pl";
print OUT "#!/usr/bin/perl\n";
print OUT "\n";
print OUT "use nacro;\n";
-if ($timing) {
- print OUT "use Time::HiRes;"
-}
print OUT "\n";
print OUT "\$x_origin=0; \$y_origin=0;\n";
print OUT "\$vnc=nacro::initvnc(\"$server\",$port,$listen_port);\n";