Skip to content

Commit 4f7532b

Browse files
[EPIC-5677] v7.0.0-rc.1
* Initial commit for Scanbot SDK v7.0.0 with Capacitor v7 * Add code snippets * Update Libraries.txt and remove unused snippets * Added codeSnippets * Remove unnecessary null check for result data when the status is OK * Typo fixes, code style improvements, and an OCR data bundle have been added for iOS * v7.0.0-rc.1 --------- Co-authored-by: StefanKScanbot <[email protected]>
1 parent 29303ed commit 4f7532b

File tree

218 files changed

+12576
-16332
lines changed

Some content is hidden

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

218 files changed

+12576
-16332
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ root = true
44
[*]
55
charset = utf-8
66
indent_style = space
7-
indent_size = 4
7+
indent_size = 2
88
insert_final_newline = true
99
trim_trailing_whitespace = true
1010

.eslintrc.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ yarn-error.log
5656
# Miscellaneous
5757
/.angular
5858
/.angular/cache
59-
/.nx/cache
6059
.sass-cache/
60+
/.nx
61+
/.nx/cache
6162
/connect.lock
6263
/coverage
6364
/libpeerconnection.log

.images/ScanbotSDKLogo.png

50.8 KB
Loading

.images/ScanbotSDKLogo_darkmode.png

52.9 KB
Loading

.images/auto-capture.png

1.19 MB
Loading

.images/auto-crop.png

1.1 MB
Loading

.images/check-scanner.png

633 KB
Loading

.images/mrz-scanner.png

1.77 MB
Loading

.images/multi-scanning.png

1.29 MB
Loading

.images/user-guidance.png

1.21 MB
Loading

.images/vin-scanner.png

809 KB
Loading

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist/
2+
node_modules/

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"semi": true,
3+
"singleQuote": true,
4+
"printWidth": 100,
5+
"tabWidth": 2,
6+
"trailingComma": "all"
7+
}

.vscode/extensions.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
{
2-
"recommendations": ["ionic.ionic", "rohit-gohri.format-code-action"]
2+
"recommendations": [
3+
"ionic.ionic"
4+
]
35
}

.vscode/settings.json

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,3 @@
11
{
2-
"editor.formatOnSave": false,
3-
"editor.codeActionsOnSave": [
4-
"source.formatDocument",
5-
"source.fixAll.eslint"
6-
],
7-
"eslint.workingDirectories": [{ "mode": "auto" }],
8-
"eslint.validate": ["javascript", "typescript"],
9-
"commandOnAllFiles.commands": {
10-
"Re-Indent All Files": {
11-
"command": "editor.action.reindentlines",
12-
"includeFileExtensions": [".ts", ".js"]
13-
},
14-
"Re-Format All Files": {
15-
"command": "editor.action.formatDocument",
16-
"includeFileExtensions": [".ts", ".js"]
17-
}
18-
},
19-
"commandOnAllFiles.excludeFolders": [
20-
"android",
21-
"./android",
22-
"ios",
23-
"./ios",
24-
"node_modules",
25-
"./node_modules",
26-
"www",
27-
"./www"
28-
]
2+
"typescript.preferences.autoImportFileExcludePatterns": ["@ionic/angular/common", "@ionic/angular"]
293
}

0 commit comments

Comments
 (0)