Skip to content

Commit b905bc2

Browse files
committed
Release 2.1.26
1 parent 3e9c43b commit b905bc2

File tree

505 files changed

+6939
-1245
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

505 files changed

+6939
-1245
lines changed

.github/workflows/woo-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
echo $WORDPRESS_ORG_SLUG
2424
ls -ltrh
2525
git clone https://github.com/squizlabs/PHP_CodeSniffer.git phpcs;
26-
git clone -b master https://github.com/WordPress/WordPress-Coding-Standards.git wpcs;
26+
git clone -b main https://github.com/WordPress/WordPress-Coding-Standards.git wpcs;
2727
cd phpcs;
2828
./bin/phpcs --config-set installed_paths ../wpcs;
2929
cd ../;
@@ -65,4 +65,4 @@ jobs:
6565
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
6666
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
6767
ASSETS_DIR: ${{ vars.WORDPRESS_ORG_SLUG }}/build-woo/src
68-
SLUG: ${{ vars.WORDPRESS_ORG_SLUG }}
68+
SLUG: ${{ vars.WORDPRESS_ORG_SLUG }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This repository contains the PostFinance Checkout plugin that enables WooCommerc
1515

1616
## Documentation
1717

18-
* [Documentation](https://plugin-documentation.postfinance-checkout.ch/pfpayments/woocommerce/2.1.25/docs/en/documentation.html)
18+
* [Documentation](https://plugin-documentation.postfinance-checkout.ch/pfpayments/woocommerce/2.1.26/docs/en/documentation.html)
1919

2020
## Support
2121

@@ -24,4 +24,4 @@ Support queries can be issued on the [PostFinance Checkout support site](https:/
2424

2525
## License
2626

27-
Please see the [license file](https://github.com/pfpayments/woocommerce/blob/2.1.25/LICENSE) for more information.
27+
Please see the [license file](https://github.com/pfpayments/woocommerce/blob/2.1.26/LICENSE) for more information.

assets/css/admin.css

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@
33
*
44
* This WooCommerce plugin enables to process payments with PostFinance Checkout (https://postfinance.ch/en/business/products/e-commerce/postfinance-checkout-all-in-one.html).
55
*
6-
* @author wallee AG (http://www.wallee.com/)
6+
* @author postfinancecheckout AG (https://postfinance.ch/en/business/products/e-commerce/postfinance-checkout-all-in-one.html)
77
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache Software License (ASL 2.0)
88
*/
99
/* Icons for status */
1010
@font-face {
11-
font-family: 'woocommerce-wallee';
12-
src: url('../font/woocommerce-wallee.eot?8310684');
13-
src: url('../font/woocommerce-wallee.eot?8310684#iefix') format('embedded-opentype'),
14-
url('../font/woocommerce-wallee.woff2?8310684') format('woff2'),
15-
url('../font/woocommerce-wallee.woff?8310684') format('woff'),
16-
url('../font/woocommerce-wallee.ttf?8310684') format('truetype'),
17-
url('../font/woocommerce-wallee.svg?8310684#woocommerce-wallee') format('svg');
11+
font-family: 'woocommerce-postfinancecheckout';
12+
src: url('../font/woocommerce-postfinancecheckout.eot?8310684');
13+
src: url('../font/woocommerce-postfinancecheckout.eot?8310684#iefix') format('embedded-opentype'),
14+
url('../font/woocommerce-postfinancecheckout.woff2?8310684') format('woff2'),
15+
url('../font/woocommerce-postfinancecheckout.woff?8310684') format('woff'),
16+
url('../font/woocommerce-postfinancecheckout.ttf?8310684') format('truetype'),
17+
url('../font/woocommerce-postfinancecheckout.svg?8310684#woocommerce-postfinancecheckout') format('svg');
1818
font-weight: normal;
1919
font-style: normal;
2020
}
2121

2222
/* Status Icons */
2323
.widefat .column-order_status mark.postfi-redirected::after, .widefat .column-order_status mark.postfi-waiting::after,
2424
.widefat .column-order_status mark.postfi-manual::after {
25-
font-family: woocommerce-wallee;
25+
font-family: woocommerce-postfinancecheckout;
2626
speak: none;
2727
font-weight: 400;
2828
text-transform: none;
@@ -91,8 +91,8 @@
9191
width: 2em
9292
}
9393

94-
.order_actions .postfinancecheckout-button-download-invoice::after, .widefat .wc_actions .postfinancecheckout-action-button.wallee-button-download-invoice::after {
95-
font-family: woocommerce-wallee;
94+
.order_actions .postfinancecheckout-button-download-invoice::after, .widefat .wc_actions .postfinancecheckout-action-button.postfinancecheckout-button-download-invoice::after {
95+
font-family: woocommerce-postfinancecheckout;
9696
speak: none;
9797
font-weight: 400;
9898
text-transform: none;
@@ -109,8 +109,8 @@
109109
margin: 0px;
110110
}
111111

112-
.order_actions .postfinancecheckout-button-download-packingslip::after, .widefat .wc_actions .postfinancecheckout-action-button.wallee-button-download-packingslip::after {
113-
font-family: woocommerce-wallee;
112+
.order_actions .postfinancecheckout-button-download-packingslip::after, .widefat .wc_actions .postfinancecheckout-action-button.postfinancecheckout-button-download-packingslip::after {
113+
font-family: woocommerce-postfinancecheckout;
114114
speak: none;
115115
font-weight: 400;
116116
text-transform: none;

assets/css/checkout.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This WooCommerce plugin enables to process payments with PostFinance Checkout (https://postfinance.ch/en/business/products/e-commerce/postfinance-checkout-all-in-one.html).
55
*
6-
* @author wallee AG (http://www.wallee.com/)
6+
* @author postfinancecheckout AG (https://postfinance.ch/en/business/products/e-commerce/postfinance-checkout-all-in-one.html)
77
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache Software License (ASL 2.0)
88
*/
99
/* Order button disabled */

assets/js/admin/management.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This plugin will add support for all PostFinanceCheckout payments methods and connect the PostFinanceCheckout servers to your WooCommerce webshop (https://postfinance.ch/en/business/products/e-commerce/postfinance-checkout-all-in-one.html).
55
*
66
* @package PostFinanceCheckout
7-
* @author wallee AG (http://www.wallee.com/)
7+
* @author postfinancecheckout AG (https://postfinance.ch/en/business/products/e-commerce/postfinance-checkout-all-in-one.html)
88
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache Software License (ASL 2.0)
99
*/
1010

0 commit comments

Comments
 (0)