Skip to content

Commit 4eb627b

Browse files
committed
Merge remote-tracking branch 'origin/master' into feat/automated-browser-tests
2 parents 40cc2f5 + 6d119cf commit 4eb627b

File tree

4 files changed

+104
-12
lines changed

4 files changed

+104
-12
lines changed

config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"TESTED_UP_TO": "6.7.2",
3-
"STABLE_TAG": "1.50"
2+
"TESTED_UP_TO": "6.8.2",
3+
"STABLE_TAG": "1.66"
44
}

readme.txt

Lines changed: 102 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ Contributors: simpleanalytics
44
Donate link: https://simpleanalytics.com
55
Tags: privacy-first, privacy-friendly, free analytics, website analytics, simple analytics, analytics, statistics, website traffic, traffic monitoring
66
Requires at least: 5.2
7-
Tested up to: 6.7.2
7+
Tested up to: 6.8.2
88
Requires PHP: 7.2.0
9-
Stable tag: 1.50
9+
Stable tag: 1.66
1010
License: GPLv2 or later
1111
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1212

@@ -137,6 +137,106 @@ No changes needed for upgrades.
137137

138138
== Changelog ==
139139

140+
= 1.66 =
141+
* 2025-07-28
142+
* Changes:
143+
* Release 1.65: Code updates and support for WordPress 6.8.2
144+
145+
146+
= 1.65 =
147+
* 2025-07-21
148+
* Tested up to WordPress 6.8.2
149+
* Changes:
150+
* Release 1.64: Code updates
151+
152+
153+
= 1.64 =
154+
* 2025-07-14
155+
* Changes:
156+
* Release 1.63: Code updates
157+
158+
159+
= 1.63 =
160+
* 2025-07-07
161+
* Changes:
162+
* Release 1.62: Code updates
163+
164+
165+
= 1.62 =
166+
* 2025-06-30
167+
* Changes:
168+
* Release 1.61: Code updates
169+
170+
171+
= 1.61 =
172+
* 2025-06-23
173+
* Changes:
174+
* Release 1.60: Code updates
175+
176+
177+
= 1.60 =
178+
* 2025-06-16
179+
* Changes:
180+
* Release 1.59: Code updates
181+
182+
183+
= 1.59 =
184+
* 2025-06-09
185+
* Changes:
186+
* Release 1.58: Code updates
187+
188+
189+
= 1.58 =
190+
* 2025-06-02
191+
* Changes:
192+
* Release 1.57: Code updates
193+
194+
195+
= 1.57 =
196+
* 2025-05-19
197+
* Changes:
198+
* Release 1.56: Code updates
199+
200+
201+
= 1.56 =
202+
* 2025-05-12
203+
* Changes:
204+
* Release 1.55: Code updates and support for WordPress 6.8.1
205+
206+
207+
= 1.55 =
208+
* 2025-05-05
209+
* Tested up to WordPress 6.8.1
210+
* Changes:
211+
* Release 1.54: Code updates
212+
213+
214+
= 1.54 =
215+
* 2025-04-28
216+
* Changes:
217+
* Release 1.53: Code updates
218+
219+
220+
= 1.53 =
221+
* 2025-04-22
222+
* Changes:
223+
* Remove "Enabled" checkbox
224+
* Release 1.52: Code updates and support for WordPress 6.8
225+
226+
227+
= 1.52 =
228+
* 2025-04-21
229+
* Tested up to WordPress 6.8
230+
* Changes:
231+
* Release 1.51: Code updates
232+
233+
234+
= 1.51 =
235+
* 2025-04-14
236+
* Changes:
237+
* Release 1.50: Code updates
238+
239+
140240
= 1.50 =
141241
* 2025-04-07
142242
* Changes:

src/Plugin.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,6 @@ protected function defineAdminPage(): void
9999
->placeholder('Enter your custom domain or leave it empty.')
100100
->description('E.g. api.example.com. Leave empty to use the default domain (most users).')
101101
->docs('https://docs.simpleanalytics.com/bypass-ad-blockers');
102-
103-
$tab->checkbox(SettingName::ENABLED, 'Enabled')
104-
->default(true)
105-
->description('Enable or disable Simple Analytics on your website.');
106102
})
107103
->tab('Ignore Rules', function (Tab $tab) {
108104
$tab->icon(get_icon('eye-slash'));

src/TrackingPolicy.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ class TrackingPolicy
66
{
77
public function shouldCollectAnalytics(): bool
88
{
9-
if (Setting::boolean(SettingName::ENABLED, true) === false) {
10-
return false;
11-
}
12-
139
if ($this->clientIpExcluded($_SERVER['HTTP_X_FORWARDED_FOR'] ?? $_SERVER['REMOTE_ADDR'])) {
1410
return false;
1511
}

0 commit comments

Comments
 (0)