Skip to content

Commit ce7103c

Browse files
committed
v2.0.4: No minimum reqs.
1 parent f9cbffd commit ce7103c

File tree

6 files changed

+19
-12
lines changed

6 files changed

+19
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22
All notable changes to TNC Toolbox for WordPress will be documented in this file.
33

4+
## [2.0.4] - 2025-11-11
5+
6+
### 💅 Polish
7+
- Remove minimum requirements: Ensure v2 adoption growth
8+
- Folder Renames: languages to locale; vendors to vendor
9+
410
## [2.0.3] - 2025-11-06
511

612
### 🚀 Feature

tnc-toolbox/readme.txt

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@ Plugin URI: https://merlot.digital
44
Donate link:
55
Contributors:
66
Tags: NGINX, Cache Purge, Web Performance, Automatic Purge, Freeware
7-
Requires at least: 6.0
87
Tested up to: 6.8
9-
Requires PHP: 8.0
10-
Stable tag: 2.0.3
8+
Stable tag: 2.0.4
119
License: GPLv3
1210
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1311

@@ -22,7 +20,7 @@ TNC Toolbox aims to enhance your WordPress experience with NGINX-on-cPanel (ea-n
2220

2321
With a heavy focus on the Apache + NGINX as Reverse Caching Proxy web stack, the plugin aims to help with Website Management, Performance and Security.
2422

25-
> **FOSS by [The Network Crew Pty Ltd](https://tnc.works) (TNC) for [Merlot Digital](https://merlot.digital) & the world.** ❤️
23+
> ❤️ **FOSS by [The Network Crew Pty Ltd](https://tnc.works) (TNC) for [Merlot Digital](https://merlot.digital) & the world.** ❤️
2624

2725
== Functionality ==
2826

@@ -52,7 +50,7 @@ _Please let us know your ideas on [GitHub](https://github.com/The-Network-Crew/T
5250
4. API status checker reports OK.
5351
5. /wp-content/tnc-toolbox-config/ folder is gone.
5452

55-
_(* Change to main plugin file name results in deactivation)_
53+
_(* Change to main plugin file name may result in deactivation)_
5654

5755
== Screenshots ==
5856

@@ -112,6 +110,10 @@ The key is to purge when stale, so properly configuring your WP Plugin Cache is
112110

113111
== Changelog ==
114112

113+
= 2.0.4: Nov 11, 2025 =
114+
* Remove minimum requirements: Ensure v2 adoption growth
115+
* Folder Renames: languages to locale; vendors to vendor
116+
115117
= 2.0.3: Nov 6, 2025 =
116118
* Auto-purge (ACF): When you save ACF config, purge! (#24)
117119

tnc-toolbox/tnc-toolbox.php

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,16 @@
55
* @package TNCTOOLBOX
66
* @author The Network Crew Pty Ltd (TNC & Co.)
77
* @license gplv3
8-
* @version 2.0.3
8+
* @version 2.0.4
99
*
1010
* @wordpress-plugin
1111
* Plugin Name: TNC Toolbox: Web Performance
1212
* Plugin URI: https://merlot.digital
1313
* Description: Adds functionality to WP - designed for NGINX-powered Servers on cPanel+WHM. Made to help you fly online!
14-
* Version: 2.0.3
15-
* Requires at least: 6.0
16-
* Requires PHP: 8.0
14+
* Version: 2.0.4
1715
* Author: The Network Crew Pty Ltd (TNC & Co.)
1816
* Author URI: https://tnc.works
19-
* Domain Path: /languages
17+
* Domain Path: /locale
2018
* License: GPLv3
2119
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
2220
*
@@ -31,7 +29,7 @@
3129
define('TNCTOOLBOX_NAME', 'TNC Toolbox');
3230

3331
// Plugin version
34-
define('TNCTOOLBOX_VERSION', '2.0.3');
32+
define('TNCTOOLBOX_VERSION', '2.0.4');
3533

3634
// Plugin Root File
3735
define('TNCTOOLBOX_PLUGIN_FILE', __FILE__);
@@ -48,7 +46,7 @@
4846
// Load required files
4947
require_once TNCTOOLBOX_PLUGIN_DIR . 'core/core.php';
5048
require_once TNCTOOLBOX_PLUGIN_DIR . 'core/settings.php';
51-
require_once TNCTOOLBOX_PLUGIN_DIR . 'vendors/cpanel-uapi.php';
49+
require_once TNCTOOLBOX_PLUGIN_DIR . 'vendor/cpanel-uapi.php';
5250

5351
/**
5452
* Main plugin class for initialisation and hooks

tnc-toolbox/vendor/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<?php //Silence is golden

0 commit comments

Comments
 (0)