Skip to content

Commit

Permalink
Removed WB version check
Browse files Browse the repository at this point in the history
  • Loading branch information
hertsch committed Jun 14, 2012
1 parent 2ed56a3 commit aef1977
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 17 deletions.
6 changes: 6 additions & 0 deletions .buildpath
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<buildpath>
<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
<buildpathentry kind="src" path=""/>
<buildpathentry combineaccessrules="false" kind="prj" path="/LEPTON 1.x"/>
</buildpath>
22 changes: 22 additions & 0 deletions .project
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>GIT - dbConnect</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.validation.validationbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.dltk.core.scriptbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.php.core.PHPNature</nature>
</natures>
</projectDescription>
3 changes: 3 additions & 0 deletions .settings/org.eclipse.php.core.prefs
@@ -0,0 +1,3 @@
eclipse.preferences.version=1
include_path=2;/LEPTON 1.x\u00050;/GIT - dbConnect
use_asp_tags_as_php=false
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,5 +1,9 @@
### dbConnect

0.37 - 2012-06-14

* removed WB version check

0.36 - 2012-06-02

* moved repository from SVN to GitHub
Expand Down
2 changes: 1 addition & 1 deletion info.php
Expand Up @@ -12,7 +12,7 @@
$module_directory = 'dbconnect';
$module_name = 'dbConnect';
$module_function = 'snippet';
$module_version = '0.36';
$module_version = '0.37';
$module_platform = '2.7.x';
$module_author = 'Ralf Hertsch, Berlin (Germany)';
$module_license = 'GNU General Public License';
Expand Down
31 changes: 15 additions & 16 deletions precheck.php
@@ -1,17 +1,16 @@
<?php

/**
* dbConnect
*
* @author Ralf Hertsch <ralf.hertsch@phpmanufaktur.de>
* @link https://addons.phpmanufaktur.de/de/addons/dbconnect.php
* @copyright 2007-2012 phpManufaktur by Ralf Hertsch
* @license http://www.gnu.org/licenses/gpl.html GNU Public License (GPL)
*/

// Checking Requirements
$PRECHECK['WB_VERSION'] = array('VERSION' => '2.7', 'OPERATOR' => '>=');
$PRECHECK['PHP_VERSION'] = array('VERSION' => '5.2.0', 'OPERATOR' => '>=');
$PRECHECK['PHP_EXTENSIONS'] = array('mysqli');

<?php

/**
* dbConnect
*
* @author Ralf Hertsch <ralf.hertsch@phpmanufaktur.de>
* @link https://addons.phpmanufaktur.de/de/addons/dbconnect.php
* @copyright 2007-2012 phpManufaktur by Ralf Hertsch
* @license http://www.gnu.org/licenses/gpl.html GNU Public License (GPL)
*/

// Checking Requirements
$PRECHECK['PHP_VERSION'] = array('VERSION' => '5.2.0', 'OPERATOR' => '>=');
$PRECHECK['PHP_EXTENSIONS'] = array('mysqli');

?>

0 comments on commit aef1977

Please sign in to comment.