From 8a991ccbc8d4e0f0c26309cb0ef6aa6828d3b549 Mon Sep 17 00:00:00 2001 From: nightwing Date: Wed, 26 Jan 2022 18:02:59 +0400 Subject: [PATCH] release v1.4.14 --- ChangeLog.txt | 4 ++++ build | 2 +- lib/ace/config.js | 2 +- package.json | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 188bf67808b..2819a6014d0 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,7 @@ +2022.01.26 Version 1.4.14 +* update vim mode +* remove slow regex in beautify extension + 2021.09.30 Version 1.4.13 * added useStrictCSP global option to use in environments where dynamic style creation is disabled see demo/csp.html for an example of a page which loads external css files instead of generating styles with javascript diff --git a/build b/build index d979a82c619..6c0e60e5525 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit d979a82c6198802cfb6df5be236379d29f116b2d +Subproject commit 6c0e60e5525a6d6ff0e9e929848f7834809a4784 diff --git a/lib/ace/config.js b/lib/ace/config.js index 516908cedf0..976903f62bd 100644 --- a/lib/ace/config.js +++ b/lib/ace/config.js @@ -223,6 +223,6 @@ function deHyphenate(str) { return str.replace(/-(.)/g, function(m, m1) { return m1.toUpperCase(); }); } -exports.version = "1.4.13"; +exports.version = "1.4.14"; }); diff --git a/package.json b/package.json index 5d15f88a0ca..e674ab382e2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ace", "description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE", - "version": "1.4.13", + "version": "1.4.14", "homepage": "http://github.com/ajaxorg/ace", "engines": { "node": ">= 0.6.0"