Email Log - Version 1.6.1

Version Description

Download this release

Release Info

Developer sudar
Plugin Icon 128x128 Email Log
Version 1.6.1
Comparing to
See all releases

Code changes from version 1.6 to 1.6.1

email-log.php CHANGED
@@ -2,10 +2,10 @@
2
  /**
3
  Plugin Name: Email Log
4
  Plugin URI: http://sudarmuthu.com/wordpress/email-log
5
- Description: Logs every email sent through WordPress. Compatible with WPMU too.
6
  Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
7
  Author: Sudar
8
- Version: 1.6
9
  Author URI: http://sudarmuthu.com/
10
  Text Domain: email-log
11
  Domain Path: languages/
@@ -113,7 +113,6 @@ class EmailLog {
113
  $this->logs_table->prepare_items( $this->get_per_page() );
114
  ?>
115
  <div class="wrap">
116
- <?php screen_icon(); ?>
117
  <h2><?php _e('Email Logs', 'email-log');?></h2>
118
  <?php
119
  if ( isset( $this->logs_deleted ) && $this->logs_deleted != '' ) {
@@ -259,8 +258,13 @@ class EmailLog {
259
 
260
  /**
261
  * Get the per page option
 
 
 
 
 
262
  */
263
- private function get_per_page() {
264
  $screen = get_current_screen();
265
  $option = $screen->get_option('per_page', 'option');
266
 
2
  /**
3
  Plugin Name: Email Log
4
  Plugin URI: http://sudarmuthu.com/wordpress/email-log
5
+ Description: Logs every email sent through WordPress
6
  Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
7
  Author: Sudar
8
+ Version: 1.6.1
9
  Author URI: http://sudarmuthu.com/
10
  Text Domain: email-log
11
  Domain Path: languages/
113
  $this->logs_table->prepare_items( $this->get_per_page() );
114
  ?>
115
  <div class="wrap">
 
116
  <h2><?php _e('Email Logs', 'email-log');?></h2>
117
  <?php
118
  if ( isset( $this->logs_deleted ) && $this->logs_deleted != '' ) {
258
 
259
  /**
260
  * Get the per page option
261
+ *
262
+ * @static
263
+ * @access public
264
+ * @return int $per_page Number of logs a user wanted to be displayed in a page
265
+ *
266
  */
267
+ public static function get_per_page() {
268
  $screen = get_current_screen();
269
  $option = $screen->get_option('per_page', 'option');
270
 
include/class-email-log-list-table.php CHANGED
@@ -273,7 +273,7 @@ class Email_Log_List_Table extends WP_List_Table {
273
  /**
274
  * Prepare data for display.
275
  */
276
- function prepare_items( $per_page ) {
277
  global $wpdb;
278
  global $EmailLog;
279
 
@@ -304,6 +304,7 @@ class Email_Log_List_Table extends WP_List_Table {
304
  $total_items = $wpdb->query( $query ); //return the total number of affected rows
305
 
306
  //adjust the query to take pagination into account
 
307
  if( !empty( $current_page ) && !empty( $per_page ) ) {
308
  $offset = ($current_page-1) * $per_page;
309
  $query .= ' LIMIT ' . (int)$offset . ',' . (int)$per_page;
273
  /**
274
  * Prepare data for display.
275
  */
276
+ function prepare_items() {
277
  global $wpdb;
278
  global $EmailLog;
279
 
304
  $total_items = $wpdb->query( $query ); //return the total number of affected rows
305
 
306
  //adjust the query to take pagination into account
307
+ $per_page = EmailLog::get_per_page();
308
  if( !empty( $current_page ) && !empty( $per_page ) ) {
309
  $offset = ($current_page-1) * $per_page;
310
  $query .= ' LIMIT ' . (int)$offset . ',' . (int)$per_page;
languages/email-log.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Email Log package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Log 1.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/email-log\n"
7
- "POT-Creation-Date: 2013-12-08 15:03:49+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -16,69 +16,73 @@ msgstr ""
16
  msgid "Buy Addons"
17
  msgstr ""
18
 
 
 
19
  #: email-log.php:103
20
  msgid "Email Log"
21
  msgstr ""
22
 
23
- #: email-log.php:117
24
  msgid "Email Logs"
25
  msgstr ""
26
 
27
- #: email-log.php:123
28
  msgid "1 email log deleted."
29
  msgid_plural "%s email logs deleted"
30
  msgstr[0] ""
31
  msgstr[1] ""
32
 
33
- #: email-log.php:125
34
  msgid "There was some problem in deleting the email logs"
35
  msgstr ""
36
 
37
- #: email-log.php:133
38
  msgid "Search Logs"
39
  msgstr ""
40
 
41
- #: email-log.php:166 tmp_addon/email-log-forward-email.php:152
42
  msgid "About Plugin"
43
  msgstr ""
44
 
45
- #: email-log.php:168 tmp_addon/email-log-forward-email.php:154
46
- msgid "Email Log WordPress Plugin, allows you to log all emails that are sent through WordPress."
 
 
47
  msgstr ""
48
 
49
- #: email-log.php:175 tmp_addon/email-log-forward-email.php:162
50
  msgid "More information"
51
  msgstr ""
52
 
53
- #: email-log.php:176 tmp_addon/email-log-forward-email.php:163
54
  msgid "Plugin Homepage/support"
55
  msgstr ""
56
 
57
- #: email-log.php:177 tmp_addon/email-log-forward-email.php:164
58
  msgid "Plugin author's blog"
59
  msgstr ""
60
 
61
- #: email-log.php:178 tmp_addon/email-log-forward-email.php:165
62
  msgid "Other Plugin's by Author"
63
  msgstr ""
64
 
65
- #: email-log.php:185
66
  msgid "Entries per page"
67
  msgstr ""
68
 
69
- #: email-log.php:284
70
  msgid "Log"
71
  msgstr ""
72
 
73
- #: email-log.php:294
74
  msgid "plugin"
75
  msgstr ""
76
 
77
- #: email-log.php:294
78
  msgid "Version"
79
  msgstr ""
80
 
81
- #: email-log.php:294
82
  msgid "by"
83
  msgstr ""
84
 
@@ -91,7 +95,9 @@ msgid "Buy Now"
91
  msgstr ""
92
 
93
  #: include/class-email-log-list-table.php:49
94
- msgid "The following are the list of pro addons that are currently available for purchase."
 
 
95
  msgstr ""
96
 
97
  #: include/class-email-log-list-table.php:55
@@ -99,7 +105,9 @@ msgid "Email Log - Forward Email"
99
  msgstr ""
100
 
101
  #: include/class-email-log-list-table.php:56
102
- msgid "This addon allows you to send a copy of all emails send from WordPress to another email address"
 
 
103
  msgstr ""
104
 
105
  #: include/class-email-log-list-table.php:57
@@ -117,7 +125,8 @@ msgid "Email Log - More fields"
117
  msgstr ""
118
 
119
  #: include/class-email-log-list-table.php:63
120
- msgid "Adds more fields (From, CC, BCC, Reply To, Attachment) to the logs page."
 
121
  msgstr ""
122
 
123
  #: include/class-email-log-list-table.php:88
@@ -146,7 +155,7 @@ msgstr ""
146
  msgid "View Content"
147
  msgstr ""
148
 
149
- #: include/class-email-log-list-table.php:327
150
  msgid "Your email log is empty"
151
  msgstr ""
152
 
@@ -190,16 +199,13 @@ msgstr ""
190
  #: tmp_addon/email-log-more-fields.php:84
191
  msgid "Attachment"
192
  msgstr ""
193
- #. Plugin Name of the plugin/theme
194
- msgid "Email Log"
195
- msgstr ""
196
 
197
  #. Plugin URI of the plugin/theme
198
  msgid "http://sudarmuthu.com/wordpress/email-log"
199
  msgstr ""
200
 
201
  #. Description of the plugin/theme
202
- msgid "Logs every email sent through WordPress. Compatible with WPMU too."
203
  msgstr ""
204
 
205
  #. Author of the plugin/theme
2
  # This file is distributed under the same license as the Email Log package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Log 1.6.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/email-log\n"
7
+ "POT-Creation-Date: 2013-12-17 15:04:13+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
16
  msgid "Buy Addons"
17
  msgstr ""
18
 
19
+ #. #-#-#-#-# email-log.pot (Email Log 1.6.1) #-#-#-#-#
20
+ #. Plugin Name of the plugin/theme
21
  #: email-log.php:103
22
  msgid "Email Log"
23
  msgstr ""
24
 
25
+ #: email-log.php:116
26
  msgid "Email Logs"
27
  msgstr ""
28
 
29
+ #: email-log.php:122
30
  msgid "1 email log deleted."
31
  msgid_plural "%s email logs deleted"
32
  msgstr[0] ""
33
  msgstr[1] ""
34
 
35
+ #: email-log.php:124
36
  msgid "There was some problem in deleting the email logs"
37
  msgstr ""
38
 
39
+ #: email-log.php:132
40
  msgid "Search Logs"
41
  msgstr ""
42
 
43
+ #: email-log.php:165 tmp_addon/email-log-forward-email.php:152
44
  msgid "About Plugin"
45
  msgstr ""
46
 
47
+ #: email-log.php:167 tmp_addon/email-log-forward-email.php:154
48
+ msgid ""
49
+ "Email Log WordPress Plugin, allows you to log all emails that are sent "
50
+ "through WordPress."
51
  msgstr ""
52
 
53
+ #: email-log.php:174 tmp_addon/email-log-forward-email.php:162
54
  msgid "More information"
55
  msgstr ""
56
 
57
+ #: email-log.php:175 tmp_addon/email-log-forward-email.php:163
58
  msgid "Plugin Homepage/support"
59
  msgstr ""
60
 
61
+ #: email-log.php:176 tmp_addon/email-log-forward-email.php:164
62
  msgid "Plugin author's blog"
63
  msgstr ""
64
 
65
+ #: email-log.php:177 tmp_addon/email-log-forward-email.php:165
66
  msgid "Other Plugin's by Author"
67
  msgstr ""
68
 
69
+ #: email-log.php:184
70
  msgid "Entries per page"
71
  msgstr ""
72
 
73
+ #: email-log.php:288
74
  msgid "Log"
75
  msgstr ""
76
 
77
+ #: email-log.php:298
78
  msgid "plugin"
79
  msgstr ""
80
 
81
+ #: email-log.php:298
82
  msgid "Version"
83
  msgstr ""
84
 
85
+ #: email-log.php:298
86
  msgid "by"
87
  msgstr ""
88
 
95
  msgstr ""
96
 
97
  #: include/class-email-log-list-table.php:49
98
+ msgid ""
99
+ "The following are the list of pro addons that are currently available for "
100
+ "purchase."
101
  msgstr ""
102
 
103
  #: include/class-email-log-list-table.php:55
105
  msgstr ""
106
 
107
  #: include/class-email-log-list-table.php:56
108
+ msgid ""
109
+ "This addon allows you to send a copy of all emails send from WordPress to "
110
+ "another email address"
111
  msgstr ""
112
 
113
  #: include/class-email-log-list-table.php:57
125
  msgstr ""
126
 
127
  #: include/class-email-log-list-table.php:63
128
+ msgid ""
129
+ "Adds more fields (From, CC, BCC, Reply To, Attachment) to the logs page."
130
  msgstr ""
131
 
132
  #: include/class-email-log-list-table.php:88
155
  msgid "View Content"
156
  msgstr ""
157
 
158
+ #: include/class-email-log-list-table.php:328
159
  msgid "Your email log is empty"
160
  msgstr ""
161
 
199
  #: tmp_addon/email-log-more-fields.php:84
200
  msgid "Attachment"
201
  msgstr ""
 
 
 
202
 
203
  #. Plugin URI of the plugin/theme
204
  msgid "http://sudarmuthu.com/wordpress/email-log"
205
  msgstr ""
206
 
207
  #. Description of the plugin/theme
208
+ msgid "Logs every email sent through WordPress"
209
  msgstr ""
210
 
211
  #. Author of the plugin/theme
readme.txt CHANGED
@@ -2,14 +2,14 @@
2
  Contributors: sudar
3
  Tags: email, wpmu, wordpress-mu, log
4
  Requires at least: 3.3
5
- Tested up to: 3.7.1
6
- Stable tag: 1.6
7
 
8
- Logs every email sent through WordPress. Compatible with WPMU too.
9
 
10
  == Description ==
11
 
12
- Logs every email sent through WordPress. Compatible with WPMU too.
13
 
14
  ### Viewing logged emails
15
 
@@ -56,7 +56,6 @@ The following are the features that I am thinking of adding to the Plugin, when
56
 
57
  - Add option to automatically delete the logs periodically
58
  - Make it MU compatible
59
- - Add the ability to view the entire email
60
  - Add the ability to resend the emails
61
 
62
  ### Support
@@ -96,10 +95,6 @@ The pot file is available with the Plugin. If you are willing to do translation
96
 
97
  Extract the zip file and just drop the contents in the wp-content/plugins/ directory of your WordPress installation and then activate the Plugin from Plugins page.
98
 
99
- ### WordPress MU installations
100
-
101
- Extract the zip file and drop the contents in the wp-content/plugins/ directory or mu-plugins directory of your WordPress MU installation and then activate the Plugin from the main blog's Plugins page.
102
-
103
  == Screenshots ==
104
 
105
  1. The above screenshot shows how the logged emails will be displayed by the Plugin
@@ -112,101 +107,105 @@ Extract the zip file and drop the contents in the wp-content/plugins/ directory
112
 
113
  5. This screenshot shows the settings page of [forward email](http://sudarmuthu.com/wordpress/email-log/pro-addons#forward-email-addon) addon
114
 
115
- == Changelog ==
116
-
117
- = v0.1 (2009-10-08) =
118
- * Initial Release
119
-
120
- = v0.2 (2009-10-15) =
121
- * Added compatibility for MySQL 4
122
-
123
- = v0.3 (2009-10-19) =
124
- * Added compatibility for MySQL 4 (Thanks Frank)
125
-
126
- = v0.4 (2010-01-02) =
127
- * Added German translation (Thanks Frank)
128
-
129
- = v0.5 (2012-01-01) =
130
- * Fixed a deprecation notice
131
-
132
- = v0.6 (2012-04-29) (Dev time: 2 hours) =
133
- * Added option to delete individual email logs
134
- * Moved pages per screen option to Screen options panel
135
- * Added information to the screen help tab
136
- * Added Lithuanian translations
137
-
138
- = v0.7 (2012-06-23) (Dev time: 1 hour) =
139
- * Changed Timestamp(n) MySQL datatype to Timestamp (now compatible with MySQL 5.5+)
140
- * Added the ability to bulk delete checkboxes
141
-
142
- = v0.8 (2012-07-12) (Dev time: 1 hour) =
143
- * Fixed undefined notices - http://wordpress.org/support/topic/plugin-email-log-notices-undefined-indices
144
- * Added Dutch translations
145
-
146
- = v0.8.1 (2012-07-23) (Dev time: 0.5 hour) =
147
- * Reworded most error messages and fixed lot of typos
148
-
149
- = v0.9(2013-01-08) - (Dev time: 1 hour) =
150
- * Use blog date/time for send date instead of server time
151
- * Handle cases where the headers send is an array
152
-
153
- = v0.9.1 (2013-01-08) - (Dev time: 0.5 hour) =
154
- * Moved the menu under tools (Thanks samuelaguilera)
155
-
156
- = v0.9.2 (2013-03-14) - (Dev time: 0.5 hour) =
157
- * Added support for filters which can be used while logging emails
158
-
159
- = v0.9.3 (2013-04-01) - (Dev time: 0.5 hour) =
160
- * Moved table name into a separate constants file
161
-
162
- = v1.0 (2013-04-17) - (Dev time: 0.5 hour) =
163
- * Added support for buying pro addons
164
-
165
- = v1.1 (2013-04-27) - (Dev time: 0.5 hour) =
166
- * Added more documentation
167
-
168
- = v1.5 (2013-09-09) - (Dev time: 10 hours) =
169
- * Rewrote Admin interface using native tables
170
-
171
- = v1.5.1 (2013-09-09) - (Dev time: 0.5 hours) =
172
- - Correct the upgrade file include path. Issue #7
173
- - Fix undfined notice error. Issue #8
174
- - Update screenshots. Issue #6
175
-
176
- = v1.5.2 (2013-09-13) - (Dev time: 0.5 hours) =
177
- - Add the ability to override the fields displayed in the log page
178
- - Add support for "More Fields" addon
179
-
180
- = v1.5.3 (2013-09-14) - (Dev time: 0.5 hours) =
181
- - Fix issue in bulk deleting logs
182
-
183
- = v1.5.4 (2013-09-21) - (Dev time: 0.5 hours) =
184
- - Fix issue in searching non-english characters
185
- - Add addon screenshots
186
-
187
- = v1.6 (2013-12-08) - (Dev time: 0.5 hours) =
188
- - New: Add a link to view the content of the email in the log screen
189
-
190
- == Upgrade Notice ==
191
-
192
- = 1.6 =
193
- Ability to view content of the email
194
-
195
- = 1.5.4 =
196
- Fixed issue in searching for non-english characters
197
-
198
- = 1.5.3 =
199
- Fix issue in bulk deleting logs
200
-
201
- = 1.5 =
202
- Rewrote Admin interface using native tables
203
-
204
- = 1.0 =
205
- Added support for buying pro addons
206
-
207
- = 0.9.2 =
208
- Added filters for more customizing
209
-
210
  == Readme Generator ==
211
 
212
  This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/wp-readme'>wp-readme</a>, which generates readme files for WordPress Plugins.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  Contributors: sudar
3
  Tags: email, wpmu, wordpress-mu, log
4
  Requires at least: 3.3
5
+ Tested up to: 3.8
6
+ Stable tag: 1.6.1
7
 
8
+ Logs every email sent through WordPress
9
 
10
  == Description ==
11
 
12
+ Logs every email sent through WordPress and provides a UI where you can view them.
13
 
14
  ### Viewing logged emails
15
 
56
 
57
  - Add option to automatically delete the logs periodically
58
  - Make it MU compatible
 
59
  - Add the ability to resend the emails
60
 
61
  ### Support
95
 
96
  Extract the zip file and just drop the contents in the wp-content/plugins/ directory of your WordPress installation and then activate the Plugin from Plugins page.
97
 
 
 
 
 
98
  == Screenshots ==
99
 
100
  1. The above screenshot shows how the logged emails will be displayed by the Plugin
107
 
108
  5. This screenshot shows the settings page of [forward email](http://sudarmuthu.com/wordpress/email-log/pro-addons#forward-email-addon) addon
109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  == Readme Generator ==
111
 
112
  This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/wp-readme'>wp-readme</a>, which generates readme files for WordPress Plugins.
113
+ == Changelog ==
114
+
115
+ = v1.6.1 (2013-12-17) - (Dev time: 0.5 hours) =
116
+ - Fix: Change `prepare_items` function so that it adheres to strict mode
117
+ - Fix: Remove `screen_icon` function call which is not used in WordPress 3.8
118
+ - New: Compatible with WordPress 3.8
119
+
120
+ = v1.6 (2013-12-08) - (Dev time: 0.5 hours) =
121
+ - New: Add a link to view the content of the email in the log screen
122
+
123
+ = v1.5.4 (2013-09-21) - (Dev time: 0.5 hours) =
124
+ - Fix issue in searching non-english characters
125
+ - Add addon screenshots
126
+
127
+ = v1.5.3 (2013-09-14) - (Dev time: 0.5 hours) =
128
+ - Fix issue in bulk deleting logs
129
+
130
+ = v1.5.2 (2013-09-13) - (Dev time: 0.5 hours) =
131
+ - Add the ability to override the fields displayed in the log page
132
+ - Add support for "More Fields" addon
133
+
134
+ = v1.5.1 (2013-09-09) - (Dev time: 0.5 hours) =
135
+ - Correct the upgrade file include path. Issue #7
136
+ - Fix undfined notice error. Issue #8
137
+ - Update screenshots. Issue #6
138
+
139
+ = v1.5 (2013-09-09) - (Dev time: 10 hours) =
140
+ - Rewrote Admin interface using native tables
141
+
142
+ = v1.1 (2013-04-27) - (Dev time: 0.5 hour) =
143
+ - Added more documentation
144
+
145
+ = v1.0 (2013-04-17) - (Dev time: 0.5 hour) =
146
+ - Added support for buying pro addons
147
+
148
+ = v0.9.3 (2013-04-01) - (Dev time: 0.5 hour) =
149
+ - Moved table name into a separate constants file
150
+
151
+ = v0.9.2 (2013-03-14) - (Dev time: 0.5 hour) =
152
+ - Added support for filters which can be used while logging emails
153
+
154
+ = v0.9.1 (2013-01-08) - (Dev time: 0.5 hour) =
155
+ - Moved the menu under tools (Thanks samuelaguilera)
156
+
157
+ = v0.9(2013-01-08) - (Dev time: 1 hour) =
158
+ - Use blog date/time for send date instead of server time
159
+ - Handle cases where the headers send is an array
160
+
161
+ = v0.8.1 (2012-07-23) (Dev time: 0.5 hour) =
162
+ - Reworded most error messages and fixed lot of typos
163
+
164
+ = v0.8 (2012-07-12) (Dev time: 1 hour) =
165
+ - Fixed undefined notices - http://wordpress.org/support/topic/plugin-email-log-notices-undefined-indices
166
+ - Added Dutch translations
167
+
168
+ = v0.7 (2012-06-23) (Dev time: 1 hour) =
169
+ - Changed Timestamp(n) MySQL datatype to Timestamp (now compatible with MySQL 5.5+)
170
+ - Added the ability to bulk delete checkboxes
171
+
172
+ = v0.6 (2012-04-29) (Dev time: 2 hours) =
173
+ - Added option to delete individual email logs
174
+ - Moved pages per screen option to Screen options panel
175
+ - Added information to the screen help tab
176
+ - Added Lithuanian translations
177
+
178
+ = v0.5 (2012-01-01) =
179
+ - Fixed a deprecation notice
180
+
181
+ = v0.4 (2010-01-02) =
182
+ - Added German translation (Thanks Frank)
183
+
184
+ = v0.3 (2009-10-19) =
185
+ - Added compatibility for MySQL 4 (Thanks Frank)
186
+
187
+ = v0.2 (2009-10-15) =
188
+ - Added compatibility for MySQL 4
189
+
190
+ = v0.1 (2009-10-08) =
191
+ - Initial Release
192
+
193
+ == Upgrade Notice ==
194
+
195
+ = 1.6 =
196
+ Ability to view content of the email
197
+
198
+ = 1.5.4 =
199
+ Fixed issue in searching for non-english characters
200
+
201
+ = 1.5.3 =
202
+ Fix issue in bulk deleting logs
203
+
204
+ = 1.5 =
205
+ Rewrote Admin interface using native tables
206
+
207
+ = 1.0 =
208
+ Added support for buying pro addons
209
+
210
+ = 0.9.2 =
211
+ Added filters for more customizing