From 474ea798c2d9c089b12b6df2eb6a09dacf591650 Mon Sep 17 00:00:00 2001 From: mjpcger <37701263+mjpcger@users.noreply.github.com> Date: Thu, 13 Feb 2025 18:20:10 +0100 Subject: [PATCH] Further Missing Constant Added Added missing constant BCS_GS1DATAMATRIX for two-dimensional bar code to POS Printer --- src/main/java/jpos/POSPrinterConst.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/jpos/POSPrinterConst.java b/src/main/java/jpos/POSPrinterConst.java index c4fffdd..d63ab69 100644 --- a/src/main/java/jpos/POSPrinterConst.java +++ b/src/main/java/jpos/POSPrinterConst.java @@ -90,6 +90,9 @@ // Added Bar Code Symbology values: // PTR_BCS_DOTCODE // PTR_BCS_HANXIN +// 2025-Feb-13 JavaPOS Release 1.15.2 MC +// Added Bar Code Symbology value: +// PTR_BCS_GS1DATAMATRIX // ///////////////////////////////////////////////////////////////////// @@ -321,6 +324,8 @@ public interface POSPrinterConst public static final int PTR_BCS_UQRCODE = 205; // Micro QR Code public static final int PTR_BCS_AZTEC = 206; // Aztec public static final int PTR_BCS_UPDF417 = 207; // Micro PDF 417 + // Added in Release 1.15.2 + public static final int PTR_BCS_GS1DATAMATRIX= 208; // GS1 Data Matrix // Start of Printer-Specific bar code symbologies public static final int PTR_BCS_OTHER = 501;