commit 8a7012d22176490b1719a3916d4ee434a9d4fa41
parent 0e26f0ef8945b486a65ac27eb6bf354c57b9e7ea
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Sat, 31 May 2025 17:50:20 +0200
clarify that the token is not the password
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/class-wc-gnutaler-gateway.php b/class-wc-gnutaler-gateway.php
@@ -9,7 +9,7 @@
* Plugin Name: GNU Taler Payment for WooCommerce
* Plugin URI: https://git.taler.net/woocommerce-taler
* Description: This plugin enables payments via the GNU Taler payment system
- * Version: 0.9.4
+ * Version: 1.0.0
* Author: Dominique Hofmann, Jan StrĂ¼bin, Christian Grothoff
* Author URI: https://taler.net/
*
@@ -37,12 +37,12 @@
* Which version of the Taler merchant protocol is implemented
* by this implementation? Used to determine compatibility.
*/
-define( 'GNU_TALER_MERCHANT_PROTOCOL_CURRENT', 16 );
+define( 'GNU_TALER_MERCHANT_PROTOCOL_CURRENT', 18 );
/**
* How many merchant protocol versions are we backwards compatible with?
*/
-define( 'GNU_TALER_MERCHANT_PROTOCOL_AGE', 0 );
+define( 'GNU_TALER_MERCHANT_PROTOCOL_AGE', 2 );
require_once ABSPATH . 'wp-admin/includes/plugin.php';
@@ -236,12 +236,12 @@ function gnutaler_init_gateway_class() {
'title' => __( 'Taler backend URL', 'gnutaler' ),
'type' => 'text',
'description' => __( 'Set the URL of the Taler backend. (Example: https://backend.demo.taler.net/)', 'gnutaler' ),
- 'default' => 'http://backend.demo.taler.net/instances/pos/',
+ 'default' => 'http://backend.demo.taler.net/instances/sandbox/',
),
'GNU_Taler_Backend_API_Key' => array(
'title' => __( 'Taler Backend API Key', 'gnutaler' ),
'type' => 'text',
- 'description' => __( 'Enter your API key to authenticate with the Taler backend. Will be sent as a "Bearer" token using the HTTP "Authorization" header. Typically should be prefixed with "secret-token:" (RFC 8959).', 'gnutaler' ),
+ 'description' => __( 'Enter your API key to authenticate with the Taler backend. Will be sent as a "Bearer" token using the HTTP "Authorization" header. Must be prefixed with "secret-token:" (RFC 8959). This is not your password but a token to be obtained via the /token endpoint from the REST service.', 'gnutaler' ),
'default' => 'secret-token:Sandbox ApiKey',
),
'Order_text' => array(