Skip to content

Commit 22a3c91

Browse files
Version 1.0: updated version number and changelog
1 parent cd5c7d5 commit 22a3c91

File tree

5 files changed

+23
-6
lines changed

5 files changed

+23
-6
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ Developer: [Patrick Robrecht](https://patrick-robrecht.de/)
1919

2020
## Changelog
2121

22+
### Version 1.0
23+
* comments per date
24+
* comments per author
25+
* comments per status
26+
* consistent formatting of the source code
27+
2228
### Version 0.3
2329
* improved styles and readme.txt documentation
2430

posts-and-users-stats.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Posts and Users Stats
44
Plugin URI: https://patrick-robrecht.de/wordpress/
55
Description: Statistics about the number of posts and users, provided as diagrams, tables and csv export.
6-
Version: 0.3
6+
Version: 1.0
77
Author: Patrick Robrecht
88
Author URI: https://patrick-robrecht.de/
99
License: GPLv2 or later

readme.txt

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: patrickrobrecht
33
Tags: dashboard, statistics
44
Requires at least: 4.4
55
Tested up to: 4.6.1
6-
Stable tag: 0.3
6+
Stable tag: 1.0
77
License: GPLv3 or later
88
License URI: https://www.gnu.org/licenses/gpl-3.0.html
99

@@ -17,6 +17,9 @@ Posts and Users Stats offers statistics about the content and the users of a Wor
1717
* Posts per Taxonomies, i. e. per category, per tag and per custom taxonomies
1818
* Posts per Author and Post Type
1919
* Posts per Status
20+
* Comments per Date
21+
* Comments per Author
22+
* Comments per Status
2023
* Users per Role
2124
* Users over Time
2225
* Diagrams which can be exported as image or PDF
@@ -39,13 +42,21 @@ Posts and Users Stats offers statistics about the content and the users of a Wor
3942
2. Posts per Taxonomies, i. e. per category, per tag and per custom taxonomies
4043
3. Posts per Author and Post Type
4144
4. Posts per Status
42-
5. Users per Role
43-
6. Users over Time
45+
5. Comments per Date
46+
6. Comments per Author
47+
7. Comments per Status
48+
8. Users per Role
49+
9. Users over Time
50+
4451

4552
== Changelog ==
4653

4754
If interested, please check up the [changelog at GitHub](https://github.com/patrickrobrecht/posts-and-users-stats#changelog).
4855

56+
= 1.0 =
57+
* Comments per Date
58+
* Comments per Author
59+
* Comments per Status
4960

5061
== Upgrade Notice ==
5162

views/comments.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ class="<?php posts_and_users_stats_echo_tab_class( $selected_tab == $tab_slug );
239239
echo 0;
240240
}
241241
} else {
242-
echo '-';
242+
echo '&mdash;';
243243
} ?></td>
244244
<?php } ?>
245245
</tr>

views/posts.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ class="<?php posts_and_users_stats_echo_tab_class( $selected_tab == $tab_slug );
274274
echo 0;
275275
}
276276
} else {
277-
echo '-';
277+
echo '&mdash;';
278278
} ?></td>
279279
<?php } ?>
280280
</tr>

0 commit comments

Comments
 (0)