5.4.0 release

This commit is contained in:
2025-07-31 19:13:42 +01:00
parent da06d3ed76
commit 8771d24bb6
4 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -4,7 +4,7 @@
<groupId>com.unicenta</groupId>
<artifactId>unicentaopos</artifactId>
<version>5.3.2-SNAPSHOT</version>
<version>5.4.0</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -361,7 +361,7 @@
<dependency>
<groupId>com.unicenta</groupId>
<artifactId>unicenta-plugins</artifactId>
<version>1.2.9-SNAPSHOT</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>com.gluonhq</groupId>
@@ -30,7 +30,7 @@ public class AppLocal {
public static final String APP_NAME = "uniCenta oPOS";
public static final String APP_ID = "unicentaopos";
public static final String APP_VERSION = "5.3.2";
public static final String APP_VERSION = "5.4.0";
private static final LocaleResources m_resources;
@@ -2227,7 +2227,8 @@ public abstract class JPanelTicket extends JPanel implements JPanelView, BeanFac
jCheckStock.setForeground(Color.darkGray);
}
double dUnits = checkProduct.getUnits();
double dUnits = checkProduct.getUnits() == null ? 0.0 : checkProduct.getUnits();
int iUnits;
iUnits = (int) dUnits;
jCheckStock.setText(Integer.toString(iUnits));
+1 -1
View File
@@ -881,7 +881,7 @@ message.email=Desktop email app' not found
message.emptycustomer=Customer cannot be empty
message.emptynumber=Number cannot be empty
message.enterbuyprice=Enter new Buy Price
message.eolupdate=<html><center><h2>Version 5.3.2 Upgrade!</h2></br><h3>Your current database version is {0}</h3><br>For version 5.3 click <b>YES</b><br/><br/>For any other version click <b>NO</b> and get to 5.3 first<br><br/>
message.eolupdate=<html><center><h2>Version 5.4.0 Upgrade!</h2></br><h3>Your current database version is {0}</h3><br>For version 5.3 and above click <b>YES</b><br/><br/>For any other version click <b>NO</b> and get to 5.3 first<br><br/>
message.ibuttonassign=<html><center>Get the iButton ID<br>Place iButton onto the reader then click OK
message.ibuttonnotassign=<html><center>The iButton used is not yet assigned to anyone
message.ibuttonnotfound=No iButton adapter found. Key fobs will be disabled.