Prepare 2.8 version
This commit is contained in:
parent
37ffac0689
commit
666c42eb72
@ -4,11 +4,11 @@
|
|||||||
; Idea from WampServer 2 (http://www.wampserver.com)
|
; Idea from WampServer 2 (http://www.wampserver.com)
|
||||||
;----------------------------------------------------------------------------------------
|
;----------------------------------------------------------------------------------------
|
||||||
; You must edit some path in this file to build an exe (like SourceDir).
|
; You must edit some path in this file to build an exe (like SourceDir).
|
||||||
; WARNING: Be sure that user files for Mysql data used to build
|
; WARNING: Be sure that user.* files of Mysql database used to build
|
||||||
; package contains only user root with no password.
|
; package contains only one user called root with no password.
|
||||||
; For this, you can edit mysql.user table for a database to keep
|
; For this, you can edit the mysql.user table of the source database to keep
|
||||||
; only root user with no password, stop server and catch
|
; only the root user with no password, stop server and catch
|
||||||
; files user.MY* to put them in data sources.
|
; files user.MY* to put them in the Dolibarr build/exe/doliwamp/mysql directory.
|
||||||
;
|
;
|
||||||
; Version: $Id$
|
; Version: $Id$
|
||||||
;----------------------------------------------------------------------------------------
|
;----------------------------------------------------------------------------------------
|
||||||
@ -18,9 +18,9 @@
|
|||||||
; ----- Change this -----
|
; ----- Change this -----
|
||||||
AppName=DoliWamp
|
AppName=DoliWamp
|
||||||
; DoliWamp-x.x.x or DoliWamp-x.x.x-dev or DoliWamp-x.x.x-beta
|
; DoliWamp-x.x.x or DoliWamp-x.x.x-dev or DoliWamp-x.x.x-beta
|
||||||
AppVerName=DoliWamp-2.7.0
|
AppVerName=DoliWamp-2.8.0-dev
|
||||||
; DoliWamp-x.x x or DoliWamp-x.x.x-dev or DoliWamp-x.x.x-beta
|
; DoliWamp-x.x x or DoliWamp-x.x.x-dev or DoliWamp-x.x.x-beta
|
||||||
OutputBaseFilename=DoliWamp-2.7.0
|
OutputBaseFilename=DoliWamp-2.8.0-dev
|
||||||
; 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=C:\Work\Data\Workspace\dolibarr
|
SourceDir=C:\Work\Data\Workspace\dolibarr
|
||||||
|
|||||||
@ -3,15 +3,15 @@
|
|||||||
# \file build/makepack-dolibarr.pl
|
# \file build/makepack-dolibarr.pl
|
||||||
# \brief Dolibarr package builder (tgz, zip, rpm, deb, exe)
|
# \brief Dolibarr package builder (tgz, zip, rpm, deb, exe)
|
||||||
# \version $Revision$
|
# \version $Revision$
|
||||||
# \author (c)2004-2006 Laurent Destailleur <eldy@users.sourceforge.net>
|
# \author (c)2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
use Cwd;
|
use Cwd;
|
||||||
|
|
||||||
$PROJECT="dolibarr";
|
$PROJECT="dolibarr";
|
||||||
$MAJOR="2";
|
$MAJOR="2";
|
||||||
$MINOR="7";
|
$MINOR="8";
|
||||||
$BUILD="0"; # Mettre x pour release, x-beta pour beta, x-rc pour release candidate
|
$BUILD="0-dev"; # Mettre x pour release, x-dev pour dev, x-beta pour beta, x-rc pour release candidate
|
||||||
$RPMSUBVERSION="1"; # A incrementer au moment de la release
|
$RPMSUBVERSION="1"; # A incrementer au moment de la release
|
||||||
|
|
||||||
@LISTETARGET=("TGZ","ZIP","RPM","DEB","EXE","EXEDOLIWAMP","SNAPSHOT"); # Possible packages
|
@LISTETARGET=("TGZ","ZIP","RPM","DEB","EXE","EXEDOLIWAMP","SNAPSHOT"); # Possible packages
|
||||||
|
|||||||
@ -25,7 +25,7 @@
|
|||||||
* \version $Id$
|
* \version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
define('DOL_VERSION','2.7.0'); // Also defined in htdocs/master.inc.php
|
define('DOL_VERSION','2.8.0-dev'); // 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');
|
||||||
|
|||||||
@ -31,7 +31,7 @@
|
|||||||
* \version $Id$
|
* \version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
define('DOL_VERSION','2.7.0'); // Also defined in htdocs/install/inc.php
|
define('DOL_VERSION','2.8.0-dev'); // Also defined in htdocs/install/inc.php
|
||||||
define('EURO',chr(128));
|
define('EURO',chr(128));
|
||||||
|
|
||||||
// Definition des constantes syslog
|
// Definition des constantes syslog
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user