Changeset 3236948
- Timestamp:
- 02/08/2025 12:19:47 PM (14 months ago)
- Location:
- anka-commerce/trunk
- Files:
-
- 6 edited
-
README.md (modified) (2 diffs)
-
anka-commerce.php (modified) (4 diffs)
-
languages/anka-commerce-fr_FR.mo (modified) (previous)
-
languages/anka-commerce-fr_FR.po (modified) (1 diff)
-
languages/anka-commerce.pot (modified) (1 diff)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
anka-commerce/trunk/README.md
r3201011 r3236948 7 7 **Tested up to**: 6.7 8 8 **Requires PHP**: 7.2 9 **Stable tag**: 1.1. 09 **Stable tag**: 1.1.1 10 10 **License**: GPLv3 or later 11 11 **License URI**: [http://www.gnu.org/licenses/gpl-3.0.html](http://www.gnu.org/licenses/gpl-3.0.html) … … 127 127 ## Changelog 128 128 129 ### 1.1.1 130 131 - Fix incorrect address selection logic 132 129 133 ### 1.1.0 130 134 -
anka-commerce/trunk/anka-commerce.php
r3201455 r3236948 3 3 * Plugin Name: ANKA Commerce 4 4 * Description: Accept payments through ANKA Pay using Credit Cards, Mobile Money, Nigerian Bank Transfer, and PayPal on your WooCommerce store or Payment buttons. 5 * Version: 1.1. 05 * Version: 1.1.1 6 6 * Text Domain: anka-commerce 7 7 * Domain Path: /languages … … 16 16 define( 'ANKA_COMMERCE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 17 17 define( 'ANKA_COMMERCE_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 18 define( 'ANKA_COMMERCE_VERSION', '1.1.0' ); 19 define( 'ANKA_COMMERCE_DB_VERSION', '1.1.0' ); 18 define( 'ANKA_COMMERCE_VERSION', '1.1.1' ); 20 19 21 20 require_once ANKA_COMMERCE_PLUGIN_DIR . 'includes/migration/anka-commerce-migrations.php'; … … 42 41 // Load the plugin textdomain. 43 42 add_action( 'plugins_loaded', array( __CLASS__, 'anka_commerce_load_plugin_textdomain' ) ); 44 45 // Update plugin version in the database.46 add_action( 'plugins_loaded', array( __CLASS__, 'anka_commerce_update_database' ) );47 43 48 44 // Register the uninstall hook to run rollback_all_migrations when the plugin is uninstalled. … … 130 126 load_plugin_textdomain( 'anka-commerce', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' ); 131 127 } 132 133 /**134 * Update plugin version in the database.135 */136 public static function anka_commerce_update_database() {137 $installed_db_version = get_option('anka_commerce_db_version');138 139 if ($installed_db_version !== ANKA_COMMERCE_DB_VERSION) {140 self::activate();141 Anka_Commerce_Payment_Button::anka_commerce_payment_button_create_success_page();142 143 update_option('anka_commerce_db_version', ANKA_COMMERCE_DB_VERSION);144 }145 }146 128 } 147 129 -
anka-commerce/trunk/languages/anka-commerce-fr_FR.po
r3201011 r3236948 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: ANKA Commerce 1.1. 0\n"5 "Project-Id-Version: ANKA Commerce 1.1.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/anka-commerce\n" 7 7 "POT-Creation-Date: 2024-12-02T07:31:13+00:00\n" -
anka-commerce/trunk/languages/anka-commerce.pot
r3201011 r3236948 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: ANKA Commerce 1.1. 0\n"5 "Project-Id-Version: ANKA Commerce 1.1.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/anka-commerce\n" 7 7 "Last-Translator: David Dossou david@anka.africa\n" -
anka-commerce/trunk/readme.txt
r3201011 r3236948 1 1 === ANKA Commerce === 2 2 Contributors: daviddossou 3 Tags: WordPress, WooCommerce, Payment gateway, eCommerce, Payment button3 Tags: WordPress, WooCommerce, Payment gateway, ANKA Pay, eCommerce, Payment button, Services 4 4 Donate link: https://www.anka.africa/en/special-offer 5 5 Requires at least: 5.0 6 6 Tested up to: 6.7 7 7 Requires PHP: 7.2 8 Stable tag: 1.1. 08 Stable tag: 1.1.1 9 9 License: GPLv3 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html 11 11 12 Accept payments through ANKA Pay using Credit Cards, Mobile Money, Nigerian Bank Transfer, and PayPal on your WooCommerce store or Payment buttons.12 Accept payments through ANKA Pay on your WordPress website using Payment Buttons or WooCommerce integration. Supports Credit Cards, Mobile Money, Nigerian Bank Transfer, and PayPal payment methods. 13 13 14 14 == Description == … … 19 19 In order to use ANKA Pay, make sure you have an active account on [ANKA Africa](https://www.anka.africa). 20 20 21 With the **1.1. 0** version, we’ve expanded the plugin's functionality to include **Payment Buttons**, allowing websites without WooCommerce to generate ANKA payment links easily and streamline their payment processes.21 With the **1.1.1** version, we’ve expanded the plugin's functionality to include **Payment Buttons**, allowing websites without WooCommerce to generate ANKA payment links easily and streamline their payment processes. 22 22 23 23 = Key Features = … … 119 119 120 120 == Changelog == 121 = 1.1.1 = 122 * Fix incorrect address selection logic 123 121 124 = 1.1.0 = 122 125 * Added support for **Payment Buttons** for non-WooCommerce websites. … … 130 133 131 134 == Upgrade Notice == 132 Upgrade to version 1.1. 0 to enable Payment Buttons, direct checkout, and enhanced features.135 Upgrade to version 1.1.1 to fix incorrect shipping and billing address selection logic, ensuring accurate order processing. This update also includes minor performance improvements and stability enhancements.
Note: See TracChangeset
for help on using the changeset viewer.