Thanks to lotr44's excellent analysis of the problem, we now have
a fix for the problem with typing "!" on French keyboards. git-svn-id: https://shellinabox.googlecode.com/svn/trunk@213 0da03de8-d603-11dd-86c2-0f8696b7b6f9
This commit is contained in:
parent
bdc877c53e
commit
7f59f4a7a6
8 changed files with 17 additions and 12 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-08-19 Markus Gutschke <markus@shellinabox.com>
|
||||
|
||||
* Thanks to lotr44's excellent analysis of the problem, we now have
|
||||
a fix for the problem with typing "!" on French keyboards.
|
||||
|
||||
2010-08-06 Markus Gutschke <markus@shellinabox.com>
|
||||
|
||||
* Allow users to disable the blinking cursor from the context menu.
|
||||
|
|
2
config.h
2
config.h
|
@ -153,7 +153,7 @@
|
|||
#define STDC_HEADERS 1
|
||||
|
||||
/* Most recent revision number in the version control system */
|
||||
#define VCS_REVISION "212"
|
||||
#define VCS_REVISION "213"
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "2.10"
|
||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -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=212
|
||||
VCS_REVISION=213
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
|
|
|
@ -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=212
|
||||
VCS_REVISION=213
|
||||
AC_SUBST(VCS_REVISION)
|
||||
AC_DEFINE_UNQUOTED(VCS_REVISION, "${VCS_REVISION}",
|
||||
[Most recent revision number in the version control system])
|
||||
|
|
|
@ -1962,7 +1962,7 @@ VT100.prototype.toggleCursorBlinking = function() {
|
|||
};
|
||||
|
||||
VT100.prototype.about = function() {
|
||||
alert("VT100 Terminal Emulator " + "2.10 (revision 212)" +
|
||||
alert("VT100 Terminal Emulator " + "2.10 (revision 213)" +
|
||||
"\nCopyright 2008-2010 by Markus Gutschke\n" +
|
||||
"For more information check http://shellinabox.com");
|
||||
};
|
||||
|
@ -2450,7 +2450,7 @@ VT100.prototype.keyDown = function(event) {
|
|||
event.keyCode == 106 || event.keyCode == 107 ||
|
||||
event.keyCode >= 109 && event.keyCode <= 111 ||
|
||||
event.keyCode >= 186 && event.keyCode <= 192 ||
|
||||
event.keyCode >= 219 && event.keyCode <= 222 ||
|
||||
event.keyCode >= 219 && event.keyCode <= 223 ||
|
||||
event.keyCode == 252;
|
||||
try {
|
||||
if (navigator.appName == 'Konqueror') {
|
||||
|
@ -2589,7 +2589,7 @@ VT100.prototype.keyUp = function(event) {
|
|||
event.keyCode == 106 || event.keyCode == 107 ||
|
||||
event.keyCode >= 109 && event.keyCode <= 111 ||
|
||||
event.keyCode >= 186 && event.keyCode <= 192 ||
|
||||
event.keyCode >= 219 && event.keyCode <= 222 ||
|
||||
event.keyCode >= 219 && event.keyCode <= 223 ||
|
||||
event.keyCode == 252;
|
||||
var fake = [ ];
|
||||
fake.ctrlKey = event.ctrlKey;
|
||||
|
|
|
@ -358,7 +358,7 @@ ShellInABox.prototype.extendContextMenu = function(entries, actions) {
|
|||
};
|
||||
|
||||
ShellInABox.prototype.about = function() {
|
||||
alert("Shell In A Box version " + "2.10 (revision 212)" +
|
||||
alert("Shell In A Box version " + "2.10 (revision 213)" +
|
||||
"\nCopyright 2008-2010 by Markus Gutschke\n" +
|
||||
"For more information check http://shellinabox.com" +
|
||||
(typeof serverSupportsSSL != 'undefined' && serverSupportsSSL ?
|
||||
|
|
|
@ -1962,7 +1962,7 @@ VT100.prototype.toggleCursorBlinking = function() {
|
|||
};
|
||||
|
||||
VT100.prototype.about = function() {
|
||||
alert("VT100 Terminal Emulator " + "2.10 (revision 212)" +
|
||||
alert("VT100 Terminal Emulator " + "2.10 (revision 213)" +
|
||||
"\nCopyright 2008-2010 by Markus Gutschke\n" +
|
||||
"For more information check http://shellinabox.com");
|
||||
};
|
||||
|
@ -2450,7 +2450,7 @@ VT100.prototype.keyDown = function(event) {
|
|||
event.keyCode == 106 || event.keyCode == 107 ||
|
||||
event.keyCode >= 109 && event.keyCode <= 111 ||
|
||||
event.keyCode >= 186 && event.keyCode <= 192 ||
|
||||
event.keyCode >= 219 && event.keyCode <= 222 ||
|
||||
event.keyCode >= 219 && event.keyCode <= 223 ||
|
||||
event.keyCode == 252;
|
||||
try {
|
||||
if (navigator.appName == 'Konqueror') {
|
||||
|
@ -2589,7 +2589,7 @@ VT100.prototype.keyUp = function(event) {
|
|||
event.keyCode == 106 || event.keyCode == 107 ||
|
||||
event.keyCode >= 109 && event.keyCode <= 111 ||
|
||||
event.keyCode >= 186 && event.keyCode <= 192 ||
|
||||
event.keyCode >= 219 && event.keyCode <= 222 ||
|
||||
event.keyCode >= 219 && event.keyCode <= 223 ||
|
||||
event.keyCode == 252;
|
||||
var fake = [ ];
|
||||
fake.ctrlKey = event.ctrlKey;
|
||||
|
|
|
@ -2450,7 +2450,7 @@ VT100.prototype.keyDown = function(event) {
|
|||
event.keyCode == 106 || event.keyCode == 107 ||
|
||||
event.keyCode >= 109 && event.keyCode <= 111 ||
|
||||
event.keyCode >= 186 && event.keyCode <= 192 ||
|
||||
event.keyCode >= 219 && event.keyCode <= 222 ||
|
||||
event.keyCode >= 219 && event.keyCode <= 223 ||
|
||||
event.keyCode == 252;
|
||||
try {
|
||||
if (navigator.appName == 'Konqueror') {
|
||||
|
@ -2589,7 +2589,7 @@ VT100.prototype.keyUp = function(event) {
|
|||
event.keyCode == 106 || event.keyCode == 107 ||
|
||||
event.keyCode >= 109 && event.keyCode <= 111 ||
|
||||
event.keyCode >= 186 && event.keyCode <= 192 ||
|
||||
event.keyCode >= 219 && event.keyCode <= 222 ||
|
||||
event.keyCode >= 219 && event.keyCode <= 223 ||
|
||||
event.keyCode == 252;
|
||||
var fake = [ ];
|
||||
fake.ctrlKey = event.ctrlKey;
|
||||
|
|
Loading…
Reference in a new issue