Skip to content

Commit

Permalink
// Version updated to v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eternoendless committed Jun 5, 2018
1 parent bb1d6c1 commit c676ded
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>ps_imageslider</name>
<displayName><![CDATA[Image slider]]></displayName>
<version><![CDATA[2.1.1]]></version>
<version><![CDATA[3.0.0]]></version>
<description><![CDATA[Adds an image slider to your site.]]></description>
<author><![CDATA[PrestaShop]]></author>
<tab><![CDATA[front_office_features]]></tab>
Expand Down
4 changes: 2 additions & 2 deletions ps_imageslider.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function __construct()
{
$this->name = 'ps_imageslider';
$this->tab = 'front_office_features';
$this->version = '2.1.1';
$this->version = '3.0.0';
$this->author = 'PrestaShop';
$this->need_instance = 0;
$this->secure_key = Tools::encrypt($this->name);
Expand All @@ -59,7 +59,7 @@ public function __construct()

$this->displayName = $this->getTranslator()->trans('Image slider', array(), 'Modules.Imageslider.Admin');
$this->description = $this->getTranslator()->trans('Adds an image slider to your site.', array(), 'Modules.Imageslider.Admin');
$this->ps_versions_compliancy = array('min' => '1.7.1.0', 'max' => _PS_VERSION_);
$this->ps_versions_compliancy = array('min' => '1.7.4.0', 'max' => _PS_VERSION_);

$this->templateFile = 'module:ps_imageslider/views/templates/hook/slider.tpl';
}
Expand Down

0 comments on commit c676ded

Please sign in to comment.