Preparing release
This commit is contained in:
parent
2fc2d6a9c1
commit
d89bc0d4d0
|
@ -0,0 +1,9 @@
|
|||
UPDATE AD_SYSTEM
|
||||
SET releaseno = '1.0a',
|
||||
VERSION = '2012-10-31'
|
||||
WHERE ad_system_id = 0 AND ad_client_id = 0
|
||||
;
|
||||
|
||||
SELECT register_migration_script('958_Version.sql') FROM dual
|
||||
;
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
UPDATE AD_SYSTEM
|
||||
SET releaseno = '1.0a',
|
||||
VERSION = '2012-10-31'
|
||||
WHERE ad_system_id = 0 AND ad_client_id = 0
|
||||
;
|
||||
|
||||
SELECT register_migration_script('958_Version.sql') FROM dual
|
||||
;
|
||||
|
|
@ -163,7 +163,7 @@ public class ModelClassGenerator
|
|||
createImports(start);
|
||||
// Class
|
||||
start.append("/** Generated Model for ").append(tableName).append(NL)
|
||||
.append(" * @author Adempiere (generated) ").append(NL)
|
||||
.append(" * @author iDempiere (generated) ").append(NL)
|
||||
.append(" * @version ").append(Adempiere.MAIN_VERSION).append(" - $Id$ */").append(NL)
|
||||
.append("public class ").append(className)
|
||||
.append(" extends PO")
|
||||
|
|
|
@ -87,8 +87,8 @@ public class ModelInterfaceGenerator
|
|||
/** File Header */
|
||||
public static final String COPY =
|
||||
"/******************************************************************************\n"
|
||||
+" * Product: Adempiere ERP & CRM Smart Business Solution *\n"
|
||||
+" * Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. *\n"
|
||||
+" * Product: iDempiere ERP & CRM Smart Business Solution *\n"
|
||||
+" * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. *\n"
|
||||
+" * This program is free software, you can redistribute it and/or modify it *\n"
|
||||
+" * under the terms version 2 of the GNU General Public License as published *\n"
|
||||
+" * by the Free Software Foundation. This program is distributed in the hope *\n"
|
||||
|
@ -187,7 +187,7 @@ public class ModelInterfaceGenerator
|
|||
createImports(start);
|
||||
// Interface
|
||||
start.append("/** Generated Interface for ").append(tableName).append("\n")
|
||||
.append(" * @author Adempiere (generated) \n")
|
||||
.append(" * @author iDempiere (generated) \n")
|
||||
.append(" * @version ").append(Adempiere.MAIN_VERSION).append(NL) //.append(" - ").append(s_run).append("\n")
|
||||
.append(" */\n")
|
||||
.append("public interface ").append(className).append(" {").append("\n")
|
||||
|
|
|
@ -66,16 +66,16 @@ public final class Adempiere
|
|||
/** Main Version String */
|
||||
// Conventions for naming second number is even for stable, and odd for unstable
|
||||
// the releases will have a suffix (a) for alpha - (b) for beta - (t) for trunk - (s) for stable - and (LTS) for long term support
|
||||
static public String MAIN_VERSION = "Release 3.6.0LTS";
|
||||
static public String MAIN_VERSION = "Release 1.0a";
|
||||
/** Detail Version as date Used for Client/Server */
|
||||
static public String DATE_VERSION = "2010-06-14";
|
||||
static public String DATE_VERSION = "2012-10-31";
|
||||
/** Database Version as date Compared with AD_System */
|
||||
static public String DB_VERSION = "2010-06-14";
|
||||
static public String DB_VERSION = "2012-10-31";
|
||||
|
||||
/** Product Name */
|
||||
static public final String NAME = "ADempiere\u00AE";
|
||||
static public final String NAME = "iDempiere\u00AE";
|
||||
/** URL of Product */
|
||||
static public final String URL = "www.adempiere.org";
|
||||
static public final String URL = "www.idempiere.org";
|
||||
/** 16*16 Product Image. **/
|
||||
static private final String s_File16x16 = "images/AD16.gif";
|
||||
/** 32*32 Product Image. */
|
||||
|
@ -89,9 +89,9 @@ public final class Adempiere
|
|||
static private String s_supportEmail = "";
|
||||
|
||||
/** Subtitle */
|
||||
static public final String SUB_TITLE = "Smart Suite ERP,CRM and SCM";
|
||||
static public final String ADEMPIERE_R = "ADempiere\u00AE";
|
||||
static public final String COPYRIGHT = "\u00A9 1999-2010 ADempiere\u00AE";
|
||||
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-2012 iDempiere\u00AE";
|
||||
|
||||
static private String s_ImplementationVersion = null;
|
||||
static private String s_ImplementationVendor = null;
|
||||
|
@ -102,7 +102,7 @@ public final class Adempiere
|
|||
static private ImageIcon s_imageIcon32;
|
||||
static private ImageIcon s_imageIconLogo;
|
||||
|
||||
static private final String ONLINE_HELP_URL = "http://www.adempiere.com/wiki/index.php/Manual";
|
||||
static private final String ONLINE_HELP_URL = "http://wiki.idempiere.org";
|
||||
|
||||
/** Logging */
|
||||
private static CLogger log = null;
|
||||
|
@ -176,7 +176,7 @@ public final class Adempiere
|
|||
|
||||
/**
|
||||
* Summary (Windows).
|
||||
* Adempiere(tm) Version 2.5.1a_2004-03-15 - Smart ERP & CRM - Copyright (c) 1999-2005 Jorg Janke; Implementation: 2.5.1a 20040417-0243 - (C) 1999-2005 Jorg Janke, Adempiere Inc. USA
|
||||
* iDempiere(tm) Release 1.0a_2012-10-31 -Smart Suite ERP, CRM and SCM- Copyright (c) 1999-2012 iDempiere; Implementation: 2.5.1a 20040417-0243 - (C) 1999-2005 Jorg Janke, iDempiere Inc. USA
|
||||
* @return Summary in Windows character set
|
||||
*/
|
||||
public static String getSummary()
|
||||
|
|
|
@ -96,7 +96,7 @@ End If
|
|||
<tbody>
|
||||
<tr>
|
||||
|
||||
<td align="left" valign="middle"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="4">Welcome to the OSGi + ADempiere = iDempiere 1.0 Preview Home Page!<br>
|
||||
<td align="left" valign="middle"><font color="#ffffff" face="Arial, Helvetica, sans-serif" size="4">Welcome to the iDempiere (OSGi+ADempiere) 1.0a Page!<br>
|
||||
|
||||
</font></td>
|
||||
|
||||
|
|
Loading…
Reference in New Issue