Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-tests-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ on:

# Global environment variables
env:
SDK_VERSION: '0.800.5'
SDK_VERSION: '0.810.7'

jobs:
test-x86_64:
Expand Down
2 changes: 1 addition & 1 deletion Libraries.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Open Source libraries used in the Scanbot Linux SDK version 8.0.0:
Open Source libraries used in the Scanbot Linux SDK version 8.1.0:

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

Expand Down
2 changes: 1 addition & 1 deletion examples/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Open `build.gradle` and replace the constant with the actual version number of the SDK you want to install.

```groovy
def SCANBOTSDK_VERSION = "<SCANBOTSDK_VERSION>" // ex: 0.800.3
def SCANBOTSDK_VERSION = "<SCANBOTSDK_VERSION>" // e.g., 8.1.0
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion examples/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

// TODO Add your SCANBOTSDK_VERSION here.
def SCANBOTSDK_VERSION = "8.0.0"
def SCANBOTSDK_VERSION = "0.810.7"

def arch = System.getProperty("os.arch")
def SCANBOTSDK_ARCHITECTURE = (arch.contains("arm") || arch.contains("aarch64")) ? "aarch64" : "x86_64"
Expand Down
52 changes: 26 additions & 26 deletions examples/nodejs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"typescript": "^5.9.2"
},
"dependencies": {
"scanbotsdk": "https://github.com/doo/scanbot-sdk-example-linux/releases/download/standalone-sdk%2Fv8.0.0/nodejs-scanbotsdk-8.0.0.tgz"
"scanbotsdk": "https://github.com/doo/scanbot-sdk-example-linux/releases/download/standalone-sdk%2Fv0.810.7/nodejs-scanbotsdk-0.810.7.tgz"
}
}
5 changes: 3 additions & 2 deletions examples/nodejs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"exactOptionalPropertyTypes": true,

"strict": true,
"jsx": "react-jsx",

"isolatedModules": true,
"noUncheckedSideEffectImports": true,
"moduleDetection": "force",
Expand All @@ -24,6 +24,7 @@
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,

"resolveJsonModule": true
"resolveJsonModule": true,
"types": ["node"]
}
}
2 changes: 1 addition & 1 deletion test-scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ test-scripts/

```bash
export SCANBOT_LICENSE="your-license-key-here"
export SDK_VERSION=0.800.5
export SDK_VERSION=0.810.7
```

### 2. Build Test Container
Expand Down
Loading