2012-06-21 Ramon Novoa <rnovoa@artica.es>

* pandoradb_data.sql,
	  DEBIAN/control,
	  DEBIAN/make_deb_package.sh,
	  include/config_process.php,
	  install.php,
	  pandora_console.spec,
	  pandora_console.redhat.spec: Updated version strings.

	* extensions/update_manager.php: Merged from 4.0 branch. Ignore blank
	  lines in installation SQL file.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6670 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
ramonn 2012-06-21 17:38:43 +00:00
parent f1c738c49e
commit e2a32e28c7
9 changed files with 25 additions and 10 deletions

View File

@ -1,3 +1,16 @@
2012-06-21 Ramon Novoa <rnovoa@artica.es>
* pandoradb_data.sql,
DEBIAN/control,
DEBIAN/make_deb_package.sh,
include/config_process.php,
install.php,
pandora_console.spec,
pandora_console.redhat.spec: Updated version strings.
* extensions/update_manager.php: Merged from 4.0 branch. Ignore blank
lines in installation SQL file.
2012-06-21 Miguel de Dios <miguel.dedios@artica.es>
* extensions/update_manager/load_updatemanager.php: fixed the lost

View File

@ -1,5 +1,5 @@
package: pandorafms-console
Version: 4.0.1
Version: 5.0dev
Architecture: all
Priority: optional
Section: admin

View File

@ -14,7 +14,7 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
pandora_version="4.0.1"
pandora_version="5.0dev"
package_pear=0
package_pandora=1

View File

@ -111,6 +111,8 @@ function pandora_update_manager_install () {
break;
}
foreach ($sentences as $sentence) {
if (trim ($sentence) == "")
continue;
$success = db_process_sql ($sentence);
if ($success === false)
return;

View File

@ -22,8 +22,8 @@
/**
* Pandora build version and version
*/
$build_version = 'PC120214';
$pandora_version = 'v5.0-dev';
$build_version = 'PC120621';
$pandora_version = 'v5.0dev';
// Do not overwrite default timezone set if defined.
$script_tz = @date_default_timezone_get();

View File

@ -66,8 +66,8 @@ function ChangeDBAction(causer) {
<?php
$version = '5.0';
$build = '120418';
$version = '5.0dev';
$build = '120621';
$banner = "v$version Build $build";
error_reporting(0);

View File

@ -2,7 +2,7 @@
# Pandora FMS Console
#
%define name pandorafms_console
%define version 4.0
%define version 5.0dev
%define release 1
%define httpd_name httpd

View File

@ -2,7 +2,7 @@
# Pandora FMS Console
#
%define name pandorafms_console
%define version 4.0.1
%define version 5.0dev
%define release 1
%define httpd_name httpd
# User and Group under which Apache is running

View File

@ -48,8 +48,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
('days_compact','0'),
('graph_res','5'),
('step_compact','1'),
('db_scheme_version','5.0'),
('db_scheme_build','PD120524'),
('db_scheme_version','5.0dev'),
('db_scheme_build','PD120621'),
('show_unknown','0'),
('show_lastalerts','1'),
('style','pandora'),