Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bitwpfi.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
* Plugin Name: Bit Integrations
* Plugin URI: https://bitapps.pro/bit-integrations
* Description: Bit Integrations is a platform that integrates with over 240+ 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.3.4
* Version: 2.3.5
* Author: Automation & Integration Plugin - Bit Apps
* Author URI: https://bitapps.pro
* Text Domain: bit-integrations
* Requires PHP: 7.0
* Requires at least: 5.1
* Tested up to: 6.6.2
* Tested up to: 6.7
* Domain Path: /languages
* License: GPLv2 or later
*/
Expand All @@ -24,7 +24,7 @@
$btcbi_db_version = '1.1';

// Define most essential constants.
define('BTCBI_VERSION', '2.3.4');
define('BTCBI_VERSION', '2.3.5');
define('BTCBI_PLUGIN_MAIN_FILE', __FILE__);

require_once plugin_dir_path(__FILE__) . 'includes/loader.php';
Expand Down
18 changes: 8 additions & 10 deletions frontend-dev/src/pages/ChangelogToggle.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Modal from '../components/Utilities/Modal'
import { $btcbi } from '../GlobalStates'
import ChangelogIcn from '../Icons/ChangeLogIcn'
import ExternalLinkIcn from '../Icons/ExternalLinkIcn'
import promo from '../resource/img/new_commer.webp'
import BlackFridayDeal from '../resource/img/BlackFridayDeal.webp'
import bitsFetch from '../Utils/bitsFetch'
import { __, sprintf } from '../Utils/i18nwrap'

Expand All @@ -30,27 +30,25 @@ export default function ChangelogToggle() {
label: __('New Actions', 'bit-integrations'),
headClass: 'new-integration',
itemClass: 'integration-list',
items: []
items: ['Voxel']
},
{
label: __('New Triggers', 'bit-integrations'),
headClass: 'new-trigger',
itemClass: 'integration-list',
items: ['Pie Forms (Pro)']
items: ['Asgaros (Pro)']
},
{
label: __('New Features', 'bit-integrations'),
headClass: 'new-feature',
itemClass: 'feature-list',
items: ['Kit (ex ConvertKit): New Module added']
items: []
},
{
label: __('New Improvements', 'bit-integrations'),
headClass: 'new-improvement',
itemClass: 'feature-list',
items: [
'Brevo (ex Sendinblue): Enhanced optimization for smoother integration execution.', 'Kit (ex ConvertKit): Improved functionality for adding and updating subscribers.', 'Voxel: Added new tasks to enhance the integrations'
]
items: []
}
]

Expand Down Expand Up @@ -114,10 +112,10 @@ export default function ChangelogToggle() {
<>
<div>
<a href={Early_Bird_URL} target="_blank" rel="noreferrer">
<img src={promo} style={{ width: '100%', marginTop: '-10px' }} alt="" />
<img src={BlackFridayDeal} style={{ width: '100%', marginTop: '-2px' }} alt="" />
</a>
</div>
<div className="txt-right" style={{ marginTop: '-20px' }}>
<div className="txt-right" style={{ marginTop: '-2px' }}>
<button
type="button"
className="btn round btcd-btn-lg purple purple-sh"
Expand All @@ -132,7 +130,7 @@ export default function ChangelogToggle() {
<div className="flx flx-col flx-center whats-new">
<h3>{sprintf(__("What's New in %s", 'bit-integrations'), btcbi.version)}?</h3>
<small className="date">
{__('Updated at:', 'bit-integrations')} <b>12th November 2024</b>
{__('Updated at:', 'bit-integrations')} <b>20th November 2024</b>
</small>
</div>
<div className="changelog-content">
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.3.4';
public const VERSION = '2.3.5';

public const DB_VERSION = '1.0';

Expand Down
Loading