Skip to content
Open
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [1.0.1]

- Fix a typo on a Fintecture URL

## [1.0.0]

- Initial compatibility with Hyvä Checkout
Expand Down
2 changes: 1 addition & 1 deletion Gateway/Config/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class Config extends BaseConfig
{
const CODE = 'fintecture';
const VERSION = '1.0.0';
const VERSION = '1.0.1';

const KEY_SHOP_NAME = 'general/store_information/name';
const KEY_ACTIVE = 'active';
Expand Down
2 changes: 1 addition & 1 deletion Setup/Patch/Data/RemoveFintectureBankTypeConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ public function getAliases()

public static function getVersion(): string
{
return '1.0.0';
return '1.0.1';
}
}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"email": "contact@fintecture.com"
},
"type": "magento2-module",
"version": "1.0.0",
"version": "1.0.1",
"license": [
"GPL-3.0"
],
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Fintecture_HyvaPayment" setup_version="1.0.0">
<module name="Fintecture_HyvaPayment" setup_version="1.0.1">
<sequence>
<module name="Magento_Sales"/>
<module name="Magento_Payment"/>
Expand Down
2 changes: 1 addition & 1 deletion view/frontend/templates/html/checkout/order/error.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $status = $block->getPaymentStatus();
<?php elseif ($status === 'payment_error' || $status === 'cms_internal_error'): ?>
<div class="fintecture-alert fintecture-alert-danger">
<img src="<?php echo $block->getViewFileUrl('Fintecture_HyvaPayment::images/error.svg'); ?>">
<p><?php echo __('A technical error has occurred. Please contact <a href="%1" target="_blank">the merchant</a> or Fintecture by email at <a href="mailto:%2">%2</a> or via <a href="%3" target="_blank">chat</a>.', $block->getUrl('contact'), 'support@fintecture.com', 'https:///help.fintecture.com'); ?></p>
<p><?php echo __('A technical error has occurred. Please contact <a href="%1" target="_blank">the merchant</a> or Fintecture by email at <a href="mailto:%2">%2</a> or via <a href="%3" target="_blank">chat</a>.', $block->getUrl('contact'), 'support@fintecture.com', 'https://help.fintecture.com'); ?></p>
</div>
<?php endif ?>
<?php endif ?>