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

Commit b446913

Browse files
author
Francois-Xavier Gentilhomme
committed
v1.0.5 Text recognition improvements
1 parent 1eec5f4 commit b446913

File tree

237 files changed

+2726
-1635
lines changed

Some content is hidden

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

237 files changed

+2726
-1635
lines changed

.editorconfig

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# This will be used as default EditorConfig for repos that don't have their own.
2+
# It's saved automatically as you type.
3+
# You can find docs at http://editorconfig.org
4+
5+
[*]
6+
charset = utf-8
7+
tab_width = 4
8+
end_of_line = lf
9+
10+
[{*.js}]
11+
indent_style = space
12+
indent_size = 4
13+
14+
[*.json]
15+
indent_style = space
16+
indent_size = 4
17+
18+
[{.bowerrc, .jshint}]
19+
indent_style = space
20+
indent_size = 4

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MyScriptJS
22

3-
[MyScriptJS](http://myscript.github.io/MyScriptJS/) is a free and open-source JavaScript library providing an easy way to use [MyScript Cloud]( https://dev.myscript.com/dev-kits/cloud-development-kit/) handwriting recognition in your app.
3+
[MyScriptJS](http://myscript.github.io/MyScriptJS/) is a free and open-source JavaScript library providing an easy way to use [MyScript Cloud](https://dev.myscript.com/) handwriting recognition in your app.
44

55
[![Build Status](https://travis-ci.org/MyScript/MyScriptJS.svg?branch=master)](https://travis-ci.org/MyScript/MyScriptJS)
66
[![GitHub version](https://badge.fury.io/gh/MyScript%2FMyScriptJS.svg)](http://badge.fury.io/gh/MyScript%2FMyScriptJS)
@@ -30,9 +30,9 @@ Learn more on MyScriptJS in the [Developer Guide](http://myscript.github.io/MySc
3030

3131
## Start using MyScriptJS
3232

33-
MyScriptJS requires a valid [MyScript Cloud account]( https://dev.myscript.com/dev-kits/cloud-development-kit/) for handwriting recognition.
33+
MyScriptJS requires a valid [MyScript Cloud account](https://dev.myscript.com/) for handwriting recognition.
3434

35-
Check our [Getting Started](http://myscript.github.io/MyScriptJS/developer-guide/html/main/getting-started.html) tutorial to start building your first app.
35+
Check our [Getting Started](https://github.com/MyScript/MyScriptJS/tree/master/resources/samples#getting-started) tutorial to start building your first app.
3636

3737
You are free to use MyScriptJS in any of your personal or commercial project, as permitted by the [Apache 2.0](LICENSE.txt) License.
3838

bower.json

+39-39
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
{
2-
"name": "myscript",
3-
"version": "1.0.4",
4-
"main": "./dist/myscript.js",
5-
"description": "MyScriptJS is a free and open-source JavaScript library providing the easiest way to use MyScript Cloud handwriting recognition in your web app",
6-
"keywords": [
7-
"myscript",
8-
"javascript",
9-
"developer",
10-
"handwriting",
11-
"recognition",
12-
"cloud"
13-
],
14-
"license": "Apache-2.0",
15-
"homepage": "http://myscript.github.io/MyScriptJS/",
16-
"repository": {
17-
"type": "git",
18-
"url": "git://github.com/MyScript/MyScriptJS.git"
19-
},
20-
"ignore": [
21-
"**/.*",
22-
"node_modules",
23-
"bower_components",
24-
"test",
25-
"docs",
26-
"samples",
27-
"docker",
28-
"Makefile",
29-
"Gruntfile.js",
30-
"build.json",
31-
"dist/docs",
32-
"dist/samples"
33-
],
34-
"devDependencies": {
35-
"yuidoc-bootstrap3-theme": "0.0.x"
36-
},
37-
"dependencies": {
38-
"cryptojslib": "3.1.x",
39-
"q": "1.2.x"
40-
}
2+
"name": "myscript",
3+
"version": "1.0.5",
4+
"main": "./dist/myscript.js",
5+
"description": "MyScriptJS is a free and open-source JavaScript library providing the easiest way to use MyScript Cloud handwriting recognition in your web app",
6+
"keywords": [
7+
"myscript",
8+
"javascript",
9+
"developer",
10+
"handwriting",
11+
"recognition",
12+
"cloud"
13+
],
14+
"license": "Apache-2.0",
15+
"homepage": "http://myscript.github.io/MyScriptJS/",
16+
"repository": {
17+
"type": "git",
18+
"url": "git://github.com/MyScript/MyScriptJS.git"
19+
},
20+
"ignore": [
21+
"**/.*",
22+
"node_modules",
23+
"bower_components",
24+
"test",
25+
"docs",
26+
"samples",
27+
"docker",
28+
"Makefile",
29+
"Gruntfile.js",
30+
"build.json",
31+
"dist/docs",
32+
"dist/samples"
33+
],
34+
"devDependencies": {
35+
"yuidoc-bootstrap3-theme": "0.0.x"
36+
},
37+
"dependencies": {
38+
"cryptojslib": "3.1.x",
39+
"q": "1.2.x"
40+
}
4141
}

build.json

+9-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
"src/common/abstractWSMessage.js",
99
"src/input/generic/components/abstractComponent.js",
1010
"src/input/generic/components/stroke.js",
11+
"src/input/generic/components/characterInputComponent.js",
12+
"src/input/generic/components/characterInputComponentAlternate.js",
1113
"src/input/generic/abstractParameter.js",
1214
"src/input/generic/abstractRecognitionInput.js",
1315
"src/input/generic/abstractRecognitionData.js",
@@ -18,8 +20,6 @@
1820
"src/input/generic/initRequestWSMessage.js",
1921
"src/input/generic/resetRequestWSMessage.js",
2022
"src/input/text/components/abstractTextInputComponent.js",
21-
"src/input/text/components/characterInputComponent.js",
22-
"src/input/text/components/characterInputComponentAlternate.js",
2323
"src/input/text/components/charInputComponent.js",
2424
"src/input/text/components/stringInputComponent.js",
2525
"src/input/text/textInputUnit.js",
@@ -67,11 +67,17 @@
6767
"src/output/generic/challengeResponseWSMessage.js",
6868
"src/output/generic/errorResponseWSMessage.js",
6969
"src/output/generic/initResponseWSMessage.js",
70+
"src/output/text/textInkRange.js",
7071
"src/output/text/textCandidate.js",
72+
"src/output/text/textCharCandidate.js",
73+
"src/output/text/textWordCandidate.js",
74+
"src/output/text/textResultCandidate.js",
7175
"src/output/text/textDocument.js",
7276
"src/output/text/textResult.js",
7377
"src/output/text/textSegment.js",
74-
"src/output/text/textSegmentResult.js",
78+
"src/output/text/textCharSegment.js",
79+
"src/output/text/textWordSegment.js",
80+
"src/output/text/textResultSegment.js",
7581
"src/output/text/textTagItem.js",
7682
"src/output/text/textResponseWSMessage.js",
7783
"src/output/shape/abstractShapePrimitive.js",

0 commit comments

Comments
 (0)