Skip to content

Commit

Permalink
version 2.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Jul 5, 2021
1 parent 3f279b1 commit 56d8c31
Show file tree
Hide file tree
Showing 19 changed files with 113 additions and 324 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=2.26.0
VERSION=2.27.0
SED=sed
CD=cd
NPM=npm
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
__ / / // / // / _ / _/ // / / / _ / _/ / / \/ / _ \/ /
/ / / // / // / ___/ // // / / / ___/ // / / / / /\ / // / /__
\___/____ \\__/____/_/ \__ / /_/____/_//_/_/_/_/_/ \/\__\_\___/
\/ /____/ version DEV
\/ /____/ version 2.27.0
```

[JavaScript Library for Web Based Terminal Emulators](https://terminal.jcubic.pl)

[![npm](https://img.shields.io/badge/npm-DEV-blue.svg)](https://www.npmjs.com/package/jquery.terminal)
![bower](https://img.shields.io/badge/bower-DEV-yellow.svg)
[![travis](https://travis-ci.org/jcubic/jquery.terminal.svg?branch=devel&a65b86a47b0f5d73c0e3e122539f9a57d23f80c9)](https://travis-ci.org/jcubic/jquery.terminal)
[![Coverage Status](https://coveralls.io/repos/github/jcubic/jquery.terminal/badge.svg?branch=devel&729bf3f8836eb2ffb6d7b6c8956debc8)](https://coveralls.io/github/jcubic/jquery.terminal?branch=devel)
[![npm](https://img.shields.io/badge/npm-2.27.0-blue.svg)](https://www.npmjs.com/package/jquery.terminal)
![bower](https://img.shields.io/badge/bower-2.27.0-yellow.svg)
[![travis](https://travis-ci.org/jcubic/jquery.terminal.svg?branch=master&3f279b1272b6e662ac0d2a9824062f174559a168)](https://travis-ci.org/jcubic/jquery.terminal)
[![Coverage Status](https://coveralls.io/repos/github/jcubic/jquery.terminal/badge.svg?branch=master&729bf3f8836eb2ffb6d7b6c8956debc8)](https://coveralls.io/github/jcubic/jquery.terminal?branch=master)
![downloads](https://img.shields.io/npm/dm/jquery.terminal.svg?style=flat)
[![](https://data.jsdelivr.com/v1/package/npm/jquery.terminal/badge?style=rounded)](https://www.jsdelivr.com/package/npm/jquery.terminal)
[![LICENSE MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jcubic/jquery.terminal/blob/master/LICENSE)
Expand Down Expand Up @@ -80,20 +80,20 @@ Include jQuery library, you can use cdn from https://jquery.com/download/

```

Then include js/jquery.terminal-DEV.min.js and css/jquery.terminal-DEV.min.css
Then include js/jquery.terminal-2.27.0.min.js and css/jquery.terminal-2.27.0.min.css

You can grab the files from CDN:

```html
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.terminal/DEV/js/jquery.terminal.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/jquery.terminal/DEV/css/jquery.terminal.min.css" rel="stylesheet"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.terminal/2.27.0/js/jquery.terminal.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/jquery.terminal/2.27.0/css/jquery.terminal.min.css" rel="stylesheet"/>
```

or

```html
<script src="https://cdn.jsdelivr.net/npm/jquery.terminal@DEV/js/jquery.terminal.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/jquery.terminal@DEV/css/jquery.terminal.min.css">
<script src="https://cdn.jsdelivr.net/npm/jquery.terminal@2.27.0/js/jquery.terminal.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/jquery.terminal@2.27.0/css/jquery.terminal.min.css">
```

If you always want latest version, you can get it from [unpkg](https://unpkg.com/) without specifying version,
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery.terminal",
"version": "2.26.0",
"version": "2.27.0",
"main": [
"js/jquery.terminal.min.js",
"js/jquery.mousewheel-min.js",
Expand Down
225 changes: 4 additions & 221 deletions css/emoji.css

Large diffs are not rendered by default.

17 changes: 0 additions & 17 deletions css/jquery.terminal-2.26.0.min.css

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
* __ / // // // // // _ // _// // / / // _ // _// // // \/ // _ \/ /
* / / // // // // // ___// / / // / / // ___// / / / / // // /\ // // / /__
* \___//____ \\___//____//_/ _\_ / /_//____//_/ /_/ /_//_//_/ /_/ \__\_\___/
* \/ /____/ version DEV
* \/ /____/ version 2.27.0
* http://terminal.jcubic.pl
*
* This file is part of jQuery Terminal.
*
* Copyright (c) 2011-2021 Jakub Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
*
* Date: Wed, 23 Jun 2021 16:09:19 +0000
* Date: Mon, 05 Jul 2021 22:23:42 +0000
*/

.terminal .terminal-output .format, .cmd .format,
Expand Down Expand Up @@ -266,7 +266,6 @@ body.full-screen-terminal .terminal {
display: inline-block;
width: 2ch;
}

.terminal, .cmd {
box-sizing: border-box;
}
Expand All @@ -281,6 +280,10 @@ body.full-screen-terminal .terminal {
.cmd .cmd-cursor * {
background-color: transparent;
}
.terminal span[style*="width"] span,
.cmd span[style*="width"] span {
width: inherit;
}
.cmd div {
clear: both;
}
Expand Down
17 changes: 17 additions & 0 deletions css/jquery.terminal-2.27.0.min.css

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions css/jquery.terminal.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
* __ / // // // // // _ // _// // / / // _ // _// // // \/ // _ \/ /
* / / // // // // // ___// / / // / / // ___// / / / / // // /\ // // / /__
* \___//____ \\___//____//_/ _\_ / /_//____//_/ /_/ /_//_//_/ /_/ \__\_\___/
* \/ /____/ version DEV
* \/ /____/ version 2.27.0
* http://terminal.jcubic.pl
*
* This file is part of jQuery Terminal.
*
* Copyright (c) 2011-2021 Jakub Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
*
* Date: Wed, 23 Jun 2021 16:09:19 +0000
* Date: Mon, 05 Jul 2021 22:23:42 +0000
*/

.terminal .terminal-output .format, .cmd .format,
Expand Down Expand Up @@ -266,7 +266,6 @@ body.full-screen-terminal .terminal {
display: inline-block;
width: 2ch;
}

.terminal, .cmd {
box-sizing: border-box;
}
Expand All @@ -281,6 +280,10 @@ body.full-screen-terminal .terminal {
.cmd .cmd-cursor * {
background-color: transparent;
}
.terminal span[style*="width"] span,
.cmd span[style*="width"] span {
width: inherit;
}
.cmd div {
clear: both;
}
Expand Down
6 changes: 3 additions & 3 deletions css/jquery.terminal.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/jquery.terminal.min.css.map

Large diffs are not rendered by default.

47 changes: 0 additions & 47 deletions js/jquery.terminal-2.26.0.min.js

This file was deleted.

8 changes: 4 additions & 4 deletions js/jquery.terminal-2.26.0.js → js/jquery.terminal-2.27.0.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* __ / // // // // // _ // _// // / / // _ // _// // // \/ // _ \/ /
* / / // // // // // ___// / / // / / // ___// / / / / // // /\ // // / /__
* \___//____ \\___//____//_/ _\_ / /_//____//_/ /_/ /_//_//_/ /_/ \__\_\___/
* \/ /____/ version DEV
* \/ /____/ version 2.27.0
*
* This file is part of jQuery Terminal. https://terminal.jcubic.pl
*
Expand Down Expand Up @@ -41,7 +41,7 @@
*
* broken image by Sophia Bai from the Noun Project (CC-BY)
*
* Date: Mon, 05 Jul 2021 18:14:00 +0000
* Date: Mon, 05 Jul 2021 22:23:42 +0000
*/
/* global define, Map */
/* eslint-disable */
Expand Down Expand Up @@ -4789,8 +4789,8 @@
}
// -------------------------------------------------------------------------
$.terminal = {
version: 'DEV',
date: 'Mon, 05 Jul 2021 18:14:00 +0000',
version: '2.27.0',
date: 'Mon, 05 Jul 2021 22:23:42 +0000',
// colors from https://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down
47 changes: 47 additions & 0 deletions js/jquery.terminal-2.27.0.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions js/jquery.terminal.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* __ / // // // // // _ // _// // / / // _ // _// // // \/ // _ \/ /
* / / // // // // // ___// / / // / / // ___// / / / / // // /\ // // / /__
* \___//____ \\___//____//_/ _\_ / /_//____//_/ /_/ /_//_//_/ /_/ \__\_\___/
* \/ /____/ version DEV
* \/ /____/ version 2.27.0
*
* This file is part of jQuery Terminal. https://terminal.jcubic.pl
*
Expand Down Expand Up @@ -41,7 +41,7 @@
*
* broken image by Sophia Bai from the Noun Project (CC-BY)
*
* Date: Mon, 05 Jul 2021 18:14:00 +0000
* Date: Mon, 05 Jul 2021 22:23:42 +0000
*/
/* global define, Map */
/* eslint-disable */
Expand Down Expand Up @@ -4789,8 +4789,8 @@
}
// -------------------------------------------------------------------------
$.terminal = {
version: 'DEV',
date: 'Mon, 05 Jul 2021 18:14:00 +0000',
version: '2.27.0',
date: 'Mon, 05 Jul 2021 22:23:42 +0000',
// colors from https://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down
6 changes: 3 additions & 3 deletions js/jquery.terminal.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/jquery.terminal.min.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions js/terminal.widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* __ / // // // // // _ // _// // / / // _ // _// // // \/ // _ \/ /
* / / // // // // // ___// / / // / / // ___// / / / / // // /\ // // / /__
* \___//____ \\___//____//_/ _\_ / /_//____//_/ /_/ /_//_//_/ /_/ \__\_\___/
* \/ /____/ version 2.26.0
* \/ /____/ version 2.27.0
*
* This file is part of jQuery Terminal. https://terminal.jcubic.pl
*
Expand Down Expand Up @@ -39,8 +39,8 @@
if (typeof jQuery === 'undefined') {
get('http://code.jquery.com/jquery-3.5.0.min.js').then(function() {
jQuery.noConflict();
get('https://cdnjs.cloudflare.com/ajax/libs/jquery.terminal/2.26.0/css/jquery.terminal.min.css');
return get('https://cdnjs.cloudflare.com/ajax/libs/jquery.terminal/2.26.0/js/jquery.terminal.min.js');
get('https://cdnjs.cloudflare.com/ajax/libs/jquery.terminal/2.27.0/css/jquery.terminal.min.css');
return get('https://cdnjs.cloudflare.com/ajax/libs/jquery.terminal/2.27.0/js/jquery.terminal.min.js');
}).then(function() {
terminals.forEach(function(spec) {
jQuery.fn.terminal.apply(jQuery(spec[0]), spec.slice(1));
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery.terminal",
"version": "2.26.0",
"version": "2.27.0",
"description": "jQuery Terminal Emulator is a plugin for creating command line interpreters in your applications.",
"main": "js/jquery.terminal.js",
"typings": "js/jquery.terminal.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion terminal.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "terminal",
"title": "jQuery Terminal Emulator",
"description": "jQuery Terminal Emulator is a plugin for creating command line interpreters in your applications.",
"version": "2.26.0",
"version": "2.27.0",
"keywords": [
"terminal", "emulator", "prompt", "console", "keyboard", "type", "rpc", "input", "ui"
],
Expand Down

0 comments on commit 56d8c31

Please sign in to comment.