Skip to content

Commit

Permalink
fix update & formatters #543 (use default formatters option in proces…
Browse files Browse the repository at this point in the history
…s_line)
  • Loading branch information
jcubic committed Nov 24, 2019
1 parent 42e3310 commit fafd12a
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -23,6 +23,7 @@
* fix multiple issues with less plugin
* few fixes to pipe
* fix echo array after refresh [#540](https://github.com/jcubic/jquery.terminal/issues/540)
* fix apply formatters in update [#543](https://github.com/jcubic/jquery.terminal/issues/543)

## 2.8.0
### Feature
Expand Down
5 changes: 3 additions & 2 deletions js/jquery.terminal-2.8.0.js
Expand Up @@ -41,7 +41,7 @@
*
* broken image by Sophia Bai from the Noun Project (CC-BY)
*
* Date: Sun, 24 Nov 2019 12:32:35 +0000
* Date: Sun, 24 Nov 2019 12:39:29 +0000
*/
/* global location, setTimeout, window, global, sprintf, setImmediate,
IntersectionObserver, ResizeObserver, module, require, define,
Expand Down Expand Up @@ -4062,7 +4062,7 @@
// -------------------------------------------------------------------------
$.terminal = {
version: 'DEV',
date: 'Sun, 24 Nov 2019 12:32:35 +0000',
date: 'Sun, 24 Nov 2019 12:39:29 +0000',
// colors from https://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -6602,6 +6602,7 @@
raw: false,
finalize: $.noop,
invokeMethods: false,
formatters: true,
convertLinks: settings.convertLinks
}, line.options || {});
var string;
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal-2.8.0.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/jquery.terminal-src.js
Expand Up @@ -6602,6 +6602,7 @@
raw: false,
finalize: $.noop,
invokeMethods: false,
formatters: true,
convertLinks: settings.convertLinks
}, line.options || {});
var string;
Expand Down
5 changes: 3 additions & 2 deletions js/jquery.terminal.js
Expand Up @@ -41,7 +41,7 @@
*
* broken image by Sophia Bai from the Noun Project (CC-BY)
*
* Date: Sun, 24 Nov 2019 12:32:35 +0000
* Date: Sun, 24 Nov 2019 12:39:29 +0000
*/
/* global location, setTimeout, window, global, sprintf, setImmediate,
IntersectionObserver, ResizeObserver, module, require, define,
Expand Down Expand Up @@ -4062,7 +4062,7 @@
// -------------------------------------------------------------------------
$.terminal = {
version: 'DEV',
date: 'Sun, 24 Nov 2019 12:32:35 +0000',
date: 'Sun, 24 Nov 2019 12:39:29 +0000',
// colors from https://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down Expand Up @@ -6602,6 +6602,7 @@
raw: false,
finalize: $.noop,
invokeMethods: false,
formatters: true,
convertLinks: settings.convertLinks
}, line.options || {});
var string;
Expand Down
4 changes: 2 additions & 2 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.

0 comments on commit fafd12a

Please sign in to comment.