Preparing release 6.2
This commit is contained in:
parent
d889ebd6de
commit
a33cf4bec5
|
@ -0,0 +1,12 @@
|
|||
UPDATE AD_SYSTEM
|
||||
SET releaseno = '6.2',
|
||||
VERSION = '2019-01-06'
|
||||
WHERE ad_system_id = 0 AND ad_client_id = 0
|
||||
;
|
||||
|
||||
COMMIT
|
||||
;
|
||||
|
||||
SELECT register_migration_script('201901052243_Version.sql') FROM dual
|
||||
;
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
UPDATE AD_SYSTEM
|
||||
SET releaseno = '6.2',
|
||||
VERSION = '2019-01-06'
|
||||
WHERE ad_system_id = 0 AND ad_client_id = 0
|
||||
;
|
||||
|
||||
SELECT register_migration_script('201901052243_Version.sql') FROM dual
|
||||
;
|
||||
|
|
@ -67,11 +67,11 @@ public final class Adempiere
|
|||
/** Timestamp */
|
||||
static public final String ID = "$Id: Adempiere.java,v 1.8 2006/08/11 02:58:14 jjanke Exp $";
|
||||
/** Main Version String */
|
||||
static public String MAIN_VERSION = "Release 6.1";
|
||||
static public String MAIN_VERSION = "Release 6.2";
|
||||
/** Detail Version as date Used for Client/Server */
|
||||
static public String DATE_VERSION = "2018-11-04";
|
||||
static public String DATE_VERSION = "2019-01-06";
|
||||
/** Database Version as date Compared with AD_System */
|
||||
static public String DB_VERSION = "2018-11-04";
|
||||
static public String DB_VERSION = "2019-01-06";
|
||||
|
||||
/** Product Name */
|
||||
static public final String NAME = "iDempiere\u00AE";
|
||||
|
@ -92,7 +92,7 @@ public final class Adempiere
|
|||
/** Subtitle */
|
||||
static public final String SUB_TITLE = "Smart Suite ERP, CRM and SCM";
|
||||
static public final String ADEMPIERE_R = "iDempiere\u00AE";
|
||||
static public final String COPYRIGHT = "\u00A9 1999-2018 iDempiere\u00AE";
|
||||
static public final String COPYRIGHT = "\u00A9 1999-2019 iDempiere\u00AE";
|
||||
|
||||
static private String s_ImplementationVersion = null;
|
||||
static private String s_ImplementationVendor = null;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Package: idempiere
|
||||
Version: 6.1
|
||||
Version: 6.2
|
||||
Section: web
|
||||
Priority: extra
|
||||
Architecture: all
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
<tbody>
|
||||
<tr>
|
||||
|
||||
<td align="left" valign="middle"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="4">Welcome to the iDempiere (OSGi+ADempiere) 6.1 Page!<br>
|
||||
<td align="left" valign="middle"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="4">Welcome to the iDempiere (OSGi+ADempiere) 6.2 Page!<br>
|
||||
|
||||
</font></td>
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ public final class Prop implements Serializable {
|
|||
private static final String TEMPLATE_NAME = "TemplateName";
|
||||
public static final String CLIENT_NAME = "ClientName";
|
||||
public static final String CREDITS_TXT = "Credits";
|
||||
public static final String COPYRIGHT_TXT = "Copyriright";
|
||||
public static final String COPYRIGHT_TXT = "Copyright";
|
||||
public static final String CUSTOM_IMAGE_PATH = "CustomImagePath";
|
||||
|
||||
/** Customizable Links */
|
||||
|
@ -90,7 +90,7 @@ public final class Prop implements Serializable {
|
|||
public static final String SOC_7 = "Social7";
|
||||
|
||||
/**Defaults*/
|
||||
private static final String CREDITS = "Welcome to the iDempiere (OSGi+ADempiere) 6.1 Page!";
|
||||
private static final String CREDITS = "Welcome to the iDempiere (OSGi+ADempiere) 6.2 Page!";
|
||||
private static String LOGO_URL = null;
|
||||
|
||||
|
||||
|
|
|
@ -52,5 +52,5 @@ CustomImagePath = NONE
|
|||
ClientName = iDempiere Server
|
||||
|
||||
#Custom Credits & Copyright tail
|
||||
Credits = Welcome to the iDempiere (OSGi+ADempiere) 6.1 Page!
|
||||
Credits = Welcome to the iDempiere (OSGi+ADempiere) 6.2 Page!
|
||||
Copyriright = || by <a href="http://www.idempiere.org" target="blank">iDempiere Community</a>
|
||||
|
|
Loading…
Reference in New Issue