Skip to content

Commit

Permalink
Release 7.0.0 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
aldrichanyline authored Jun 13, 2024
1 parent 991c2e9 commit 34fef79
Show file tree
Hide file tree
Showing 7 changed files with 91 additions and 10 deletions.
7 changes: 3 additions & 4 deletions MAUI/Anyline.Examples.MAUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<ApplicationIdGuid>9C37433F-9192-4C96-B49A-B9A7E047FBC2</ApplicationIdGuid>

<!-- Versions -->
<ApplicationDisplayVersion>6.1.0</ApplicationDisplayVersion>
<ApplicationDisplayVersion>7.0.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>

<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">12.0</SupportedOSPlatformVersion>
Expand Down Expand Up @@ -79,9 +79,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Anyline.SDK.NET.Android" Version="7.0.0" />
<PackageReference Include="Anyline.SDK.NET.iOS" Version="7.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Anyline.SDK.NET.iOS" Version="6.1.0" />
<PackageReference Include="Anyline.SDK.NET.Android" Version="6.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down Expand Up @@ -122,4 +122,3 @@
<Folder Include="Platforms\iOS\NFC\" />
</ItemGroup>
</Project>

1 change: 1 addition & 0 deletions MAUI/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public MainPage()
NavigationPage.SetBackButtonTitle(this, "Home");

// (this license key should be, ideally, securely fetched from your back-end server, a secret manager/provider, or obfuscated in the final app)
string licenseKey = "";

string licenseErrorMessage = null;

Expand Down
13 changes: 13 additions & 0 deletions MAUI/Resources/Raw/Configs/tire_size_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,19 @@
"beepOnResult": false,
"vibrateOnResult": true,
"blinkAnimationOnResult": true
},
"uiFeedbackConfig": {
"presets": [
{
"presetName": "simple_instruction_label",
"presetAttributes": [
{
"attributeName": "instruction_text",
"attributeValue": "Look for a standardized number sequence, like 205/55 R16"
}
]
}
]
}
}
}
10 changes: 9 additions & 1 deletion MAUI/Resources/Raw/Configs/tire_tin_dot_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,16 @@
"uiFeedbackConfig": {
"presets": [
{
"presetName": "tin_custom_v1",
"presetName": "tin_with_instruction_overlay_image_text_sound_feedback",
"presetAttributes": [
{
"attributeName": "instruction_text",
"attributeValue": "Please make sure the entire DOT number is inside the cutout."
},
{
"attributeName": "left_overlay_image",
"attributeValue": "dot_overlay"
},
{
"attributeName": "lighting_toodark_image",
"attributeValue": "uifeedback_tin_toodark"
Expand Down
10 changes: 9 additions & 1 deletion MAUI/Resources/Raw/Configs/tire_tin_universal_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,16 @@
"uiFeedbackConfig": {
"presets": [
{
"presetName": "tin_custom_v1",
"presetName": "tin_with_instruction_overlay_image_text_sound_feedback",
"presetAttributes": [
{
"attributeName": "instruction_text",
"attributeValue": "Please make sure the entire TIN number is inside the cutout."
},
{
"attributeName": "left_overlay_image",
"attributeValue": ""
},
{
"attributeName": "lighting_toodark_image",
"attributeValue": "uifeedback_tin_toodark"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,20 @@
"beepOnResult": false,
"vibrateOnResult": true,
"blinkAnimationOnResult": false
}
},
"uiFeedbackConfig": {
"presets": [
{
"presetName": "simple_instruction_label",
"presetAttributes": [
{
"attributeName": "instruction_text",
"attributeValue": "Position the VIN within the cutout. The barcode can be anywhere inside the camera frame."
}
]
}
]
}
}
},
{
Expand Down
45 changes: 42 additions & 3 deletions MAUI/Resources/Raw/Configs/workflows_config_serial_scanning.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,20 @@
"beepOnResult": true,
"vibrateOnResult": true,
"blinkAnimationOnResult": true
}
},
"uiFeedbackConfig": {
"presets": [
{
"presetName": "simple_instruction_label",
"presetAttributes": [
{
"attributeName": "instruction_text",
"attributeValue": "Position the entire License Plate within the cutout"
}
]
}
]
}
}
},
{
Expand Down Expand Up @@ -91,7 +104,20 @@
"beepOnResult": true,
"vibrateOnResult": true,
"strokeWidth": 2
}
},
"uiFeedbackConfig": {
"presets": [
{
"presetName": "simple_instruction_label",
"presetAttributes": [
{
"attributeName": "instruction_text",
"attributeValue": "Position the entire Driving License within the cutout"
}
]
}
]
}
}
},
{
Expand Down Expand Up @@ -125,7 +151,20 @@
"beepOnResult": false,
"vibrateOnResult": true,
"blinkAnimationOnResult": true
}
},
"uiFeedbackConfig": {
"presets": [
{
"presetName": "simple_instruction_label",
"presetAttributes": [
{
"attributeName": "instruction_text",
"attributeValue": "Position the VIN within the cutout"
}
]
}
]
}
}
}
]
Expand Down

0 comments on commit 34fef79

Please sign in to comment.