Skip to content

Commit 5d7abad

Browse files
update to v11.4.1000
1 parent f9a45cb commit 5d7abad

22 files changed

Lines changed: 50 additions & 40 deletions

CustomTemplates/ReadOneDIndustrial.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
},
7878
{
7979
"Mode": "DM_NEURAL_NETWORK",
80-
"ModelNameArray": [ "Code128Decoder", "OneDDeblur" ]
80+
"ModelNameArray": [ "Code128Decoder", "Code39ITFDecoder", "OneDDeblur" ]
8181
},
8282
{
8383
"Mode": "DM_DEEP_ANALYSIS"

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ License Notice
22

33
This folder contains code samples ("Sample Code") for use with Dynamsoft Barcode Reader, a commercial software development kit licensed by Dynamsoft. The Sample Code may be modified and included in your end user software under the terms of the Dynamsoft Software License Agreement https://www.dynamsoft.com/company/license-agreement/ ("Commercial License"). Except as expressly stated in the Commercial License, no other rights are granted in the Sample Code. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
44

5-
Copyright © 2003–2025 Dynamsoft. All rights reserved.
5+
Copyright © 2003–2026 Dynamsoft. All rights reserved.

Legal.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1768,4 +1768,14 @@ Apache License
17681768
distributed under the License is distributed on an "AS IS" BASIS,
17691769
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17701770
See the License for the specific language governing permissions and
1771-
limitations under the License.
1771+
limitations under the License.
1772+
1773+
1774+
====================================================================================
1775+
1776+
1777+
libzueci
1778+
1779+
A simple, standalone, BSD-3-Clause C library for converting UTF-8 to/from Extended Channel Interpretations, as defined by AIM ITS/04-023 International Technical Standard - Extended Channel Interpretations Part 3: Register (Version 2, February 2022).
1780+
1781+
====================================================================================

Samples/GeneralSettings/GeneralSettings.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Dynamsoft.DotNet.BarcodeReader.Bundle" Version="11.2.5000" />
15+
<PackageReference Include="Dynamsoft.DotNet.BarcodeReader.Bundle" Version="11.4.1000" />
1616
</ItemGroup>
1717

1818
</Project>

Samples/GeneralSettings/GeneralSettings_framework.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
<WarningLevel>4</WarningLevel>
3535
</PropertyGroup>
3636
<ItemGroup>
37-
<Reference Include="Dynamsoft.BarcodeReader, Version=11.2.50.6248, Culture=neutral, PublicKeyToken=ad0967c36e09320a, processorArchitecture=MSIL">
38-
<HintPath>packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.2.5000\lib\net3.5\Dynamsoft.BarcodeReader.dll</HintPath>
37+
<Reference Include="Dynamsoft.BarcodeReader, Version=11.4.10.7470, Culture=neutral, PublicKeyToken=ad0967c36e09320a, processorArchitecture=MSIL">
38+
<HintPath>packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.4.1000\lib\net3.5\Dynamsoft.BarcodeReader.dll</HintPath>
3939
</Reference>
4040
<Reference Include="System" />
4141
<Reference Include="System.Core" />
@@ -51,11 +51,11 @@
5151
<None Include="packages.config" />
5252
</ItemGroup>
5353
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
54-
<Import Project="packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.2.5000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets" Condition="Exists('packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.2.5000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets')" />
54+
<Import Project="packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.4.1000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets" Condition="Exists('packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.4.1000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets')" />
5555
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
5656
<PropertyGroup>
5757
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
5858
</PropertyGroup>
59-
<Error Condition="!Exists('packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.2.5000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.2.5000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets'))" />
59+
<Error Condition="!Exists('packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.4.1000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.4.1000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets'))" />
6060
</Target>
6161
</Project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Dynamsoft.DotNet.BarcodeReader.Bundle" version="11.2.5000" targetFramework="net35" />
3+
<package id="Dynamsoft.DotNet.BarcodeReader.Bundle" version="11.4.1000" targetFramework="net35" />
44
</packages>

Samples/HelloWorld/ReadAnImage/ReadAnImage.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Dynamsoft.DotNet.BarcodeReader.Bundle" Version="11.2.5000" />
15+
<PackageReference Include="Dynamsoft.DotNet.BarcodeReader.Bundle" Version="11.4.1000" />
1616
</ItemGroup>
1717

1818
</Project>

Samples/HelloWorld/ReadAnImage/ReadAnImage_framework.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
<WarningLevel>4</WarningLevel>
3535
</PropertyGroup>
3636
<ItemGroup>
37-
<Reference Include="Dynamsoft.BarcodeReader, Version=11.2.50.6248, Culture=neutral, PublicKeyToken=ad0967c36e09320a, processorArchitecture=MSIL">
38-
<HintPath>..\packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.2.5000\lib\net3.5\Dynamsoft.BarcodeReader.dll</HintPath>
37+
<Reference Include="Dynamsoft.BarcodeReader, Version=11.4.10.7470, Culture=neutral, PublicKeyToken=ad0967c36e09320a, processorArchitecture=MSIL">
38+
<HintPath>..\packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.4.1000\lib\net3.5\Dynamsoft.BarcodeReader.dll</HintPath>
3939
</Reference>
4040
<Reference Include="System" />
4141
<Reference Include="System.Core" />
@@ -51,11 +51,11 @@
5151
<None Include="packages.config" />
5252
</ItemGroup>
5353
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
54-
<Import Project="..\packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.2.5000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets" Condition="Exists('..\packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.2.5000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets')" />
54+
<Import Project="..\packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.4.1000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets" Condition="Exists('..\packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.4.1000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets')" />
5555
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
5656
<PropertyGroup>
5757
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
5858
</PropertyGroup>
59-
<Error Condition="!Exists('..\packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.2.5000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.2.5000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets'))" />
59+
<Error Condition="!Exists('..\packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.4.1000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Dynamsoft.DotNet.BarcodeReader.Bundle.11.4.1000\build\Dynamsoft.DotNet.BarcodeReader.Bundle.targets'))" />
6060
</Target>
6161
</Project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Dynamsoft.DotNet.BarcodeReader.Bundle" version="11.2.5000" targetFramework="net35" />
3+
<package id="Dynamsoft.DotNet.BarcodeReader.Bundle" version="11.4.1000" targetFramework="net35" />
44
</packages>

Samples/HelloWorld/ReadMultipleImages/ReadMultipleImages.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Dynamsoft.DotNet.BarcodeReader.Bundle" Version="11.2.5000" />
15+
<PackageReference Include="Dynamsoft.DotNet.BarcodeReader.Bundle" Version="11.4.1000" />
1616
</ItemGroup>
1717

1818
</Project>

0 commit comments

Comments
 (0)