Plugin Directory

Changeset 2990582


Ignore:
Timestamp:
11/07/2023 09:42:17 AM (2 years ago)
Author:
bluempaymentservices
Message:

1.3.17.13: Stability fixes.

Location:
bluem
Files:
1332 added
4 edited

Legend:

Unmodified
Added
Removed
  • bluem/trunk/README.md

    r2989450 r2990582  
    197197Our plug-in will store the above data in the fields with the corresponding names.
    198198
     199# Development
     200
     201## Docker
     202The Dockerfile within this package is used to run composer with a specific PHP version.
     203Please follow the steps below to build a Docker environment and run composer.
     204
     2051) Build the Docker environment.
     206```shell
     207docker build -t my-php8-composer .
     208```
     2092) Run composer in the created Docker environment.
     210```shell
     211docker run --rm -v $(pwd):/var/www my-php8-composer composer show
     212```
     2133) Prepare plug-in dependencies before deployment.
     214```shell
     215docker run --rm -v $(pwd):/var/www my-php8-composer composer update --no-dev
     216```
     217
    199218# Support
    200219If you have any questions, please email [[email protected]](mailto:[email protected]).
  • bluem/trunk/bluem.php

    r2989450 r2990582  
    22/**
    33 * Plugin Name: Bluem ePayments, iDIN and eMandates integration for shortcodes and WooCommerce checkout
    4  * Version: 1.3.17.12
     4 * Version: 1.3.17.13
    55 * Plugin URI: https://wordpress.org/plugins/bluem
    66 * Description: Bluem integration for WordPress and WooCommerce to facilitate Bluem services inside your site. Payments and eMandates payment gateway and iDIN identity verification
     
    788788        add_settings_section(
    789789            'bluem_woocommerce_modules_section',
    790             _( 'Manage components of this plugin', 'bluem' ),
     790            __( 'Manage components of this plugin', 'bluem' ),
    791791            'bluem_woocommerce_modules_settings_section',
    792792            'bluem_woocommerce'
     
    794794        add_settings_field(
    795795            "mandates_enabled",
    796             _( "eMandates active", 'bluem' ),
     796            __( "eMandates active", 'bluem' ),
    797797            "bluem_woocommerce_modules_render_mandates_activation",
    798798            "bluem_woocommerce",
     
    801801        add_settings_field(
    802802            "payments_enabled",
    803             _( "ePayments active", 'bluem' ),
     803            __( "ePayments active", 'bluem' ),
    804804            "bluem_woocommerce_modules_render_payments_activation",
    805805            "bluem_woocommerce",
     
    808808        add_settings_field(
    809809            "idin_enabled",
    810             _( "iDIN active", 'bluem' ),
     810            __( "iDIN active", 'bluem' ),
    811811            "bluem_woocommerce_modules_render_idin_activation",
    812812            "bluem_woocommerce",
     
    815815        add_settings_field(
    816816            "suppress_warning",
    817             _( "Warn in admin environment if plugin has not yet been set up properly", 'bluem' ),
     817            __( "Warn in admin environment if plugin has not yet been set up properly", 'bluem' ),
    818818            "bluem_woocommerce_modules_render_suppress_warning",
    819819            "bluem_woocommerce",
     
    822822        add_settings_section(
    823823            'bluem_woocommerce_general_section',
    824             '<span class="dashicons dashicons-admin-settings"></span> ' . _( "General settings", 'bluem' ),
     824            '<span class="dashicons dashicons-admin-settings"></span> ' . __( "General settings", 'bluem' ),
    825825            'bluem_woocommerce_general_settings_section',
    826826            'bluem_woocommerce'
     
    841841        add_settings_section(
    842842            'bluem_woocommerce_mandates_section',
    843             '<span class="dashicons dashicons-money"></span> ' . _( "eMandates settings", 'bluem' ),
     843            '<span class="dashicons dashicons-money"></span> ' . __( "eMandates settings", 'bluem' ),
    844844            'bluem_woocommerce_mandates_settings_section',
    845845            'bluem_woocommerce'
     
    863863        add_settings_section(
    864864            'bluem_woocommerce_payments_section',
    865             '<span class="dashicons dashicons-money-alt"></span> ' . _( "ePayments settings", 'bluem' ),
     865            '<span class="dashicons dashicons-money-alt"></span> ' . __( "ePayments settings", 'bluem' ),
    866866            'bluem_woocommerce_payments_settings_section',
    867867            'bluem_woocommerce'
     
    886886        add_settings_section(
    887887            'bluem_woocommerce_idin_section',
    888             '<span class="dashicons dashicons-admin-users"></span> ' . _( "eIdentity settings", 'bluem' ),
     888            '<span class="dashicons dashicons-admin-users"></span> ' . __( "eIdentity settings", 'bluem' ),
    889889            'bluem_woocommerce_idin_settings_section',
    890890            'bluem_woocommerce'
     
    908908    add_settings_section(
    909909        'bluem_woocommerce_integrations_section',
    910         '<span class="dashicons dashicons-admin-plugins"></span> ' . _( "integration settings", 'bluem' ),
     910        '<span class="dashicons dashicons-admin-plugins"></span> ' . __( "integration settings", 'bluem' ),
    911911        'bluem_woocommerce_integrations_settings_section',
    912912        'bluem_woocommerce'
  • bluem/trunk/readme.txt

    r2989450 r2990582  
    66Tested up to: 6.3
    77Requires PHP: 7.4
    8 Stable tag: 1.3.17.12
     8Stable tag: 1.3.17.13
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7676
    7777== Changelog ==
     78- 1.3.17.13: Stability fixes.
    7879- 1.3.17.12: Stability fixes and improvements.
    7980- 1.3.17.11: Stability fixes.
  • bluem/trunk/vendor/composer/installed.php

    r2981398 r2990582  
    22    'root' => array(
    33        'name' => 'bluem-development/bluem-woocommerce',
    4         'pretty_version' => '1.0.0+no-version-set',
    5         'version' => '1.0.0.0',
    6         'reference' => NULL,
     4        'pretty_version' => 'dev-master',
     5        'version' => 'dev-master',
     6        'reference' => '29dad4fda5be47dbc3471362e13577085f91ec4a',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        'bluem-development/bluem-woocommerce' => array(
    23             'pretty_version' => '1.0.0+no-version-set',
    24             'version' => '1.0.0.0',
    25             'reference' => NULL,
     23            'pretty_version' => 'dev-master',
     24            'version' => 'dev-master',
     25            'reference' => '29dad4fda5be47dbc3471362e13577085f91ec4a',
    2626            'type' => 'library',
    2727            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.