]> andersk Git - test.git/commitdiff
Fix some scaling related issues. This fix is thanks to some
authorMarkus Gutschke <markus@shellinabox.com>
Fri, 3 Sep 2010 17:24:57 +0000 (17:24 +0000)
committerMarkus Gutschke <markus@shellinabox.com>
Fri, 3 Sep 2010 17:24:57 +0000 (17:24 +0000)
excellent detective work by Jan <siev...@zedat.fu-berlin.de>.

ChangeLog
config.h
configure
configure.ac
demo/styles.css
demo/vt100.js
shellinabox/shell_in_a_box.js
shellinabox/styles.css
shellinabox/vt100.js

index 9869f8d46fe468e82b5950aa2df79803e8ecf523..1a2a30543614ac04509bbc344b26676b8438525e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-09-03  Markus Gutschke  <markus@shellinabox.com>
+
+       * Fix some scaling related issues. This fix is thanks to some
+       excellent detective work by Jan <siev...@zedat.fu-berlin.de>.
+
 2010-08-19  Markus Gutschke  <markus@shellinabox.com>
 
        * Thanks to lotr44's excellent analysis of the problem, we now have
index c58ce4da2bd4ac56fca6f7b2b315612fc49481ea..43cf6d9022c9bd968174937fc4e7d9b8a7d6c2d7 100644 (file)
--- a/config.h
+++ b/config.h
 #define STDC_HEADERS 1
 
 /* Most recent revision number in the version control system */
-#define VCS_REVISION "217"
+#define VCS_REVISION "218"
 
 /* Version number of package */
 #define VERSION "2.10"
index 892ad31129cdfeb7b75c97a8a11e2d8fee727271..ba1bfc637d58abe5524ac3e47fdfc4fa9d9fb9e6 100755 (executable)
--- a/configure
+++ b/configure
@@ -2328,7 +2328,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
 
-VCS_REVISION=217
+VCS_REVISION=218
 
 
 cat >>confdefs.h <<_ACEOF
index 861b093159ea9f8d64aa5f2989180801f71ea46d..05786e57e199a3fe3df48afe7b6122017304827e 100644 (file)
@@ -2,7 +2,7 @@ AC_PREREQ(2.57)
 
 dnl This is the one location where the authoritative version number is stored
 AC_INIT(shellinabox, 2.10, markus@shellinabox.com)
-VCS_REVISION=217
+VCS_REVISION=218
 AC_SUBST(VCS_REVISION)
 AC_DEFINE_UNQUOTED(VCS_REVISION, "${VCS_REVISION}",
                    [Most recent revision number in the version control system])
index b1b5b6f7c7fdb871474742f3050afbc18d11d98b..7f7f6836e4409b505a1874420a9479f805e3d254 100644 (file)
@@ -44,7 +44,7 @@
   padding:          1px;
 }
 
-#vt100 #console, #vt100 #alt_console, #vt100 #cursor, #vt100 #lineheight { 
+#vt100 #console, #vt100 #alt_console, #vt100 #cursor, #vt100 #lineheight, #vt100 .hidden pre { 
   font-family:      "DejaVu Sans Mono", "Everson Mono", FreeMono, "Andale Mono", "Lucida Console", monospace;
 }
 
index 329e3930cddedb7a7972fb0f77aa799be39fc91a..6e2dd28502d66c86a13a6d4d78f699454e93bbc0 100644 (file)
@@ -1962,7 +1962,7 @@ VT100.prototype.toggleCursorBlinking = function() {
 };
 
 VT100.prototype.about = function() {
-  alert("VT100 Terminal Emulator " + "2.10 (revision 217)" +
+  alert("VT100 Terminal Emulator " + "2.10 (revision 218)" +
         "\nCopyright 2008-2010 by Markus Gutschke\n" +
         "For more information check http://shellinabox.com");
 };
index 86b0d4da911fcc387dca99b46b18d1ff952d2b88..07a053608606a874f305bf3e0f7e19b59f64b467 100644 (file)
@@ -358,7 +358,7 @@ ShellInABox.prototype.extendContextMenu = function(entries, actions) {
 };
 
 ShellInABox.prototype.about = function() {
-  alert("Shell In A Box version " + "2.10 (revision 217)" +
+  alert("Shell In A Box version " + "2.10 (revision 218)" +
         "\nCopyright 2008-2010 by Markus Gutschke\n" +
         "For more information check http://shellinabox.com" +
         (typeof serverSupportsSSL != 'undefined' && serverSupportsSSL ?
index a6aa53a75f64ae5854d94289b67794c49b86fd27..79ad9b271ac5b1371297e4ed48a84534c6b08e26 100644 (file)
@@ -44,7 +44,7 @@
   padding:          1px;
 }
 
-#vt100 #console, #vt100 #alt_console, #vt100 #cursor, #vt100 #lineheight { 
+#vt100 #console, #vt100 #alt_console, #vt100 #cursor, #vt100 #lineheight, #vt100 .hidden pre { 
   font-family:      "DejaVu Sans Mono", "Everson Mono", FreeMono, "Andale Mono", "Lucida Console", monospace;
 }
 
index 329e3930cddedb7a7972fb0f77aa799be39fc91a..6e2dd28502d66c86a13a6d4d78f699454e93bbc0 100644 (file)
@@ -1962,7 +1962,7 @@ VT100.prototype.toggleCursorBlinking = function() {
 };
 
 VT100.prototype.about = function() {
-  alert("VT100 Terminal Emulator " + "2.10 (revision 217)" +
+  alert("VT100 Terminal Emulator " + "2.10 (revision 218)" +
         "\nCopyright 2008-2010 by Markus Gutschke\n" +
         "For more information check http://shellinabox.com");
 };
This page took 0.124707 seconds and 5 git commands to generate.