Version Description
= 13.0 = IMPORTANT NOTE Welcome to WP Statistics v13.0, our biggest update! Thank you for being part of our community. Weve been working hard for one year to develop this version and make WP Statistics better for you. Before updating, make sure you disabled all your add-ons, then after that, try to update add-ons.
If you encounter any bug, please create an issue on GitHub where we can act upon them more efficiently. Since GitHub is not a support forum, just bugs are welcomed, and any other request will be closed.
Download this release
Release Info
Developer | mostafa.s1990 |
Plugin | WP Statistics |
Version | 13.2.4.1 |
Comparing to | |
See all releases |
Code changes from version 13.2.4 to 13.2.4.1
- includes/class-wp-statistics-install.php +4 -0
- readme.txt +4 -1
- wp-statistics.php +1 -1
includes/class-wp-statistics-install.php
CHANGED
@@ -117,6 +117,8 @@ class Install
|
|
117 |
agent varchar(180) NOT NULL,
|
118 |
platform varchar(180),
|
119 |
version varchar(180),
|
|
|
|
|
120 |
UAString varchar(190),
|
121 |
ip varchar(60) NOT NULL,
|
122 |
location varchar(10),
|
@@ -128,6 +130,8 @@ class Install
|
|
128 |
KEY agent (agent),
|
129 |
KEY platform (platform),
|
130 |
KEY version (version),
|
|
|
|
|
131 |
KEY location (location)
|
132 |
) {$collate}");
|
133 |
dbDelta($create_visitor_table);
|
117 |
agent varchar(180) NOT NULL,
|
118 |
platform varchar(180),
|
119 |
version varchar(180),
|
120 |
+
device varchar(180),
|
121 |
+
model varchar(180),
|
122 |
UAString varchar(190),
|
123 |
ip varchar(60) NOT NULL,
|
124 |
location varchar(10),
|
130 |
KEY agent (agent),
|
131 |
KEY platform (platform),
|
132 |
KEY version (version),
|
133 |
+
KEY device (device),
|
134 |
+
KEY model (model),
|
135 |
KEY location (location)
|
136 |
) {$collate}");
|
137 |
dbDelta($create_visitor_table);
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wp-statistics.com/donate/
|
|
4 |
Tags: analytics, wordpress analytics, stats, statistics, visit, visitors, hits, chart, browser, today, yesterday, week, month, year, total, post, page, sidebar, google, live visit, search word, agent, google analytics, webmasters, google webmasters, geoip, location
|
5 |
Requires at least: 4.4
|
6 |
Tested up to: 6.0
|
7 |
-
Stable tag: 13.2.4
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -131,6 +131,9 @@ Before updating, make sure you disabled all your add-ons, then after that, try t
|
|
131 |
If you encounter any bug, please create an issue on [GitHub](https://github.com/wp-statistics/wp-statistics/issues/new) where we can act upon them more efficiently. Since [GitHub](https://github.com/wp-statistics/wp-statistics) is not a support forum, just bugs are welcomed, and any other request will be closed.
|
132 |
|
133 |
== Changelog ==
|
|
|
|
|
|
|
134 |
= v13.2.4 - 11.06.2022 =
|
135 |
* Feature: The new device type & device model meta boxes has been added in Overview!
|
136 |
* Bugfix: Enhancements and CSRF protection added to the settings and optimization pages
|
4 |
Tags: analytics, wordpress analytics, stats, statistics, visit, visitors, hits, chart, browser, today, yesterday, week, month, year, total, post, page, sidebar, google, live visit, search word, agent, google analytics, webmasters, google webmasters, geoip, location
|
5 |
Requires at least: 4.4
|
6 |
Tested up to: 6.0
|
7 |
+
Stable tag: 13.2.4.1
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
131 |
If you encounter any bug, please create an issue on [GitHub](https://github.com/wp-statistics/wp-statistics/issues/new) where we can act upon them more efficiently. Since [GitHub](https://github.com/wp-statistics/wp-statistics) is not a support forum, just bugs are welcomed, and any other request will be closed.
|
132 |
|
133 |
== Changelog ==
|
134 |
+
= v13.2.4.1 - 25.06.2022 =
|
135 |
+
* Bugfix: An issue to modify the visitors' table to add type and device model has been fixed
|
136 |
+
|
137 |
= v13.2.4 - 11.06.2022 =
|
138 |
* Feature: The new device type & device model meta boxes has been added in Overview!
|
139 |
* Bugfix: Enhancements and CSRF protection added to the settings and optimization pages
|
wp-statistics.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WP Statistics
|
4 |
* Plugin URI: https://wp-statistics.com/
|
5 |
* Description: This plugin gives you the complete information on your website's visitors.
|
6 |
-
* Version: 13.2.4
|
7 |
* Author: VeronaLabs
|
8 |
* Author URI: https://veronalabs.com/
|
9 |
* Text Domain: wp-statistics
|
3 |
* Plugin Name: WP Statistics
|
4 |
* Plugin URI: https://wp-statistics.com/
|
5 |
* Description: This plugin gives you the complete information on your website's visitors.
|
6 |
+
* Version: 13.2.4.1
|
7 |
* Author: VeronaLabs
|
8 |
* Author URI: https://veronalabs.com/
|
9 |
* Text Domain: wp-statistics
|