Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bp 3481 update test release v4.3.0 #170

Merged
merged 2 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions buckaroo3.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ private function initializeModuleInfo()
{
$this->name = 'buckaroo3';
$this->tab = 'payments_gateways';
$this->version = '4.2.1';
$this->version = '4.3.0';
$this->author = 'Buckaroo';
$this->need_instance = 1;
$this->bootstrap = true;
$this->module_key = '8d2a2f65a77a8021da5d5ffccc9bbd2b';
$this->ps_versions_compliancy = ['min' => '1', 'max' => _PS_VERSION_];
$this->displayName = $this->l('Buckaroo Payments') . ' (v ' . $this->version . ')';
$this->description = $this->l('Buckaroo Payment module. Compatible with PrestaShop version 1.7.x + 8.1.4');
$this->description = $this->l('Buckaroo Payment module. Compatible with PrestaShop version 1.7.x + 8.1.6');
$this->confirmUninstall = $this->l('Are you sure you want to delete Buckaroo Payments module?');
$this->tpl_folder = 'buckaroo3';
}
Expand All @@ -84,7 +84,7 @@ private function initializeDisplayName()
} elseif (isset($response->status) && $response->status > 0) {
$this->displayName = (new RawPaymentMethodRepository())->getPaymentMethodsLabel($response->payment_method);
} else {
$this->displayName = $this->l('Buckaroo Payments (v 4.2.1)');
$this->displayName = $this->l('Buckaroo Payments (v 4.3.0)');
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions config.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<module>
<name>buckaroo3</name>
<displayName><![CDATA[Buckaroo Payments (v 4.2.1)]]></displayName>
<version><![CDATA[4.2.1]]></version>
<displayName><![CDATA[Buckaroo Payments (v 4.3.0)]]></displayName>
<version><![CDATA[4.3.0]]></version>
<description><![CDATA[Buckaroo Payment module. Compatible with PrestaShop version 1.7.x + 8.1.6]]></description>
<author><![CDATA[Buckaroo]]></author>
<tab><![CDATA[payments_gateways]]></tab>
Expand Down
2 changes: 1 addition & 1 deletion upgrade/upgrade-4.2.1.php → upgrade/upgrade-4.3.0.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @return mixed
* @throws Exception
*/
function upgrade_module_4_2_1($object)
function upgrade_module_4_3_0($object)
{
// Create new table if it doesn't exist
$createTableQuery = 'CREATE TABLE IF NOT EXISTS `' . _DB_PREFIX_ . 'bk_buckaroo_fee` (
Expand Down
Loading