Companion Auto Update - Version 2.0.2

Version Description

  • Fixed issue where setting would show up multiple times when re-activating multiple times
  • Added settings link to plugin list
Download this release

Release Info

Developer Papin
Plugin Icon 128x128 Companion Auto Update
Version 2.0.2
Comparing to
See all releases

Code changes from version 2.0.1 to 2.0.2

companion-auto-update.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Companion Auto Update
4
  * Plugin URI: https://qreative-web.com
5
  * Description: This plugin auto updates all plugins, all themes and the wordpress core.
6
- * Version: 2.0.1
7
  * Author: Qreative-Web
8
  * Author URI: https://qreative-web.com
9
  * Contributors: papin
@@ -217,4 +217,15 @@ class CAU_auto_update {
217
 
218
  new CAU_auto_update();
219
 
 
 
 
 
 
 
 
 
 
 
 
220
  ?>
3
  * Plugin Name: Companion Auto Update
4
  * Plugin URI: https://qreative-web.com
5
  * Description: This plugin auto updates all plugins, all themes and the wordpress core.
6
+ * Version: 2.0.2
7
  * Author: Qreative-Web
8
  * Author URI: https://qreative-web.com
9
  * Contributors: papin
217
 
218
  new CAU_auto_update();
219
 
220
+ // Add settings link on plugin page
221
+ function cau_settings_link( $links ) {
222
+
223
+ $settings_link = '<a href="tools.php?page=cau-settings">'.__('Settings', 'companion-auto-update' ).'</a>';
224
+ array_unshift($links, $settings_link);
225
+ return $links;
226
+
227
+ }
228
+ $plugin = plugin_basename(__FILE__);
229
+ add_filter("plugin_action_links_$plugin", 'cau_settings_link' );
230
+
231
  ?>
languages/companion-auto-update-nl_NL.mo CHANGED
Binary file
languages/companion-auto-update-nl_NL_formal.mo CHANGED
Binary file
languages/companion-auto-update.pot CHANGED
@@ -37,6 +37,10 @@ msgstr ""
37
  msgid "Settings saved"
38
  msgstr ""
39
 
 
 
 
 
40
  #. Plugin Name of the plugin/theme
41
  msgid "Companion Auto Update"
42
  msgstr ""
37
  msgid "Settings saved"
38
  msgstr ""
39
 
40
+ #: companion_portfolio.php:125
41
+ msgid "Settings"
42
+ msgstr ""
43
+
44
  #. Plugin Name of the plugin/theme
45
  msgid "Companion Auto Update"
46
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.me/dakel/1
4
  Tags: auto, automatic, background, update, updates, automatic updates, automatic background updates, easy update, wordpress update, theme update, plugin update, up-to-date, security, update latest version, update core, update wp, update wp core, major updates, minor updates, update to new version, update core, update plugin, update plugins, update plugins automatically, update theme
5
  Requires at least: 3.5.0
6
  Tested up to: 4.5
7
- Stable tag: 2.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -15,6 +15,9 @@ This plugin automatically updates all plugins, all themes and the wordpress core
15
  = Keep your website safe! =
16
  This plugin automatically updates all plugins, all themes and the wordpress core (both major and minor updates), you can configure whether you want to update everything (default) or only some.
17
 
 
 
 
18
  == Installation ==
19
 
20
  1. Download Companion Auto Update.
@@ -23,12 +26,13 @@ This plugin automatically updates all plugins, all themes and the wordpress core
23
 
24
  == Screenshots ==
25
 
26
- 1. Configure what to update and what not
27
 
28
  == Changelog ==
29
 
30
- = 2.0.1 =
31
  * Fixed issue where setting would show up multiple times when re-activating multiple times
 
32
 
33
  = 2.0 =
34
  * You can now select what to update and what not (plugins, themes, major and minor core updates)
4
  Tags: auto, automatic, background, update, updates, automatic updates, automatic background updates, easy update, wordpress update, theme update, plugin update, up-to-date, security, update latest version, update core, update wp, update wp core, major updates, minor updates, update to new version, update core, update plugin, update plugins, update plugins automatically, update theme
5
  Requires at least: 3.5.0
6
  Tested up to: 4.5
7
+ Stable tag: 2.0.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
15
  = Keep your website safe! =
16
  This plugin automatically updates all plugins, all themes and the wordpress core (both major and minor updates), you can configure whether you want to update everything (default) or only some.
17
 
18
+ = Configure =
19
+ Perhaps you don't want everything to auto-update because you've made some modifications to a theme of plugin, that's ok! you can simply uncheck everything that you don't want to update.
20
+
21
  == Installation ==
22
 
23
  1. Download Companion Auto Update.
26
 
27
  == Screenshots ==
28
 
29
+ 1. Easily configure what you'd like to auto-update and what not
30
 
31
  == Changelog ==
32
 
33
+ = 2.0.2 =
34
  * Fixed issue where setting would show up multiple times when re-activating multiple times
35
+ * Added settings link to plugin list
36
 
37
  = 2.0 =
38
  * You can now select what to update and what not (plugins, themes, major and minor core updates)