Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Commit 45cae57

Browse files
author
Francois-Xavier Gentilhomme
committed
v1.0.11 Add columnar operations support
1 parent ebdb474 commit 45cae57

File tree

79 files changed

+751
-2355
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+751
-2355
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "myscript",
3-
"version": "1.0.10",
3+
"version": "1.0.11",
44
"main": "./dist/myscript.js",
55
"description": "The JavaScript library for the MyScript Cloud recognition service",
66
"keywords": [

build.json

Lines changed: 6 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -106,26 +106,12 @@
106106
"src/output/math/mathSymbolTreeResultElement.js",
107107
"src/output/math/mathTerminalNode.js",
108108
"src/output/math/mathTerminalNodeCandidate.js",
109-
"src/output/math/mathFenceRuleNode.js",
110-
"src/output/math/mathFractionRuleNode.js",
111-
"src/output/math/mathHorizontalPairRuleNode.js",
112-
"src/output/math/mathIdentityRuleNode.js",
113-
"src/output/math/mathLeftFenceRuleNode.js",
114-
"src/output/math/mathOverscriptRuleNode.js",
115-
"src/output/math/mathPreSuperscriptRuleNode.js",
116-
"src/output/math/mathSqrtRuleNode.js",
117-
"src/output/math/mathSubscriptRuleNode.js",
118-
"src/output/math/mathSubSuperscriptRuleNode.js",
119-
"src/output/math/mathSuperscriptRuleNode.js",
120-
"src/output/math/mathUnderOverscriptRuleNode.js",
121-
"src/output/math/mathUnderscriptRuleNode.js",
122-
"src/output/math/mathVerticalPairRuleNode.js",
123-
"src/output/math/mathExponentiableNonTerminalNode.js",
124-
"src/output/math/mathExpressionNonTerminalNode.js",
125-
"src/output/math/mathSqrtNonTerminalNode.js",
126-
"src/output/math/mathVectorNonTerminalNode.js",
127-
"src/output/math/mathSystemNonTerminalNode.js",
128-
"src/output/math/mathTermNonTerminalNode.js",
109+
"src/output/math/mathBorderData.js",
110+
"src/output/math/mathBorderNonTerminalNode.js",
111+
"src/output/math/mathCellData.js",
112+
"src/output/math/mathCellNonTerminalNode.js",
113+
"src/output/math/mathTableData.js",
114+
"src/output/math/mathTableRuleNode.js",
129115
"src/output/math/mathResponseWSMessage.js",
130116
"src/output/music/musicElement.js",
131117
"src/output/music/musicResultElement.js",

dist/myscript.js

Lines changed: 176 additions & 634 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/myscript.js.map

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

dist/myscript.min.js

Lines changed: 5 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/myscript.min.js.map

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "myscript",
3-
"version": "1.0.10",
3+
"version": "1.0.11",
44
"main": "./dist/myscript.js",
55
"description": "The JavaScript library for the MyScript Cloud recognition service",
66
"keywords": [

resources/samples/analyzer/getting-started/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h1>Analyzer - Getting started</h1>
2323
<!-- HandJS import -->
2424
<script type="text/javascript" src="../../lib/hand.minified-1.3.8.js"></script>
2525
<!-- MyScriptJS import -->
26-
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/myscript/1.0.10/myscript.min.js"></script>
26+
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/myscript/1.0.11/myscript.min.js"></script>
2727
<script>
2828
(function () {
2929
var canvas = document.getElementById("canvas");

resources/samples/analyzer/rest/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h1>Analyzer - REST sample</h1>
2828
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/components/hmac-min.js"></script>
2929
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/q.js/1.2.1/q.js"></script>
3030
<script type="text/javascript" src="../../lib/hand.minified-1.3.8.js"></script>
31-
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/myscript/1.0.10/myscript.min.js"></script>
31+
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/myscript/1.0.11/myscript.min.js"></script>
3232
<script>
3333
(function () {
3434
var canvas = document.getElementById("canvas");

resources/samples/math/getting-started/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h1>Math - Getting started</h1>
2323
<!-- HandJS import -->
2424
<script type="text/javascript" src="../../lib/hand.minified-1.3.8.js"></script>
2525
<!-- MyScriptJS import -->
26-
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/myscript/1.0.10/myscript.min.js"></script>
26+
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/myscript/1.0.11/myscript.min.js"></script>
2727
<script>
2828
(function () {
2929
var result = document.getElementById("result");

0 commit comments

Comments
 (0)