Companion Auto Update - Version 2.9.1

Version Description

(2/25/2017)

Download this release

Release Info

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

Code changes from version 2.9 to 2.9.1

Files changed (3) hide show
  1. backend/style.css +79 -0
  2. companion-auto-update.php +4 -4
  3. readme.txt +22 -4
backend/style.css ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ h1 a {
2
+ text-decoration: none;
3
+ }
4
+ .returnbutton {
5
+ position: relative;
6
+ bottom: -6px;
7
+ }
8
+ thead .dashicons, tfoot .dashicons {
9
+ position: relative;
10
+ left: -3px;
11
+ top: -2px;
12
+ color: rgba(0,0,0,0.2);
13
+ }
14
+ thead .check-column, tfoot .check-column {
15
+ text-align: center!important;
16
+ }
17
+ #the-list .check-column {
18
+ position: relative;
19
+ min-width: 55px;
20
+ }
21
+ #the-list input[type="checkbox"]:not(:checked), #the-list input[type="checkbox"]:checked {
22
+ width: 45px;
23
+ height: 45px;
24
+ position: absolute;
25
+ top: 0;
26
+ bottom: 0;
27
+ z-index: 100;
28
+ display: block;
29
+ opacity: 0;
30
+ }
31
+ #the-list input[type="checkbox"]:not(:checked) + label, #the-list input[type="checkbox"]:checked + label {
32
+ position: absolute;
33
+ top: 15px;
34
+ left: 12px;
35
+ cursor: pointer;
36
+ }
37
+ #the-list input[type="checkbox"]:not(:checked) + label:before, #the-list input[type="checkbox"]:checked + label:before, #the-list input[type="checkbox"]:not(:checked) + label:after, #the-list input[type="checkbox"]:checked + label:after {
38
+ content: '';
39
+ position: absolute;
40
+ }
41
+ #the-list input[type="checkbox"]:not(:checked) + label:before, #the-list input[type="checkbox"]:checked + label:before {
42
+ left: 0;
43
+ top: -3px;
44
+ width: 45px;
45
+ height: 25px;
46
+ background: #DDDDDD;
47
+ border-radius: 15px;
48
+ transition: background-color .2s;
49
+ }
50
+ #the-list input[type="checkbox"]:not(:checked) + label:after, #the-list input[type="checkbox"]:checked + label:after {
51
+ width: 15px;
52
+ height: 15px;
53
+ transition: all .2s;
54
+ border-radius: 500px;
55
+ background: #7F8C9A;
56
+ top: 2px;
57
+ left: 5px;
58
+ }
59
+ /* on checked */
60
+ #the-list input[type="checkbox"]:not(:checked) + label:before {
61
+ background: #0073AA;
62
+ }
63
+ #the-list input[type="checkbox"]:not(:checked) + label:after {
64
+ background: #FFF;
65
+ top: 2px;
66
+ left: 25px;
67
+ }
68
+ #the-list tr.inactive {
69
+ background: #FEF7F1;
70
+ }
71
+ #the-list tr.inactive .check-column {
72
+ border-left: 3px solid #D54E21;
73
+ }
74
+ #the-list tr.inactive .status {
75
+ color: #BF3D3C;
76
+ }
77
+ #the-list tr.active .status {
78
+ color: rgba(0,0,0,0.4);
79
+ }
companion-auto-update.php CHANGED
@@ -1,17 +1,17 @@
1
  <?php
2
  /*
3
  * Plugin Name: Companion Auto Update
4
- * Plugin URI: http://codeermeneer.nl/portfolio/companion-auto-update/
5
  * Description: This plugin auto updates all plugins, all themes and the wordpress core.
6
- * Version: 2.9.0
7
  * Author: Qreative-Web
8
- * Author URI: http://codeermeneer.nl/
9
  * Contributors: papin
10
  * License: GPLv2 or later
11
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
  * Text Domain: companion-auto-update
13
  * Domain Path: /languages/
14
- */
15
 
16
  // Disable direct access
17
  defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
1
  <?php
2
  /*
3
  * Plugin Name: Companion Auto Update
4
+ * Plugin URI: http://codeermeneer.nl/portfolio/companion-auto-update
5
  * Description: This plugin auto updates all plugins, all themes and the wordpress core.
6
+ * Version: 2.9.1
7
  * Author: Qreative-Web
8
+ * Author URI: http://codeermeneer.nl
9
  * Contributors: papin
10
  * License: GPLv2 or later
11
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
  * Text Domain: companion-auto-update
13
  * Domain Path: /languages/
14
+ */
15
 
16
  // Disable direct access
17
  defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.me/dakel/1
4
  Tags: auto, automatic, background, update, updates, updating, 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, plugin, theme, advance, control, mail, notifations, enable
5
  Requires at least: 3.5.0
6
  Tested up to: 4.7
7
- Stable tag: 2.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -57,14 +57,32 @@ Submit your translations [Here](https://translate.wordpress.org/projects/wp-plug
57
  = Settings =
58
  1. Configure this plugin via Tools > Auto updater.
59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  == Screenshots ==
61
 
62
  1. Easily configure what you'd like to auto-update and what not
63
  2. If you have disabled one or multiple auto-updates, we can email you when an update is available.
64
 
65
- == Changelog ==
 
 
 
 
66
 
67
- = 2.9 =
68
  * Advanced Controls: You can control auto-updating per plugin via the plugin filter.
69
 
70
  = 2.8.1 =
@@ -106,4 +124,4 @@ Submit your translations [Here](https://translate.wordpress.org/projects/wp-plug
106
  * You can now select what to update and what not (plugins, themes, major and minor core updates)
107
 
108
  = 1.0 =
109
- * Initital release
4
  Tags: auto, automatic, background, update, updates, updating, 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, plugin, theme, advance, control, mail, notifations, enable
5
  Requires at least: 3.5.0
6
  Tested up to: 4.7
7
+ Stable tag: 2.9.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
57
  = Settings =
58
  1. Configure this plugin via Tools > Auto updater.
59
 
60
+ == Frequently Asked Questions ==
61
+
62
+ = How often does this plugin check for updates? =
63
+
64
+ It's constantly checking for updates. If you have more visitors, it'll check more often.
65
+
66
+ = How often does it actually update? =
67
+
68
+ The auto-updater is run once twice a day.
69
+
70
+ = Can I change how often it checks and/or updates? =
71
+
72
+ Not yet, I'll add an setting to change this soon.
73
+
74
  == Screenshots ==
75
 
76
  1. Easily configure what you'd like to auto-update and what not
77
  2. If you have disabled one or multiple auto-updates, we can email you when an update is available.
78
 
79
+ == Changelog ==
80
+
81
+
82
+ = 2.9.1 (2/25/2017) =
83
+ * Added a little bit of styling to the plugin filter to make it easier to understand.
84
 
85
+ = 2.9 (2/24/2017) =
86
  * Advanced Controls: You can control auto-updating per plugin via the plugin filter.
87
 
88
  = 2.8.1 =
124
  * You can now select what to update and what not (plugins, themes, major and minor core updates)
125
 
126
  = 1.0 =
127
+ * Initital release