release 1.11.2
[descalc.git] / 08_disp_stdout.pm
similarity index 64%
rename from 08_stdout.pm
rename to 08_disp_stdout.pm
index ededf36b0c18c02be57c921dc9e63106f12c7a45..41614e1be994f2064e1ec6104d13c2fe0aac2947 100644 (file)
@@ -1,16 +1,17 @@
 # console output for DCT, by Shiar
 
-# 1.10.1 200410140120 - print everything to STDOUT
-#     .2              - use escape sequences for clear/reposition/invert
-#     .3              - try to get width/height from environment vars
-#     .4              - never clear screen (just let it scroll)
-#     .5 200410142200 - startup message omitted (now shown by main)
+# 1.11.0 200410152225 - class in file name, so check is not needed anymore
+# 1.10.1 200410142200 - startup message omitted (now shown by main)
+# 1.10.0 200410140120 - never clear screen (just let it scroll)
+#                     - try to get width/height from environment vars
+#                     - use escape sequences for clear/reposition/invert
+#                     - print everything to STDOUT
 
 use strict;
 use warnings;
 
-return 0 if $set{display};
-$set{display} = "stdout";
+#return 0 if $set{display};
+#$set{display} = "stdout";
 
 push @{$hook{init}}, sub {
 #      print "\ec";  # reset (clear screen, go home)
@@ -39,6 +40,6 @@ push @{$hook{showentry}}, sub {
 return {
        author  => "Shiar",
        title   => "console output",
-       version => "1.10.4",
+       version => "1.11",
 };