Version Description
- Fix - Encryption Library Classload fix
- Feature - Encryption for Direct Debit Gateway data
- Feature - Install German Formal Language (see Systemstatus > Germanized > Tools)
- Feature - Tool to delete Germanized Text Options (will we replaced by defaults)
- Fix - Double-Opt-In even if checkout shouldn't be disabled
- Fix - Trusted Shops Template SKU Parameter
- Fix - Trusted Shops Product Sticker Star Size
Download this release
Release Info
Developer | vendidero |
Plugin | WooCommerce Germanized |
Version | 1.6.4 |
Comparing to | |
See all releases |
Code changes from version 1.6.3 to 1.6.4
- readme.txt +10 -1
- woocommerce-germanized.php +3 -3
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: vendidero
|
|
3 |
Tags: woocommerce, german market, german, germany, deutsch, deutschland, de, de_DE, shop, commerce, e-commerce, ecommerce, woothemes, sepa, invoice
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 4.5
|
6 |
-
Stable tag: 1.6.
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -157,6 +157,15 @@ Bug reports may be filed via our [GitHub repository](https://github.com/vendider
|
|
157 |
|
158 |
== Changelog ==
|
159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
= 1.6.3 =
|
161 |
* Feature - Encryption for Direct Debit Gateway data
|
162 |
* Feature - Install German Formal Language (see Systemstatus > Germanized > Tools)
|
3 |
Tags: woocommerce, german market, german, germany, deutsch, deutschland, de, de_DE, shop, commerce, e-commerce, ecommerce, woothemes, sepa, invoice
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 4.5
|
6 |
+
Stable tag: 1.6.4
|
7 |
License: GPLv3
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
157 |
|
158 |
== Changelog ==
|
159 |
|
160 |
+
= 1.6.4 =
|
161 |
+
* Fix - Encryption Library Classload fix
|
162 |
+
* Feature - Encryption for Direct Debit Gateway data
|
163 |
+
* Feature - Install German Formal Language (see Systemstatus > Germanized > Tools)
|
164 |
+
* Feature - Tool to delete Germanized Text Options (will we replaced by defaults)
|
165 |
+
* Fix - Double-Opt-In even if checkout shouldn't be disabled
|
166 |
+
* Fix - Trusted Shops Template SKU Parameter
|
167 |
+
* Fix - Trusted Shops Product Sticker Star Size
|
168 |
+
|
169 |
= 1.6.3 =
|
170 |
* Feature - Encryption for Direct Debit Gateway data
|
171 |
* Feature - Install German Formal Language (see Systemstatus > Germanized > Tools)
|
woocommerce-germanized.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WooCommerce Germanized
|
4 |
* Plugin URI: https://www.vendidero.de/woocommerce-germanized
|
5 |
* Description: Extends WooCommerce to become a legally compliant store for the german market.
|
6 |
-
* Version: 1.6.
|
7 |
* Author: Vendidero
|
8 |
* Author URI: https://vendidero.de
|
9 |
* Requires at least: 3.8
|
@@ -26,7 +26,7 @@ final class WooCommerce_Germanized {
|
|
26 |
*
|
27 |
* @var string
|
28 |
*/
|
29 |
-
public $version = '1.6.
|
30 |
|
31 |
/**
|
32 |
* Single instance of WooCommerce Germanized Main Class
|
@@ -234,7 +234,7 @@ final class WooCommerce_Germanized {
|
|
234 |
$path = $this->plugin_path() . '/includes/trusted-shops/';
|
235 |
else if ( strpos( $class, 'defuse\crypto' ) !== false ) {
|
236 |
$path = $this->plugin_path() . '/includes/gateways/direct-debit/libraries/php-encryption/';
|
237 |
-
$file = str_replace( 'defuse/crypto/', '', str_replace( '\\', '/', $class ) ) . '.php';
|
238 |
}
|
239 |
|
240 |
if ( $path && is_readable( $path . $file ) ) {
|
3 |
* Plugin Name: WooCommerce Germanized
|
4 |
* Plugin URI: https://www.vendidero.de/woocommerce-germanized
|
5 |
* Description: Extends WooCommerce to become a legally compliant store for the german market.
|
6 |
+
* Version: 1.6.4
|
7 |
* Author: Vendidero
|
8 |
* Author URI: https://vendidero.de
|
9 |
* Requires at least: 3.8
|
26 |
*
|
27 |
* @var string
|
28 |
*/
|
29 |
+
public $version = '1.6.4';
|
30 |
|
31 |
/**
|
32 |
* Single instance of WooCommerce Germanized Main Class
|
234 |
$path = $this->plugin_path() . '/includes/trusted-shops/';
|
235 |
else if ( strpos( $class, 'defuse\crypto' ) !== false ) {
|
236 |
$path = $this->plugin_path() . '/includes/gateways/direct-debit/libraries/php-encryption/';
|
237 |
+
$file = ucfirst( str_replace( 'defuse/crypto/', '', str_replace( '\\', '/', $class ) ) . '.php' );
|
238 |
}
|
239 |
|
240 |
if ( $path && is_readable( $path . $file ) ) {
|