Bump version to 2.9.0

Signed-off-by: Paris Kasidiaris <paris@sourcelair.com>
This commit is contained in:
Paris Kasidiaris 2017-08-03 18:43:14 +00:00
parent 0079677e43
commit f5ba386c01
No known key found for this signature in database
GPG Key ID: BF6B0B0F80EDDDBB
6 changed files with 674 additions and 511 deletions

12
AUTHORS
View File

@ -6,6 +6,7 @@ Alessandro Nadalin <alessandro.nadalin@gmail.com>
Alexander Olsson <noseglid@gmail.com> Alexander Olsson <noseglid@gmail.com>
Alexey Kontsevoy <alexey@gravitational.com> Alexey Kontsevoy <alexey@gravitational.com>
Anish Athalye <me@anishathalye.com> Anish Athalye <me@anishathalye.com>
Anthony Lapenna <lapenna.anthony@gmail.com>
Antonis Kalipetis <akalipetis@sourcelair.com> Antonis Kalipetis <akalipetis@sourcelair.com>
Anton Skshidlevsky <meefik@gmail.com> Anton Skshidlevsky <meefik@gmail.com>
Anton Yurovskykh <anton.yurovskykh@gmail.com> Anton Yurovskykh <anton.yurovskykh@gmail.com>
@ -21,6 +22,7 @@ Brian Mock <brian@mockbrian.com>
Carson Anderson <carson@betterservers.com> Carson Anderson <carson@betterservers.com>
CHaBou <chabup@delean.fr> CHaBou <chabup@delean.fr>
Christian Budde Christensen <budde377@gmail.com> Christian Budde Christensen <budde377@gmail.com>
Christof Marti <chrmarti@microsoft.com>
Christopher Jeffrey <chjjeffrey@gmail.com> Christopher Jeffrey <chjjeffrey@gmail.com>
coderaiser <mnemonic.enemy@gmail.com> coderaiser <mnemonic.enemy@gmail.com>
Daniel Imms <daimms@microsoft.com> Daniel Imms <daimms@microsoft.com>
@ -37,14 +39,20 @@ InDieTasten <indietasten@gmail.com>
irokas <akasidiari@inf.uth.gr> irokas <akasidiari@inf.uth.gr>
Jean Bruenn <himself@jeanbruenn.info> Jean Bruenn <himself@jeanbruenn.info>
Jeremy Danyow <jedanyow@microsoft.com> Jeremy Danyow <jedanyow@microsoft.com>
Joao Moreno <jomo@microsoft.com>
Joao Moreno <mail@joaomoreno.com>
Jon Masters <jon.masters@sky.com>
Jörg Breitbart <jerch@rockborn.de> Jörg Breitbart <jerch@rockborn.de>
Justin Mecham <justin@mecham.me> Justin Mecham <justin@mecham.me>
Kirill Merkushev <lanwen@yandex.ru>
Lucian Buzzo <lucian.buzzo@gmail.com> Lucian Buzzo <lucian.buzzo@gmail.com>
Maël Nison <nison.mael@gmail.com> Maël Nison <nison.mael@gmail.com>
Martin Chloride <i@martincl2.me> Martin Chloride <i@martincl2.me>
Martin Wang <jiahaow@ca.ibm.com> Martin Wang <jiahaow@ca.ibm.com>
Matt Bierner <matb@microsoft.com>
Michael Irwin <mikesir87@gmail.com> Michael Irwin <mikesir87@gmail.com>
Mikko Karvonen <mikko.karvonen@arm.com> Mikko Karvonen <mikko.karvonen@arm.com>
mofux <t.zilz@mofux.org>
Nicolas Ramz <nicolas.ramz@gmail.com> Nicolas Ramz <nicolas.ramz@gmail.com>
Oleksandr Andriienko <oandriie@redhat.com> Oleksandr Andriienko <oandriie@redhat.com>
Paris Kasidiaris <pariskasidiaris@gmail.com> Paris Kasidiaris <pariskasidiaris@gmail.com>
@ -54,7 +62,11 @@ Saswat Das <saswatds@users.noreply.github.com>
Saul Costa <saul@codevolve.com> Saul Costa <saul@codevolve.com>
Shuanglei Tao <tsl0922@gmail.com> Shuanglei Tao <tsl0922@gmail.com>
Steven Silvester <steven.silvester@ieee.org> Steven Silvester <steven.silvester@ieee.org>
stuicey <stuicey@users.noreply.github.com>
t-amqi <umberos@gmail.com>
Thanasis Daglis <thanasis@sourcelair.com> Thanasis Daglis <thanasis@sourcelair.com>
thomas <thomas@kreativkonzentrat.de>
Thomas Zilz <t.zilz@mofux.org>
Tine Jozelj <tine.jozelj@outlook.com> Tine Jozelj <tine.jozelj@outlook.com>
Tyler Jewell <tjewell@codenvy.com> Tyler Jewell <tjewell@codenvy.com>
Vincent Woo <me@vincentwoo.com> Vincent Woo <me@vincentwoo.com>

View File

@ -1,6 +1,6 @@
{ {
"name": "xterm.js", "name": "xterm.js",
"version": "2.8.1", "version": "2.9.0",
"ignore": ["demo", "test", ".gitignore"], "ignore": ["demo", "test", ".gitignore"],
"main": [ "main": [
"dist/xterm.js", "dist/xterm.js",

43
dist/xterm.css vendored
View File

@ -89,53 +89,40 @@
text-decoration: none; text-decoration: none;
} }
.terminal.focus:not(.xterm-cursor-style-underline):not(.xterm-cursor-style-bar) .terminal-cursor { .terminal .terminal-cursor {
background-color: #fff; position: relative;
color: #000;
} }
.terminal:not(.focus) .terminal-cursor { .terminal:not(.focus) .terminal-cursor {
outline: 1px solid #fff; outline: 1px solid #fff;
outline-offset: -1px; outline-offset: -1px;
background-color: transparent;
} }
.terminal:not(.xterm-cursor-style-underline):not(.xterm-cursor-style-bar).focus.xterm-cursor-blink-on .terminal-cursor { .terminal.xterm-cursor-style-block.focus:not(.xterm-cursor-blink-on) .terminal-cursor {
background-color: transparent; background-color: #fff;
color: inherit; color: #000;
} }
.terminal.xterm-cursor-style-bar .terminal-cursor, .terminal.focus.xterm-cursor-style-bar:not(.xterm-cursor-blink-on) .terminal-cursor::before,
.terminal.xterm-cursor-style-underline .terminal-cursor { .terminal.focus.xterm-cursor-style-underline:not(.xterm-cursor-blink-on) .terminal-cursor::before {
position: relative; content: '';
}
.terminal.xterm-cursor-style-bar .terminal-cursor::before,
.terminal.xterm-cursor-style-underline .terminal-cursor::before {
content: "";
display: block;
position: absolute; position: absolute;
background-color: #fff; background-color: #fff;
} }
.terminal.xterm-cursor-style-bar .terminal-cursor::before {
.terminal.focus.xterm-cursor-style-bar:not(.xterm-cursor-blink-on) .terminal-cursor::before {
top: 0; top: 0;
bottom: 0;
left: 0; left: 0;
bottom: 0;
width: 1px; width: 1px;
} }
.terminal.xterm-cursor-style-underline .terminal-cursor::before {
.terminal.focus.xterm-cursor-style-underline:not(.xterm-cursor-blink-on) .terminal-cursor::before {
bottom: 0; bottom: 0;
left: 0; left: 0;
right: 0; right: 0;
height: 1px; height: 1px;
} }
.terminal.xterm-cursor-style-bar.focus.xterm-cursor-blink.xterm-cursor-blink-on .terminal-cursor::before,
.terminal.xterm-cursor-style-underline.focus.xterm-cursor-blink.xterm-cursor-blink-on .terminal-cursor::before {
background-color: transparent;
}
.terminal.xterm-cursor-style-bar.focus.xterm-cursor-blink .terminal-cursor::before,
.terminal.xterm-cursor-style-underline.focus.xterm-cursor-blink .terminal-cursor::before {
background-color: #fff;
}
.terminal .composition-view { .terminal .composition-view {
background: #000; background: #000;
@ -217,6 +204,10 @@
text-decoration: blink; text-decoration: blink;
} }
.terminal .xterm-blink.xterm-underline {
text-decoration: blink underline;
}
.terminal .xterm-hidden { .terminal .xterm-hidden {
visibility: hidden; visibility: hidden;
} }

1124
dist/xterm.js vendored

File diff suppressed because it is too large Load Diff

2
dist/xterm.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{ {
"name": "xterm", "name": "xterm",
"description": "Full xterm terminal, in your browser", "description": "Full xterm terminal, in your browser",
"version": "2.8.1", "version": "2.9.0",
"ignore": [ "ignore": [
"demo", "demo",
"test", "test",