Skip to content

Commit cb20e75

Browse files
committed
feature(edward) ace v1.4.6
1 parent f380f70 commit cb20e75

20 files changed

+40
-24
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
],
1919
"dependencies": {
2020
"loadremote": "~1.2.0",
21-
"ace-builds": "^1.4.5"
21+
"ace-builds": "^1.4.6"
2222
}
2323
}

modules/ace-builds/.bower.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
"url": "https://github.com/ajaxorg/ace-builds/issues"
1818
},
1919
"homepage": "https://github.com/ajaxorg/ace-builds",
20-
"version": "1.4.5",
21-
"_release": "1.4.5",
20+
"version": "1.4.6",
21+
"_release": "1.4.6",
2222
"_resolution": {
2323
"type": "version",
24-
"tag": "v1.4.5",
25-
"commit": "7489e42c81725cd58d969478ddf9b2e8fd6e8aef"
24+
"tag": "v1.4.6",
25+
"commit": "c36237047e22cc3350845bc3f5b55ec062953f42"
2626
},
2727
"_source": "https://github.com/ajaxorg/ace-builds.git",
28-
"_target": "^1.4.5",
28+
"_target": "^1.4.6",
2929
"_originalSource": "ace-builds",
3030
"_direct": true
3131
}

modules/ace-builds/ChangeLog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2019.09.08 Version 1.4.6
2+
* restore native behavior of ctrl-p on mac (jumptomatching command is moved to cmd-\)
3+
* improve snippet manager
4+
* fix backspace handling on mobile
5+
16
2019.06.17 Version 1.4.5
27
* improve scrolling and selection on mobile
38
* improve type definitions

modules/ace-builds/ace-modules.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ declare module 'ace-builds/src-noconflict/mode-wollok';
186186
declare module 'ace-builds/src-noconflict/mode-xml';
187187
declare module 'ace-builds/src-noconflict/mode-xquery';
188188
declare module 'ace-builds/src-noconflict/mode-yaml';
189+
declare module 'ace-builds/src-noconflict/mode-zeek';
189190
declare module 'ace-builds/src-noconflict/theme-ambiance';
190191
declare module 'ace-builds/src-noconflict/theme-chaos';
191192
declare module 'ace-builds/src-noconflict/theme-chrome';
@@ -388,4 +389,5 @@ declare module 'ace-builds/src-noconflict/snippets/wollok';
388389
declare module 'ace-builds/src-noconflict/snippets/xml';
389390
declare module 'ace-builds/src-noconflict/snippets/xquery';
390391
declare module 'ace-builds/src-noconflict/snippets/yaml';
392+
declare module 'ace-builds/src-noconflict/snippets/zeek';
391393
declare module 'ace-builds/webpack-resolver';

modules/ace-builds/ace.d.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -853,10 +853,14 @@ export namespace Ace {
853853
completers: Completer[];
854854
}
855855

856-
type CompleterCallback = (_, completions: Completion[]) => void;
856+
type CompleterCallback = (error: any, completions: Completion[]) => void;
857857

858858
interface Completer {
859-
getCompletions(editor: Editor, session: EditSession, position: Point, prefix, callback: CompleterCallback): void;
859+
getCompletions(editor: Editor,
860+
session: EditSession,
861+
position: Point,
862+
prefix: string,
863+
callback: CompleterCallback): void;
860864
}
861865
}
862866

modules/ace-builds/kitchen-sink.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<meta name="author" content="Fabian Jakobs">
99
<!--
1010
Ace
11-
version 1.4.5
11+
version 1.4.6
1212
commit
1313
-->
1414

@@ -20,7 +20,10 @@
2020
<link href="./doc/site/images/favicon.ico" rel="icon" type="image/x-icon">
2121
</head>
2222
<body>
23-
<div style="position:absolute;height:100%;width:260px">
23+
<div id="sidePanel" style="position:absolute;height:100%;">
24+
<div class="toggleButton">
25+
<div></div><div></div><div></div>
26+
</div>
2427
<a href="https://c9.io" title="Cloud9 IDE | Your code anywhere, anytime">
2528
<img id="c9-logo" src="demo/kitchen-sink/logo.png" style="width: 172px;margin: -9px 30px -12px 51px;">
2629
</a>

modules/ace-builds/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ace-builds",
33
"main": "./src-noconflict/ace.js",
44
"typings": "ace.d.ts",
5-
"version": "1.4.5",
5+
"version": "1.4.6",
66
"description": "Ace (Ajax.org Cloud9 Editor)",
77
"scripts": {
88
"test": "echo \"Error: no test specified\" && exit 1"

modules/ace-builds/src-min/ace.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/ace-builds/src-min/ext-emmet.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/ace-builds/src-min/ext-language_tools.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)