Skip to content

Commit

Permalink
Merge pull request #86 from Bit-Apps-Pro/rishad-dev-tmp
Browse files Browse the repository at this point in the history
version updated to 2.4.7
  • Loading branch information
RishadAlam authored Feb 5, 2025
2 parents 2bf7c8d + 7306799 commit 0b74414
Show file tree
Hide file tree
Showing 13 changed files with 147 additions and 106 deletions.
4 changes: 2 additions & 2 deletions bitwpfi.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: Bit Integrations
* Plugin URI: https://bitapps.pro/bit-integrations
* Description: Bit Integrations is a platform that integrates with over 250+ different platforms to help with various tasks on your WordPress site, like WooCommerce, Form builder, Page builder, LMS, Sales funnels, Bookings, CRM, Webhooks, Email marketing, Social media and Spreadsheets, etc
* Version: 2.4.6
* Version: 2.4.7
* Author: Automation & Integration Plugin - Bit Apps
* Author URI: https://bitapps.pro
* Text Domain: bit-integrations
Expand All @@ -24,7 +24,7 @@
$btcbi_db_version = '1.1';

// Define most essential constants.
define('BTCBI_VERSION', '2.4.6');
define('BTCBI_VERSION', '2.4.7');
define('BTCBI_PLUGIN_MAIN_FILE', __FILE__);

require_once plugin_dir_path(__FILE__) . 'includes/loader.php';
Expand Down
7 changes: 6 additions & 1 deletion frontend-dev/src/Utils/StaticData/webhookIntegrations.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ export const customFormIntegrations = [
'FluentCommunity',
'Buddypress',
'NinjaTables',
'AdvancedAds'
'AdvancedAds',
'AdvancedCoupons',
'AppointmentHourBooking',
'BetterMessages',
'ConvertPro',
'FunnelKitAutomations',
]

export const actionHookIntegrations = ['ActionHook']
Expand Down
14 changes: 10 additions & 4 deletions frontend-dev/src/pages/ChangelogToggle.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function ChangelogToggle() {

// const source = !btcbi.isPro ? 'bit-integrations' : 'bit-integrations-pro'
// const dealURL = `https://bitapps.pro/new-year-deal/#bit-integrations-pricing`
const releaseDate = '3rd February 2025'
const releaseDate = '5th February 2025'

// Changelog items format [{ 'label': '', 'desc': '', 'isPro': true }]
const changeLog = [
Expand All @@ -38,19 +38,25 @@ export default function ChangelogToggle() {
label: __('New Triggers', 'bit-integrations'),
headClass: 'new-trigger',
itemClass: 'integration-list',
items: []
items: [
{ 'label': 'Advanced Coupons for WooCommerce', 'desc': '', 'isPro': true },
{ 'label': 'Appointment Hour Booking', 'desc': '', 'isPro': true },
{ 'label': 'Better Messages', 'desc': '', 'isPro': true },
{ 'label': 'Convert Pro', 'desc': '', 'isPro': true },
{ 'label': 'FunnelKit Automations CRM', 'desc': '', 'isPro': true },
]
},
{
label: __('New Features', 'bit-integrations'),
headClass: 'new-feature',
itemClass: 'feature-list',
items: [{ 'label': 'MailPoet', 'desc': 'Added the update subscriber feature.', 'isPro': true }]
items: []
},
{
label: __('New Improvements', 'bit-integrations'),
headClass: 'new-improvement',
itemClass: 'feature-list',
items: [{ 'label': 'MailChimp', 'desc': 'Fetching of fields has been maximized.', 'isPro': false }]
items: []
}
]

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion includes/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Config

public const VAR_PREFIX = 'btcbi_';

public const VERSION = '2.4.6';
public const VERSION = '2.4.7';

public const DB_VERSION = '1.0';

Expand Down
191 changes: 98 additions & 93 deletions includes/Core/Util/AllTriggersName.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion includes/Core/Util/Helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ public static function setTestData($optionKey, $formData, $primaryKey = null, $p
public static function prepareFetchFormatFields(array $data, $path = '', $formattedData = [])
{
foreach ($data as $key => $value) {
if (ctype_upper($key)) {
if (\is_string($key) && ctype_upper($key)) {
$key = strtolower($key);
}

Expand Down
6 changes: 3 additions & 3 deletions includes/Triggers/WC/WCController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

namespace BitCode\FI\Triggers\WC;

use BitCode\FI\Core\Util\Helper;
use BitCode\FI\Flow\Flow;
use WC_Booking;
use WC_Checkout;
use WC_Product_Simple;
use BitCode\FI\Flow\Flow;
use WC_Subscriptions_Product;
use BitCode\FI\Core\Util\Helper;

final class WCController
{
Expand All @@ -20,7 +20,7 @@ public static function info()
$plugin_path = 'woocommerce/woocommerce.php';

return [
'name' => 'Woocommerce',
'name' => 'WooCommerce',
'title' => __('WooCommerce is the world’s most popular open-source eCommerce solution', 'bit-integrations'),
'slug' => $plugin_path,
'pro' => 'woocommerce/woocommerce.php',
Expand Down
27 changes: 26 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: automation,forms,integration,automator,webhooks
Requires at least: 5.1
Tested up to: 6.7.1
Requires PHP: 7.4
Stable tag: 2.4.6
Stable tag: 2.4.7
License: GPLv2 or later

Automation Plugin for WordPress. Integration of 90+ Triggers & 150+ Actions.The #1 highest no-code platform Automator plugin in WordPress
Expand Down Expand Up @@ -56,6 +56,8 @@ https://youtu.be/eFuficjF_F4
* [**Thrive Apprentice**](https://thrivethemes.com/apprentice/) (pro)
* [**Academy LMS**](https://wordpress.org/plugins/academy/) (pro)
* [**Advanced Ads**](https://wordpress.org/plugins/advanced-ads/) (pro)
* [**Advanced Coupons For WooCommerce**](https://wordpress.org/plugins/advanced-coupons-for-woocommerce-free/) (pro)
* [**Appointment Hour Booking**](https://wordpress.org/plugins/appointment-hour-booking/) (pro)
* [**Asgaros Forum**](https://wordpress.org/plugins/asgaros-forum/) (pro)
* [**Amelia**](https://wordpress.org/plugins/ameliabooking/) (pro)
* [**Action Hook**](https://bitapps.pro/docs/bit-integrations/trigger/action-hook-integrations/) (pro)
Expand All @@ -64,6 +66,7 @@ https://youtu.be/eFuficjF_F4
* [**ARMember**](https://wordpress.org/plugins/armember-membership/) (pro)
* [**Avada Forms**](https://avada.com/feature/form-builder/) (pro)
* [**Beaver Builder**](https://wordpress.org/plugins/beaver-builder-lite-version/) (pro)
* [**Better Messages**](https://wordpress.org/plugins/bp-better-messages/) (pro)
* [**Bricks**](https://wordpress.org/plugins/bricksable/) (pro)
* [**Bricksforge**](https://bricksforge.io/) (pro)
* [**BuddyBoss**](https://www.buddyboss.com/) (pro)
Expand All @@ -72,6 +75,7 @@ https://youtu.be/eFuficjF_F4
* [**Breakdance**](https://breakdance.com/) (pro)
* [**CartFlows**](https://wordpress.org/plugins/cartflows/) (pro)
* [**CoBlocks**](https://wordpress.org/plugins/coblocks/) (pro)
* [**Convert Pro**](https://www.convertpro.net/) (pro)
* [**Custom Trigger**](https://bitapps.pro/docs/bit-integrations/trigger/custom-trigger-integrations/) (pro)
* [**Divi**](https://www.elegantthemes.com/gallery/divi/) (pro)
* [**Divi Form Builder**](https://bit-integrations.com/wp-docs/trigger/divi-form-builder-by-divi-engine-integrations/) (pro)
Expand All @@ -85,6 +89,7 @@ https://youtu.be/eFuficjF_F4
* [**Fluent Booking**](https://fluentbooking.com/) (pro)
* [**Fluent CRM**](https://wordpress.org/plugins/fluent-crm/) (pro)
* [**Fluent Support**](https://wordpress.org/plugins/fluent-support/) (pro)
* [**FunnelKit Automations CRM**](https://wordpress.org/plugins/wp-marketing-automations/) (pro)
* [**Forminator**](https://wordpress.org/plugins/forminator/) (pro)
* [**FormCraft**](https://wordpress.org/plugins/formcraft-form-builder/) (pro)
* [**Gravity Forms**](https://www.gravityforms.com/) (pro)
Expand Down Expand Up @@ -675,6 +680,10 @@ Please check [**Bit Integrations Pro**](https://www.bitapps.pro/bit-integrations

* [**Advanced Ads**](https://bit-integrations.com/wp-docs/trigger/advanced-ads-integrations/)

* [**Advanced Coupons for WooCommerce**](https://bit-integrations.com/wp-docs/trigger/advanced-coupons-integrations/)

* [**Appointment Hour Booking**](https://bit-integrations.com/wp-docs/trigger/appointment-hour-booking-integrations/)

* [**Asgaros Forum**](https://bit-integrations.com/wp-docs/trigger/asgaros-forum-integrations/)

* [**Avada Forms**](https://bit-integrations.com/wp-docs/trigger/avada-forms-integrations/)
Expand All @@ -687,6 +696,8 @@ Please check [**Bit Integrations Pro**](https://www.bitapps.pro/bit-integrations

* [**Beaver Builder**](https://bitapps.pro/docs/bit-integrations/trigger/beaver-builder/)

* [**Better Messages**](https://bit-integrations.com/wp-docs/trigger/better-messages-integrations/)

* [**Bit Assist**](https://bitapps.pro/docs/bit-integrations/trigger/bit-assist/)

* [**Bit Form**](https://bit-integrations.com/wp-docs/trigger/bit-form-integrations-as-a-trigger/)
Expand All @@ -707,6 +718,8 @@ Please check [**Bit Integrations Pro**](https://www.bitapps.pro/bit-integrations

* [**CoBlocks**](https://bitapps.pro/docs/bit-integrations/trigger/coblocks-integrations/)

* [**Convert Pro**](https://bit-integrations.com/wp-docs/trigger/convert-pro-integrations/)

* [**Contact Form 7**](https://bitapps.pro/docs/bit-integrations/trigger/contact-form/)

* [**Custom Trigger**](https://bit-integrations.com/wp-docs/trigger/custom-trigger-integrations/)
Expand Down Expand Up @@ -739,6 +752,8 @@ Please check [**Bit Integrations Pro**](https://www.bitapps.pro/bit-integrations

* [**Fluent Support**](https://bitapps.pro/docs/bit-integrations/trigger/fluent-support/)

* [**FunnelKit Automations CRM**](https://bit-integrations.com/wp-docs/trigger/funnelkit-automation-integrations/)

* [**FormCraft**](https://bitapps.pro/docs/bit-integrations/trigger/formcraft/)

* [**Formidable Forms**](https://bitapps.pro/docs/bit-integrations/trigger/formidable-forms/)
Expand Down Expand Up @@ -1223,6 +1238,16 @@ Yes, It sends data to other platforms from wordpress site. Suppose someone submi

== Changelog ==

= 2.4.7 =
_Release Date -5th February 2025_

- **New Trigger**
- Advanced Coupons for WooCommerce: The Best WooCommerce Coupon Plugin. (Pro)
- Appointment Hour Booking: WordPress Booking Plugin. (Pro)
- Better Messages: Realtime private messaging system for WordPress. (Pro)
- Convert Pro: The Best Lead Generation Tool for WordPress. (Pro)
- FunnelKit Automations CRM: WordPress Marketing Automation Engine. (Pro)

= 2.4.6 =
_Release Date -3rd February 2025_

Expand Down

0 comments on commit 0b74414

Please sign in to comment.