Skip to content

Commit

Permalink
fix B and C inversion in Codabar
Browse files Browse the repository at this point in the history
  • Loading branch information
barnhill committed Sep 21, 2023
1 parent f660096 commit 8e20be1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions BarcodeStandard/BarcodeStandard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.0.1</Version>
<Version>3.0.2</Version>
<PackageId>BarcodeLib</PackageId>
<Company>Pnuema Productions</Company>
<Product>BarcodeLib</Product>
Expand All @@ -18,8 +18,8 @@
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>upca.jpg</PackageIcon>
<PackageIconUrl />
<AssemblyVersion>3.0.1.0</AssemblyVersion>
<FileVersion>3.0.1.0</FileVersion>
<AssemblyVersion>3.0.2.0</AssemblyVersion>
<FileVersion>3.0.2.0</FileVersion>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<SignAssembly>true</SignAssembly>
Expand Down
4 changes: 2 additions & 2 deletions BarcodeStandard/Symbologies/Codabar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ private void init_Codabar()
Codabar_Code.Add('.', "1101101101");
Codabar_Code.Add('+', "1011011011");
Codabar_Code.Add('A', "1011001001");
Codabar_Code.Add('B', "1010010011");
Codabar_Code.Add('C', "1001001011");
Codabar_Code.Add('B', "1001001011");
Codabar_Code.Add('C', "1010010011");
Codabar_Code.Add('D', "1010011001");
Codabar_Code.Add('a', "1011001001");
Codabar_Code.Add('b', "1010010011");
Expand Down

0 comments on commit 8e20be1

Please sign in to comment.