Skip to content

Commit 873a503

Browse files
author
Sergej Müller
committed
Snitch 1.1.5
1 parent 6b6133b commit 873a503

File tree

4 files changed

+38
-30
lines changed

4 files changed

+38
-30
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Snitch changelog
22

33

4+
## 1.1.5 / 06.05.2015
5+
6+
* [GitHub Repository](https://github.com/sergejmueller/snitch) und [Wiki](https://github.com/sergejmueller/snitch/wiki)
7+
8+
49
## 1.1.4 / 21.04.2015
510

611
* Unterstützung für WordPress 4.2

inc/snitch_cpt.class.php

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -439,15 +439,15 @@ public static function manage_columns() {
439439
* @since 0.0.2
440440
* @change 0.0.3
441441
*
442-
* @hook array snitch_manage_columns
442+
* @hook array snitch_sortable_columns
443443
*
444444
* @return array $columns Array mit Spalten
445445
*/
446446

447447
public static function sortable_columns()
448448
{
449449
return (array)apply_filters(
450-
'snitch_manage_columns',
450+
'snitch_sortable_columns',
451451
array(
452452
'url' => 'url',
453453
'file' => 'file',
@@ -973,18 +973,24 @@ private static function _get_meta($post_id, $key)
973973
* Erweitert die sekundäre Links-Leiste
974974
*
975975
* @since 0.0.4
976-
* @change 1.1.1
976+
* @change 1.1.5
977977
*
978978
* @param array $views Array mit verfügbaren Links
979979
* @return array $views Array mit modifizierten Links
980980
*/
981981

982982
public static function views_edit($views)
983983
{
984-
return array(
985-
'paypal' => '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=ZAQUT9RLPW8QN" target="_blank">PayPal</a>',
986-
'flattr' => '<a href="https://flattr.com/t/1628977" target="_blank">Flattr</a>'
984+
$links = array(
985+
'paypal' => '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=ZAQUT9RLPW8QN" target="_blank">PayPal</a>',
986+
'flattr' => '<a href="https://flattr.com/t/1628977" target="_blank">Flattr</a>'
987987
);
988+
989+
if ( strpos(get_locale(), 'de') !== false ) {
990+
$links['wiki'] = '<a href="https://github.com/sergejmueller/snitch/wiki" target="_blank">Wiki</a>';
991+
}
992+
993+
return $links;
988994
}
989995

990996

readme.txt

Lines changed: 20 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ Network monitor for WordPress. Connection overview for monitoring and controllin
1818

1919
Network monitor for WordPress with connection overview for controlling and regulating data traffic from your site.
2020

21+
> For German users: [Beschreibung](https://github.com/sergejmueller/snitch) und [Dokumentation](https://github.com/sergejmueller/snitch/wiki) in Deutsch
22+
23+
2124
= Trust, But Verify =
2225

2326
*Snitch* monitors and logs the outgoing data stream of your WordPress site. It records every outbound connection from WordPress and provides a log table for administrators.
@@ -28,7 +31,7 @@ Network monitor for WordPress with connection overview for controlling and regul
2831

2932

3033
= Summary =
31-
*Snitch* writes a log of both authorized and blocked attempts of connectivity. An overall view provides transparency and lets you control outgoing connections initialized by plugins, themes, or WordPress. Further info and answers to frequently asked questions can be found in the [Snitch Handbook (German)](http://playground.ebiene.de/snitch-wordpress-netzwerkmonitor/).
34+
*Snitch* writes a log of both authorized and blocked attempts of connectivity. An overall view provides transparency and lets you control outgoing connections initialized by plugins, themes, or WordPress.
3235

3336
= In A Nutshell =
3437
* neat interface
@@ -42,44 +45,38 @@ Network monitor for WordPress with connection overview for controlling and regul
4245
* free of charge, no advertising
4346

4447

48+
= Requirements =
49+
* PHP 5.2.4
50+
* WordPress 3.8
51+
52+
4553
= Memory Usage =
46-
* Back-end: ~ 0,32 MB
47-
* Front-end: ~ 0,27 MB
54+
* Backend: ~ 0,32 MB
55+
* Frontend: ~ 0,27 MB
4856

4957

50-
= Available Languages =
58+
= Languages =
59+
* German
5160
* English
52-
* Deutsch
5361
* Русский
5462

5563

56-
= System Requirements =
57-
* WordPress 3.8 and higher
58-
* PHP 5.2.4 and newer
59-
60-
61-
= Donations =
62-
* Via [Flattr](https://flattr.com/t/1628977)
63-
* Via [PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZAQUT9RLPW8QN)
64-
65-
66-
= Handbook =
67-
* [Snitch: Netzwerkmonitor für WordPress (German)](http://playground.ebiene.de/snitch-wordpress-netzwerkmonitor/)
68-
69-
70-
= Translators =
71-
* English: [Caspar Hübinger](http://glueckpress.com)
72-
* Russian: [Sergej Müller](http://wpcoder.de)
64+
= Contributors =
65+
* [Caspar Hübinger](http://glueckpress.com)
66+
* [Bego Mario Garde](https://garde-medienberatung.de)
7367

7468

7569
= Author =
7670
* [Twitter](https://twitter.com/wpSEO)
7771
* [Google+](https://plus.google.com/110569673423509816572)
78-
* [Plugins](http://wpcoder.de)
72+
* [Plugins](http://wpcoder.de "WordPress Plugins")
7973

8074

8175
== Changelog ==
8276

77+
= 1.1.5 / 06.05.2015 =
78+
* [GitHub Repository](https://github.com/sergejmueller/snitch)
79+
8380
= 1.1.4 =
8481
* Support for WordPress 4.2
8582
* Nice to have: `admin_url()` for `edit.php` requests

snitch.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Author URI: http://wpcoder.de
99
Plugin URI: https://wordpress.org/extend/plugins/snitch/
1010
License: GPLv3 or later
11-
Version: 1.1.4
11+
Version: 1.1.5
1212
*/
1313

1414
/*

0 commit comments

Comments
 (0)