This commit is contained in:
erwanlr
2023-03-19 19:28:09 +01:00
parent 63094494d3
commit fb812554f3
112 changed files with 110709 additions and 9 deletions

View File

@@ -0,0 +1,121 @@
*** DePay Web3 Payments for WooCommerce Changelog ***
2023-3-11 - version 1.15.6
* fixes FIAT & USD conversion (UI/Widget)
2023-3-10 - version 1.15.5
* fix timing issue with callbacks (internal)
2023-3-10 - version 1.15.4
* fix warning when forwarding to order confirmation
2023-3-10 - version 1.15.3
* update widgets to prevent page reload during pending payment
2023-3-10 - version 1.15.2
* update widgets to improve "Connect a wallet"
* improve payment tracing
* log payment validation errors
2023-3-2 - version 1.15.1
* fixes problem with Coinbase wallet
2023-2-28 - version 1.15.0
* update widgets + add react token image to display token images in admin section properly
2023-2-27 - version 1.14.0
* updates widgets: Improves "Connect a wallet"
2023-2-25 - version 1.13.0
* New and improved "Connect a wallet"
2023-2-11 - version 1.12.0
* add option to switch displayed currency (within payment widget)
2023-2-11 - version 1.11.7
* fix: checkout with enabled token denomination & reload checkout if page reloaded
2023-2-10 - version 1.11.6
* fix: only manual switch for WooCommerce currency
2023-2-6 - version 1.11.5
* fix: allow payments on "Customer payment page"
2023-2-6 - version 1.11.4
* upgrade widgets to v9.3.1
2023-1-31 - version 1.11.3
* fixes wordpress.org meta data
2023-1-30 - version 1.11.2
* update wording for unsupported token warning
2023-1-28 - version 1.11.1
* fix: already set token denomination upon adding the option for the first time
2023-1-27 - version 1.11.0
* adds crypto/token denomination
2023-1-26 - version 1.10.1
* fix prevent error if initial token selection is empty
2023-1-26 - version 1.10.0
* Adds help to make the right token selection in settings
* Allows to change payment method name (DePay, Web3, Crypto)
* Allows to add an additional payment method description for checkout
* Improves checkout performance
* Checks if required packages are installed (bcmath)
2023-1-21 - version 1.9.7
* fix update values for track follows trace
2023-1-21 - version 1.9.6
* fix timing of visual payment confirmation
2023-1-21 - version 1.9.5
* prevent E numbers (prevent floatval)
2023-1-17 - version 1.9.4
* fix rounding issue
2023-1-9 - version 1.9.3
* fix vertical alignment of blockchain icons (checkout)
2023-1-7 - version 1.9.2
* fix fetch transactions (admin)
2023-1-7 - version 1.9.1
* hide pending transactions in the admin "transactions" tab
2023-1-6 - version 1.9.0
* upgrades widgets to v9
2022-12-29 - version 1.8.1
* fix: properly align blockchain logos during checkout
2022-12-12 - version 1.8.0
* adds logs
2022-12-12 - version 1.7.0
* add CURL, POST and GET status to debug
2022-12-9 - version 1.6.0
* adds debug endpoint
2022-12-9 - version 1.5.4
* fix token price conversions
2022-12-9 - version 1.5.3
* fix: use correct data types for uuids
2022-12-9 - version 1.5.2
* fix: prevent caching for fetching accepted payments during checkout
2022-11-3 - version 1.5.1
* fix: allows to disable depay payment gateway in woocommerce
2022-10-19 - version 1.5.0
* Listing on WooCommerce
2022-10-18 - version 1.0.0
* Initial release

View File

@@ -0,0 +1,68 @@
{
"name": "@depay/web3-woocommerce-depay-payments",
"moduleName": "WooCommerceDePayPayments",
"version": "1.15.6",
"description": "WooCommerce DePay plugin to accept Web3 payments directly into your wallet with on-the-fly conversion.",
"main": "./dist/umd/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.build.config.js",
"release": "git push && node release.js",
"update:version": "node update-version.js"
},
"repository": "git@github.com:DePayFi/web3-woocommerce-depay-payments.git",
"keywords": [
"WooCommerce",
"ecommerce",
"web3",
"payments",
"cryptocurrencies"
],
"author": "depay.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/DePayFi/web3-woocommerce-depay-payments/issues"
},
"homepage": "https://github.com/DePayFi/web3-woocommerce-depay-payments#readme",
"private": false,
"dependencies": {
"@depay/web3-blockchains": "^6.1.0",
"@depay/widgets": "^7.16.5"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@depay/web3-constants": "^6.2.1",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-sucrase": "^3.1.0",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^7.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"open-file-explorer": "^1.0.2",
"prompt": "^1.3.0",
"react": "^18",
"react-dom": "^18",
"react-test-renderer": "^18",
"react-testing-library": "^8.0.1",
"replace-in-file": "^6.3.5",
"rollup": "^2.34.2",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"webpack": "^5.74.0"
}
}

View File

@@ -0,0 +1,14 @@
# Copyright (C) 2022 DePay
# This file is distributed under the same license as the package.
msgid ""
msgstr ""
"Project-Id-Version: DePay WooCommerce Payments 1.15.6\n"
"Report-Msgid-Bugs-To: "
"support@depay.com\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "Starting DePay Payment"
msgstr "Starting DePay Payment"