From 4a2caef14faa96d8463bab38ba048d30259c9278 Mon Sep 17 00:00:00 2001 From: vegim carkaxhija Date: Thu, 20 Jun 2024 16:26:43 +0200 Subject: [PATCH 1/2] update to 4.3.0 --- buckaroo3.php | 4 ++-- config.xml | 4 ++-- upgrade/{upgrade-4.2.1.php => upgrade-4.3.0.php} | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename upgrade/{upgrade-4.2.1.php => upgrade-4.3.0.php} (98%) diff --git a/buckaroo3.php b/buckaroo3.php index a0ec7be5..06cf785f 100644 --- a/buckaroo3.php +++ b/buckaroo3.php @@ -56,7 +56,7 @@ 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; @@ -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)'); } } } diff --git a/config.xml b/config.xml index d7560f49..a2ce847d 100644 --- a/config.xml +++ b/config.xml @@ -1,8 +1,8 @@ buckaroo3 - - + + diff --git a/upgrade/upgrade-4.2.1.php b/upgrade/upgrade-4.3.0.php similarity index 98% rename from upgrade/upgrade-4.2.1.php rename to upgrade/upgrade-4.3.0.php index efbdcd5e..5b39b1f5 100644 --- a/upgrade/upgrade-4.2.1.php +++ b/upgrade/upgrade-4.3.0.php @@ -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` ( From a16100082f4daa37b4f9be132a3c181c7ba03b83 Mon Sep 17 00:00:00 2001 From: vegim carkaxhija Date: Thu, 20 Jun 2024 16:27:45 +0200 Subject: [PATCH 2/2] update Prestashop version --- buckaroo3.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buckaroo3.php b/buckaroo3.php index 06cf785f..b6d8e9c2 100644 --- a/buckaroo3.php +++ b/buckaroo3.php @@ -63,7 +63,7 @@ private function initializeModuleInfo() $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'; }