Skip to content

Commit

Permalink
[REL] 14.0.0.10: minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
odoo-mvds committed Jun 3, 2022
1 parent 73bac83 commit 8f68430
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
Binary file modified mollie_account_sync/static/description/mollie_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion payment_mollie_official/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{
'name': 'Mollie Payments',
'version': '14.0.0.9',
'version': '14.0.0.10',
'category': 'eCommerce',
'license': 'LGPL-3',
'author': 'Mollie',
Expand Down
4 changes: 2 additions & 2 deletions payment_mollie_official/models/payment_acquirer.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class PaymentAcquirerMollie(models.Model):
mollie_voucher_ids = fields.One2many('mollie.voucher.line', 'acquirer_id', string='Mollie Voucher Config')
mollie_voucher_enabled = fields.Boolean(compute="_compute_mollie_voucher_enabled")

mollie_use_components = fields.Boolean(string='Mollie Components')
mollie_use_components = fields.Boolean(string='Mollie Components', default=True)
mollie_show_save_card = fields.Boolean(string='Single-Click payments')

def _get_feature_support(self):
Expand Down Expand Up @@ -657,7 +657,7 @@ def _mollie_get_supported_locale(self):
'es_ES', 'ca_ES', 'pt_PT', 'it_IT',
'nb_NO', 'sv_SE', 'fi_FI', 'da_DK',
'is_IS', 'hu_HU', 'pl_PL', 'lv_LV',
'lt_LT']
'lt_LT', 'en_GB']

def _mollie_redirect_url(self, tx_id):
base_url = self.get_base_url()
Expand Down
8 changes: 8 additions & 0 deletions payment_mollie_official/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,14 @@ <h1 style="color: #000;font-weight: bold;/* font-size: 50px; */" class="mt-5 tex
<span style="width:73px;height: 10px;display:inline-block;border-radius: 4px;background-color: #0077ff;"> </span>
</div>

<div class="card mx-auto w-md-75">
<div class="card-header bg-200">
<h4 class="m-0">v14.0.0.10</h4>
</div>
<div class="card-body">
<div> <b class="text-warning"> UPDATE </b> Minor improvements. </div>
</div>
</div>
<div class="card mx-auto w-md-75">
<div class="card-header bg-200">
<h4 class="m-0">v14.0.0.9</h4>
Expand Down

0 comments on commit 8f68430

Please sign in to comment.