Skip to content

Commit d898043

Browse files
committed
Added more info on how to scan endpoint QRCode
1 parent d3e1ad8 commit d898043

File tree

6 files changed

+20
-5
lines changed

6 files changed

+20
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,4 @@ WebInterface/DOCKER_CLEANUP_SAFETY.md
4343
WebInterface/SYMBOLOGY_MAPPING_RULES.md
4444
console.txt
4545
nul
46+
WebInterface/ssl/ssl/

AI_MultiBarcodes_Capture/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ android {
1414
applicationId = "com.zebra.ai_multibarcodes_capture.dev"
1515
minSdk = 34
1616
targetSdk = 35
17-
versionCode = 27
18-
versionName = "1.27"
17+
versionCode = 28
18+
versionName = "1.28"
1919

2020
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2121
}

AI_MultiBarcodes_Capture/src/main/res/layout/activity_setup.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,20 @@
308308
android:minHeight="48dp"
309309
android:padding="12dp" />
310310

311+
<TextView
312+
android:layout_width="match_parent"
313+
android:layout_height="wrap_content"
314+
android:layout_marginTop="8dp"
315+
android:layout_marginStart="8dp"
316+
android:layout_marginEnd="8dp"
317+
android:background="@drawable/badge_background"
318+
android:padding="12dp"
319+
android:text="Quick Setup: Open WMS website at http://[WMS_IP]:3500 or https://[WMS_IP]:3543 → Click gear icon (top right) → Endpoint Configuration → QR Code button → Scan QR code to auto-fill endpoint"
320+
android:textColor="@color/zebra"
321+
android:textSize="12sp"
322+
android:focusable="false"
323+
android:clickable="false" />
324+
311325

312326
</LinearLayout>
313327

WebInterface/src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ <h2 id="qr-modal-title">📱 QR Code - Endpoint URL</h2>
101101
<div class="qr-info">
102102
<p><strong id="endpoint-url-label">Endpoint URL:</strong></p>
103103
<div class="qr-url" id="qr-url-text"></div>
104-
<p class="qr-instructions" id="qr-scan-instructions">Scan this QR code with your Android AI MultiBarcode Capture app to automatically configure the endpoint.</p>
104+
<p class="qr-instructions" id="qr-scan-instructions">Scan this QR code from your Android AI MultiBarcode Capture app Settings page to automatically configure the endpoint.</p>
105105
</div>
106106
</div>
107107
</div>

WebInterface/src/js/wms-app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1996,7 +1996,7 @@ class WMSApp {
19961996
// QR Modal
19971997
'#qr-modal-title': '📱 ' + this.t('qr_code_endpoint_url', 'QR Code - Endpoint URL'),
19981998
'#endpoint-url-label': this.t('endpoint_url_label', 'Endpoint URL:'),
1999-
'#qr-scan-instructions': this.t('qr_scan_instructions', 'Scan this QR code with your Android AI MultiBarcode Capture app to automatically configure the endpoint.'),
1999+
'#qr-scan-instructions': this.t('qr_scan_instructions', 'Scan this QR code from your Android AI MultiBarcode Capture app Settings page to automatically configure the endpoint.'),
20002000

20012001
// Settings modal
20022002
'#settings-modal-title': this.t('settings', 'Settings'),

WebInterface/src/lang/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
"config_step_3": "Paste one of the endpoints above",
100100
"config_step_4": "Test the connection and save",
101101
"endpoint_url_label": "Endpoint URL:",
102-
"qr_scan_instructions": "Scan this QR code with your Android AI MultiBarcode Capture app to automatically configure the endpoint.",
102+
"qr_scan_instructions": "Scan this QR code from your Android AI MultiBarcode Capture app Settings page to automatically configure the endpoint.",
103103
"footer_copyright": "Barcode WMS © 2024 - Powered by Zebra AI Vision SDK",
104104
"footer_connection": "Connected to Android AI MultiBarcode Capture Application",
105105
"failed_to_load_sessions": "Failed to load sessions",

0 commit comments

Comments
 (0)