Prepare 2.5.1
This commit is contained in:
parent
53251a6807
commit
9ec8049e11
@ -38,6 +38,7 @@ Copyright
|
|||||||
|
|
||||||
Copyright (C) 2009
|
Copyright (C) 2009
|
||||||
- Laurent Destailleur <eldy@users.sourceforge.net>
|
- Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
|
- simnandez
|
||||||
|
|
||||||
Copyright (C) 2008
|
Copyright (C) 2008
|
||||||
- Laurent Destailleur <eldy@users.sourceforge.net>
|
- Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
|
|||||||
@ -17,9 +17,9 @@
|
|||||||
; ----- Change this -----
|
; ----- Change this -----
|
||||||
AppName=DoliWamp
|
AppName=DoliWamp
|
||||||
; DoliWamp-x.x or DoliWamp-x.x-dev or DoliWamp-x.x-beta
|
; DoliWamp-x.x or DoliWamp-x.x-dev or DoliWamp-x.x-beta
|
||||||
AppVerName=DoliWamp-2.5.1-beta
|
AppVerName=DoliWamp-2.5.1
|
||||||
; DoliWamp-x.x or DoliWamp-x.x-dev or DoliWamp-x.x-beta
|
; DoliWamp-x.x or DoliWamp-x.x-dev or DoliWamp-x.x-beta
|
||||||
OutputBaseFilename=DoliWamp-2.5.1-beta
|
OutputBaseFilename=DoliWamp-2.5.1
|
||||||
; Define full path from wich all relative path are defined
|
; Define full path from wich all relative path are defined
|
||||||
; You must modify this to put here your dolibarr root directory
|
; You must modify this to put here your dolibarr root directory
|
||||||
SourceDir=E:\Mes Developpements\dolibarr
|
SourceDir=E:\Mes Developpements\dolibarr
|
||||||
|
|||||||
@ -11,7 +11,7 @@ use Cwd;
|
|||||||
$PROJECT="dolibarr";
|
$PROJECT="dolibarr";
|
||||||
$MAJOR="2";
|
$MAJOR="2";
|
||||||
$MINOR="5";
|
$MINOR="5";
|
||||||
$BUILD="0"; # Mettre x pour release, ou x-beta pour beta
|
$BUILD="1"; # Mettre x pour release, ou x-beta pour beta
|
||||||
$RPMSUBVERSION="1"; # A incrementer au moment de la release
|
$RPMSUBVERSION="1"; # A incrementer au moment de la release
|
||||||
|
|
||||||
@LISTETARGET=("TGZ","ZIP","RPM","DEB","EXE"); # Possible packages
|
@LISTETARGET=("TGZ","ZIP","RPM","DEB","EXE"); # Possible packages
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
***** Actions to do to release *****
|
***** Actions to do to release *****
|
||||||
- Check all files are commited.
|
- Check all files are commited.
|
||||||
- Update files in root directory (README*.txt, ChangeLog...)
|
- Update files in root directory (README*.txt, ChangeLog...)
|
||||||
- Update version number in doc files
|
|
||||||
- Update version number in makepack-dolibarr.pl file
|
- Update version number in makepack-dolibarr.pl file
|
||||||
- Update version number in htdocs/build/exe/doliwamp/doliwamp.iss
|
- Update version number in htdocs/build/exe/doliwamp/doliwamp.iss
|
||||||
- Update version number in htdocs/master.inc.php
|
- Update version number in htdocs/master.inc.php
|
||||||
|
|||||||
@ -4,10 +4,10 @@
|
|||||||
<CompanyName />
|
<CompanyName />
|
||||||
<Program_Info>
|
<Program_Info>
|
||||||
<Program_Name>Dolibarr</Program_Name>
|
<Program_Name>Dolibarr</Program_Name>
|
||||||
<Program_Version>2.5</Program_Version>
|
<Program_Version>2.5.1</Program_Version>
|
||||||
<Program_Release_Month>12</Program_Release_Month>
|
<Program_Release_Month>01</Program_Release_Month>
|
||||||
<Program_Release_Day>28</Program_Release_Day>
|
<Program_Release_Day>28</Program_Release_Day>
|
||||||
<Program_Release_Year>2008</Program_Release_Year>
|
<Program_Release_Year>2009</Program_Release_Year>
|
||||||
<Program_Cost_Dollars />
|
<Program_Cost_Dollars />
|
||||||
<Program_Cost_Other_Code />
|
<Program_Cost_Other_Code />
|
||||||
<Program_Cost_Other />
|
<Program_Cost_Other />
|
||||||
|
|||||||
Binary file not shown.
@ -34,10 +34,10 @@
|
|||||||
</Company_Info>
|
</Company_Info>
|
||||||
<Program_Info>
|
<Program_Info>
|
||||||
<Program_Name>Dolibarr</Program_Name>
|
<Program_Name>Dolibarr</Program_Name>
|
||||||
<Program_Version>2.5</Program_Version>
|
<Program_Version>2.5.1</Program_Version>
|
||||||
<Program_Release_Month>12</Program_Release_Month>
|
<Program_Release_Month>01</Program_Release_Month>
|
||||||
<Program_Release_Day>28</Program_Release_Day>
|
<Program_Release_Day>28</Program_Release_Day>
|
||||||
<Program_Release_Year>2008</Program_Release_Year>
|
<Program_Release_Year>2009</Program_Release_Year>
|
||||||
<Program_Cost_Dollars />
|
<Program_Cost_Dollars />
|
||||||
<Program_Cost_Other_Code />
|
<Program_Cost_Other_Code />
|
||||||
<Program_Cost_Other />
|
<Program_Cost_Other />
|
||||||
|
|||||||
@ -24,7 +24,7 @@
|
|||||||
\version $Id$
|
\version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
define('DOL_VERSION','2.5.1-beta'); // Also defined in htdocs/master.inc.php
|
define('DOL_VERSION','2.5.1'); // Also defined in htdocs/master.inc.php
|
||||||
|
|
||||||
require_once('../translate.class.php');
|
require_once('../translate.class.php');
|
||||||
require_once('../lib/functions.lib.php');
|
require_once('../lib/functions.lib.php');
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<?PHP
|
<?PHP
|
||||||
/* Copyright (C) 2002-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2002-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
* Copyright (C) 2003 Xavier Dutoit <doli@sydesy.com>
|
* Copyright (C) 2003 Xavier Dutoit <doli@sydesy.com>
|
||||||
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
* Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
|
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
|
||||||
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
|
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
|
||||||
* Copyright (C) 2005-2007 Regis Houssin <regis@dolibarr.fr>
|
* Copyright (C) 2005-2007 Regis Houssin <regis@dolibarr.fr>
|
||||||
@ -30,7 +30,7 @@
|
|||||||
* \version $Id$
|
* \version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
define('DOL_VERSION','2.5.1-beta'); // Also defined in htdocs/install/inc.php
|
define('DOL_VERSION','2.5.1'); // Also defined in htdocs/install/inc.php
|
||||||
define('EURO',chr(128));
|
define('EURO',chr(128));
|
||||||
|
|
||||||
// La fonction clearstatcache ne doit pas etre appelée de manière globale car ralenti.
|
// La fonction clearstatcache ne doit pas etre appelée de manière globale car ralenti.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user