Skip to content

Commit 6b33b0c

Browse files
committed
chore: version updated to v2.7.1
1 parent 5f552c5 commit 6b33b0c

File tree

5 files changed

+74
-48
lines changed

5 files changed

+74
-48
lines changed

bitwpfi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin Name: Bit Integrations
55
* Plugin URI: https://bitapps.pro/bit-integrations
66
* Description: Bit Integrations is a platform that integrates with over 300+ 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
7-
* Version: 2.7.0
7+
* Version: 2.7.1
88
* Author: Automation & Integration Plugin - Bit Apps
99
* Author URI: https://bitapps.pro
1010
* Text Domain: bit-integrations
@@ -24,7 +24,7 @@
2424
$btcbi_db_version = '1.1';
2525

2626
// Define most essential constants.
27-
define('BTCBI_VERSION', '2.7.0');
27+
define('BTCBI_VERSION', '2.7.1');
2828
define('BTCBI_PLUGIN_MAIN_FILE', __FILE__);
2929

3030
require_once plugin_dir_path(__FILE__) . 'includes/loader.php';

frontend-dev/src/components/AllIntegrations/Telegram/TelegramAuthorization.jsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default function TelegramAuthorization({
3434
}
3535
setIsLoading('auth')
3636
const requestParams = { bot_api_key: newConf.bot_api_key }
37-
bitsFetch(requestParams, 'telegram_authorize').then((result) => {
37+
bitsFetch(requestParams, 'telegram_authorize').then(result => {
3838
if (result?.success) {
3939
setisAuthorized(true)
4040
setSnackbar({ show: true, msg: __('Authorized Successfully', 'bit-integrations') })
@@ -47,7 +47,7 @@ export default function TelegramAuthorization({
4747
setIsLoading(false)
4848
})
4949
}
50-
const handleInput = (e) => {
50+
const handleInput = e => {
5151
const newConf = { ...telegramConf }
5252
const rmError = { ...error }
5353
rmError[e.target.name] = ''
@@ -68,9 +68,7 @@ export default function TelegramAuthorization({
6868
<div
6969
className="btcd-stp-page"
7070
style={{ ...{ width: step === 1 && 900 }, ...{ height: step === 1 && 'auto' } }}>
71-
{telegram?.youTubeLink && (
72-
<TutorialLink title="Telegram" youTubeLink={telegram?.youTubeLink} />
73-
)}
71+
{telegram?.youTubeLink && <TutorialLink title="Telegram" youTubeLink={telegram?.youTubeLink} />}
7472
{telegram?.docLink && <TutorialLink title="Telegram" docLink={telegram?.docLink} />}
7573

7674
<div className="mt-3">
@@ -95,7 +93,7 @@ export default function TelegramAuthorization({
9593
name="bot_api_key"
9694
value={telegramConf.bot_api_key}
9795
type="text"
98-
placeholder={__('Integration Name...', 'bit-integrations')}
96+
placeholder={__('Bot API Key...', 'bit-integrations')}
9997
disabled={isInfo}
10098
/>
10199
<div style={{ color: 'red', fontSize: '15px', marginTop: '5px' }}>{error.bot_api_key}</div>

frontend-dev/src/pages/ChangelogToggle.jsx

Lines changed: 49 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { __, sprintf } from '../Utils/i18nwrap'
1111

1212
// const source = !btcbi.isPro ? 'bit-integrations' : 'bit-integrations-pro'
1313
// const dealURL = `https://bitapps.pro/new-year-deal/#bit-integrations-pricing`
14-
const releaseDate = '14th October 2025'
14+
const releaseDate = '08th November 2025'
1515

1616
// Changelog items format [{ 'label': '', 'desc': '', 'isPro': true }]
1717
const changeLog = [
@@ -25,63 +25,74 @@ const changeLog = [
2525
label: __('New Actions', 'bit-integrations'),
2626
headClass: 'new-integration',
2727
itemClass: 'integration-list',
28-
items: [
29-
{
30-
label: 'Wishlist Member',
31-
desc: '08 new events added.',
32-
isPro: false
33-
}
34-
]
28+
items: []
3529
},
3630
{
3731
label: __('New Triggers', 'bit-integrations'),
3832
headClass: 'new-trigger',
3933
itemClass: 'integration-list',
40-
items: [
41-
{
42-
label: 'Wishlist Member',
43-
desc: '06 new events added.',
44-
isPro: true
45-
},
46-
{
47-
label: 'FluentCart',
48-
desc: '17 new events added.',
49-
isPro: true
50-
},
51-
{
52-
label: 'Mail Mint',
53-
desc: '07 new events added.',
54-
isPro: true
55-
},
56-
{
57-
label: 'Contact Form Email',
58-
desc: '01 new events added.',
59-
isPro: true
60-
},
61-
{
62-
label: 'Booking Calendar Contact Form',
63-
desc: '01 new events added.',
64-
isPro: true
65-
}
66-
]
34+
items: []
6735
},
6836
{
6937
label: __('New Features', 'bit-integrations'),
7038
headClass: 'new-feature',
7139
itemClass: 'feature-list',
72-
items: []
40+
items: [
41+
{
42+
label: 'MemberPress',
43+
desc: 'Added support for user custom fields to extend integration flexibility.',
44+
isPro: true
45+
}
46+
]
7347
},
7448
{
7549
label: __('Improvements', 'bit-integrations'),
7650
headClass: 'new-improvement',
7751
itemClass: 'feature-list',
78-
items: []
52+
items: [
53+
{
54+
label: 'GiveWP',
55+
desc: 'Enhanced trigger functionality with improved data listening.',
56+
isPro: true
57+
},
58+
{
59+
label: 'Action Hook',
60+
desc: 'Added default field type for triggers to ensure smoother workflows.',
61+
isPro: true
62+
}
63+
]
7964
},
8065
{
8166
label: __('Bug Fixes', 'bit-integrations'),
8267
headClass: 'fixes',
8368
itemClass: 'fixes-list',
84-
items: []
69+
items: [
70+
{
71+
label: 'Mailchimp',
72+
desc: 'Fixed issue with updating existing contacts.',
73+
isPro: false
74+
},
75+
{
76+
label: 'GetResponse',
77+
desc: 'Fixed issue with updating existing contacts.',
78+
isPro: false
79+
},
80+
{
81+
label: 'Telegram',
82+
desc: 'Fixed blank page issue triggered by Action Hook to Telegram.',
83+
isPro: false
84+
},
85+
{
86+
label: 'GamiPress',
87+
desc: 'Corrected fetching utilities query issue.',
88+
isPro: false
89+
},
90+
{
91+
label: 'Sendy',
92+
desc: 'Authorization issue has been fixed.',
93+
isPro: false
94+
}
95+
]
8596
}
8697
]
8798

includes/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Config
2121

2222
public const VAR_PREFIX = 'btcbi_';
2323

24-
public const VERSION = '2.7.0';
24+
public const VERSION = '2.7.1';
2525

2626
public const DB_VERSION = '1.0';
2727

readme.txt

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: automation, automator, Google Sheets, webhooks, zapier, marketing automati
44
Requires at least: 5.1
55
Tested up to: 6.8
66
Requires PHP: 7.4
7-
Stable tag: 2.7.0
7+
Stable tag: 2.7.1
88
License: GPLv2 or later
99

1010
Perfect Automation and integration plugin: Connect 300+ platforms and automate CRM, Email marketing tools, Google Sheets, Contact forms, LMS and more
@@ -700,6 +700,23 @@ Bit Integrations follows WordPress coding standards and best practices to ensure
700700

701701
== Changelog ==
702702

703+
= 2.7.1 =
704+
_Release Date -08th November 2025_
705+
706+
- **New Feature**
707+
- MemberPress: Added support for user custom fields to extend integration flexibility (Pro).
708+
709+
- **New Imrpovement**
710+
- GiveWP: Enhanced trigger functionality with improved data listening (Pro).
711+
- Action Hook: Added default field type for triggers to ensure smoother workflows (Pro).
712+
713+
- **Bug Fixes**
714+
- Mailchimp: Fixed issue with updating existing contacts.
715+
- GetResponse: Resolved subscriber update problem.
716+
- Telegram: Fixed blank page issue triggered by Action Hook to Telegram.
717+
- GamiPress: Corrected fetching utilities query issue.
718+
- Sendy: Authorization issue has been fixed.
719+
703720
= 2.7.0 =
704721
_Release Date -14th October 2025_
705722

0 commit comments

Comments
 (0)