Skip to content

Commit 07dd9a9

Browse files
Merge pull request #346 from dynamsoft-docs/preview
update to internal commit 6f1ef10d
2 parents 7a11eab + 3c8d85e commit 07dd9a9

File tree

8 files changed

+422
-17
lines changed

8 files changed

+422
-17
lines changed

_includes/sidelist-programming/programming-maui.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<li lang="maui"><a style="cursor:pointer;color:#3c3c3c">User Guide</a>
44
<ul lang="maui">
55
<li lang="maui"><a class="otherLinkColour" href="{{ site.dbr_maui }}user-guide.html" style="cursor:pointer;color:#3c3c3c">Getting Started</a>
6+
<li lang="maui" ><a href="{{ site.dbr_maui }}user-guide/configure-barcode-scanner.html" class="otherLinkColour">Configure Barcode Scanner</a>
67
</li>
78
</ul>
89
</li>
@@ -12,15 +13,15 @@
1213
<ul lang="maui">
1314
<li lang="maui"><a>Classes</a>
1415
<ul lang="maui">
15-
<li lang="maui"><a href="{{ site.dbr_maui_api }}barcode-scanner/barcode-scanner-activity.html" class="otherLinkColour">BarcodeScanner</a></li>
16+
<li lang="maui"><a href="{{ site.dbr_maui_api }}barcode-scanner/barcode-scanner.html" class="otherLinkColour">BarcodeScanner</a></li>
1617
<li lang="maui"><a href="{{ site.dbr_maui_api }}barcode-scanner/barcode-scanner-config.html" class="otherLinkColour">BarcodeScannerConfig</a></li>
1718
<li lang="maui"><a href="{{ site.dbr_maui_api }}barcode-scanner/barcode-scan-result.html" class="otherLinkColour">BarcodeScanResult</a></li>
1819
</ul>
1920
</li>
2021
<li lang="maui"><a class="otherLinkColour">Enumerations</a>
2122
<ul lang="maui">
22-
<li lang="maui"><a href="{{ site.dbr_maui_api }}barcode-scanner/result-status.html?lang=android" class="otherLinkColour">EnumResultStatus</a></li>
23-
<li lang="maui"><a href="{{ site.dbr_maui_api }}barcode-scanner/scanning-mode.html?lang=android" class="otherLinkColour">EnumScanningMode</a></li>
23+
<li lang="maui"><a href="{{ site.dbr_maui_api }}barcode-scanner/result-status.html" class="otherLinkColour">EnumResultStatus</a></li>
24+
<li lang="maui"><a href="{{ site.dbr_maui_api }}barcode-scanner/scanning-mode.html" class="otherLinkColour">EnumScanningMode</a></li>
2425
</ul>
2526
</li>
2627
</ul>

programming/android/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ If you are looking for a fully customizable barcode decoding library, you are we
7676

7777
## Release Notes
7878

79+
- [Version 11.x](release-notes/android-11.html)
7980
- [Version 10.x](release-notes/android-10.html)
8081
- [Version 9.x](release-notes/android-9.html)
8182
- [Version 8.x](release-notes/android-8.html)

programming/android/user-guide-v11.0.3000.md

Lines changed: 392 additions & 0 deletions
Large diffs are not rendered by default.

programming/android/user-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ There are two ways in which you can include the `dynamsoftbarcodereaderbundle` l
7575
>1.
7676
```groovy
7777
dependencies {
78-
implementation 'com.dynamsoft:barcodereaderbundle:11.0.3000'
78+
implementation 'com.dynamsoft:barcodereaderbundle:11.0.3100'
7979
}
8080
```
8181
2.
8282
```kotlin
8383
dependencies {
84-
implementation("com.dynamsoft:barcodereaderbundle:11.0.3000")
84+
implementation("com.dynamsoft:barcodereaderbundle:11.0.3100")
8585
}
8686
```
8787

programming/maui/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Leveraging the efficiency and flexibility of the C# language, DBR MAUI Edition p
1515

1616
As one of the functional products of the Dynamsoft Capture Vision (DCV) framework, DBR is also designed to seamlessly integrate with other DCV components and provide developers with a comprehensive set of image processing tools, which cover image capturing, content understanding, result parsing, and interactive workflow. If you are building such a capturing and processing solution, take a look at [Introduction to Dynamsoft Capture Vision]({{site.dcvb_architecture}}).
1717

18-
Furthermore, DBR provides a powerful parameter system in order to cope with various scenarios. Read <a href="{{site.parameters_reference}}index.html">Parameter Reference</a> for details.
18+
Furthermore, DBR provides a powerful parameter system in order to cope with various scenarios. Read <a href="{{ site.dcvb_parameters }}file/index.html">Parameter Reference</a> for details.
1919

2020
## Using the SDK
2121

@@ -52,6 +52,7 @@ While the guide covers common APIs, more detailed explanations of these and othe
5252

5353
## Release Notes
5454

55+
* [Version 11.x](release-notes/maui-11.html)
5556
* [Version 10.x](release-notes/maui-10.html)
5657

5758
## License Subscription

programming/maui/samples/index.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ noTitleIndex: true
1212
- [Demo and Samples](#demo-and-samples)
1313
- [Demos](#demos)
1414
- [Barcode Decoding Samples](#barcode-decoding-samples)
15-
- [BarcodeReaderSimpleSample](#barcodereadersimplesample)
15+
- [ScanBarcodes_FoundationalAPI](#scanbarcodes_foundationalapi)
16+
- [ScanBarcodes_ReadyToUseComponent](#scanbarcodes_readytousecomponent)
17+
- [ScanBarcodes_WithCameraEnhancer](#scanbarcodes_withcameraenhancer)
1618

1719
## Demos
1820

@@ -23,8 +25,21 @@ noTitleIndex: true
2325

2426
## Barcode Decoding Samples
2527

26-
### BarcodeReaderSimpleSample
28+
### ScanBarcodes_FoundationalAPI
2729

28-
Decode barcodes from video streaming. It shows the simplest code to implement a video barcode scanner.
30+
This is a sample that illustrates the simplest way to recognize barcodes from video streaming using foundational APIs.
2931

30-
[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-maui-samples/tree/main/BarcodeReaderSimpleSample){:target="_blank"}
32+
[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-maui-samples/tree/main/ScanBarcodes_FoundationalAPI){:target="_blank"}
33+
34+
### ScanBarcodes_ReadyToUseComponent
35+
36+
This is a sample that illustrates the simplest way to recognize barcodes from video streaming using BarcodeScanner Component.
37+
38+
[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-maui-samples/tree/main/ScanBarcodes_ReadyToUseComponent){:target="_blank"}
39+
40+
### ScanDriverLicense
41+
42+
43+
This sample demonstrates the simplest approach to recognizing a PDF417 barcode from video streaming and extracting structured data from its encoded data.
44+
45+
[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-maui-samples/tree/main/ScanDriversLicense){:target="_blank"}

programming/maui/upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pageStartVer: 10.0
1717

1818
#### Visual Studio for Mac
1919

20-
In the **NuGet Package Manager>Manage Packages for Solution** of your project, search for **Dynamsoft.CaptureVisionBundle.Maui**. Select the latest version and click **install**.
20+
In the **NuGet Package Manager>Manage Packages for Solution** of your project, search for **Dynamsoft.BarcodeReaderBundle.Maui**. Select the latest version and click **install**.
2121

2222
#### Visual Studio for Windows
2323

programming/maui/user-guide.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ noTitleIndex: true
6060

6161
### Visual Studio for Mac
6262

63-
In the **NuGet Package Manager>Manage Packages for Solution** of your project, search for **Dynamsoft.CaptureVisionBundle.Maui**. Select Version **11.0.3100** and click **install**.
63+
In the **NuGet Package Manager>Manage Packages for Solution** of your project, search for **Dynamsoft.BarcodeReaderBundle.Maui**. Select Version **11.0.3100** and click **install**.
6464

6565
### Visual Studio for Windows
6666

@@ -207,11 +207,6 @@ Select your device and run the project.
207207
208208
![Exclude iOS and Windows from targets](../assets/maui-exclude.png)
209209

210-
## Customizing the Barcode Reader
211-
212-
```csharp
213-
```
214-
215210
## Licensing
216211

217212
- A one-day trial license is available by default for every new device to try Dynamsoft Barcode Reader SDK.

0 commit comments

Comments
 (0)