Skip to content

Commit

Permalink
Merge pull request #43 from tawk/release/support-version-82
Browse files Browse the repository at this point in the history
Update version supported
  • Loading branch information
eug-L authored Nov 26, 2024
2 parents 5dd33a4 + 0d48742 commit 55c1140
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"license": "AFL-3.0",
"scripts": {
"post-install-cmd": "[ -z \"$GITHUB_ACTIONS\" ] && npm install",
"post-install-cmd": "if [ -z \"$GITHUB_ACTIONS\" ]; then npm install; fi",
"lint": "phpcs -p -s -v --runtime-set ignore_warnings_on_exit true .",
"lint:fix": "php-cs-fixer fix --config='.php-cs-fixer.dist.php'",
"auto-index": "composer run auto-index:1.6 && composer run auto-index:1.7 && composer run auto-index:8",
Expand Down
2 changes: 1 addition & 1 deletion prestashop1.6/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>tawkto</name>
<displayName><![CDATA[tawk.to]]></displayName>
<version><![CDATA[1.4.0]]></version>
<version><![CDATA[1.5.0]]></version>
<description><![CDATA[tawk.to live chat integration.]]></description>
<author><![CDATA[tawk.to]]></author>
<tab><![CDATA[front_office_features]]></tab>
Expand Down
2 changes: 1 addition & 1 deletion prestashop1.6/tawkto.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct()
{
$this->name = 'tawkto';
$this->tab = 'front_office_features';
$this->version = '1.4.0';
$this->version = '1.5.0';
$this->author = 'tawk.to';
$this->need_instance = 0;
$this->ps_versions_compliancy = ['min' => '1.5', 'max' => '1.6'];
Expand Down
2 changes: 1 addition & 1 deletion prestashop1.6/views/templates/hook/widget.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @copyright Copyright (c) 2014-2024 tawk.to
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*}
<!--Start of Tawk.to Script (1.4.0)-->
<!--Start of Tawk.to Script (1.5.0)-->
<script type="text/javascript">
var $_Tawk_API={},$_Tawk_LoadStart=new Date();
(function(){
Expand Down
2 changes: 1 addition & 1 deletion prestashop1.7/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>tawkto</name>
<displayName><![CDATA[tawk.to]]></displayName>
<version><![CDATA[1.4.0]]></version>
<version><![CDATA[1.5.0]]></version>
<description><![CDATA[tawk.to live chat integration.]]></description>
<author><![CDATA[tawk.to]]></author>
<tab><![CDATA[front_office_features]]></tab>
Expand Down
2 changes: 1 addition & 1 deletion prestashop1.7/tawkto.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct()
{
$this->name = 'tawkto';
$this->tab = 'front_office_features';
$this->version = '1.4.0';
$this->version = '1.5.0';
$this->author = 'tawk.to';
$this->need_instance = 0;
$this->ps_versions_compliancy = ['min' => '1.5', 'max' => '1.7'];
Expand Down
2 changes: 1 addition & 1 deletion prestashop1.7/views/templates/hook/widget.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @copyright Copyright (c) 2014-2024 tawk.to
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*}
<!--Start of tawk.to Script (1.4.0)-->
<!--Start of tawk.to Script (1.5.0)-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
Expand Down
2 changes: 1 addition & 1 deletion prestashop8.x/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>tawkto</name>
<displayName><![CDATA[tawk.to]]></displayName>
<version><![CDATA[1.4.0]]></version>
<version><![CDATA[1.5.0]]></version>
<description><![CDATA[tawk.to live chat integration.]]></description>
<author><![CDATA[tawk.to]]></author>
<tab><![CDATA[front_office_features]]></tab>
Expand Down
4 changes: 2 additions & 2 deletions prestashop8.x/tawkto.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ public function __construct()
{
$this->name = 'tawkto';
$this->tab = 'front_office_features';
$this->version = '1.4.0';
$this->version = '1.5.0';
$this->author = 'tawk.to';
$this->need_instance = 0;
$this->ps_versions_compliancy = ['min' => '1.5', 'max' => '8.1.99'];
$this->ps_versions_compliancy = ['min' => '1.5', 'max' => '8.2.99'];

parent::__construct();

Expand Down
2 changes: 1 addition & 1 deletion prestashop8.x/views/templates/hook/widget.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @copyright Copyright (c) 2014-2024 tawk.to
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*}
<!--Start of tawk.to Script (1.4.0)-->
<!--Start of tawk.to Script (1.5.0)-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
Expand Down

0 comments on commit 55c1140

Please sign in to comment.