My Custom Functions - Version 4.12

Version Description

  • The plugin is fully tested for compatibility with WordPress version 4.9.
  • CSS code improved.
Download this release

Release Info

Developer Arthur Gareginyan
Plugin Icon 128x128 My Custom Functions
Version 4.12
Comparing to
See all releases

Code changes from version 4.11 to 4.12

Files changed (3) hide show
  1. inc/css/admin.css +14 -0
  2. my-custom-functions.php +1 -1
  3. readme.txt +16 -2
inc/css/admin.css CHANGED
@@ -149,6 +149,8 @@ h2 .version {
149
  background: #fff;
150
  border: 1px solid #d9d9d9;
151
  box-shadow: 0 1px 2px 0 #d9d9d9;
 
 
152
  border-radius: 0.3rem;
153
  }
154
  .tabs-nav:after {
@@ -165,6 +167,8 @@ h2 .version {
165
  margin-bottom: 0;
166
  }
167
  .tabs-nav li:first-of-type a {
 
 
168
  border-radius: 3px 0 0 3px;
169
  }
170
  .tabs-nav li.active:before {
@@ -251,6 +255,8 @@ h2 .version {
251
  height: 150px;
252
  padding: 10px;
253
  margin-right: 20px;
 
 
254
  border-radius: 15px;
255
  }
256
  .hello-message .modal-body .emoji {
@@ -335,6 +341,8 @@ h2 .version {
335
  .button-save-main {
336
  width: 100%;
337
  margin-bottom: 20px;
 
 
338
  border-radius: 0;
339
  }
340
 
@@ -345,6 +353,8 @@ h2 .version {
345
  z-index: 999;
346
  top: 32px;
347
  width: 55px;
 
 
348
  border-radius: 0;
349
  text-align: left;
350
  transition: all 300ms;
@@ -385,6 +395,8 @@ h2 .version {
385
  font-weight: 600;
386
  text-shadow: 1px 1px 0 #fff;
387
  border-bottom-color: rgba(0, 0, 0, 0.4);
 
 
388
  border-radius: 3px !important;
389
  background-image: -moz-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
390
  background-image: -ms-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
@@ -444,6 +456,8 @@ h2 .version {
444
  font-weight: bold;
445
  background-color: #00c8c8;
446
  color: white;
 
 
447
  border-radius: 50%;
448
  }
449
 
149
  background: #fff;
150
  border: 1px solid #d9d9d9;
151
  box-shadow: 0 1px 2px 0 #d9d9d9;
152
+ -webkit-border-radius: 0.3rem;
153
+ -moz-border-radius: 0.3rem;
154
  border-radius: 0.3rem;
155
  }
156
  .tabs-nav:after {
167
  margin-bottom: 0;
168
  }
169
  .tabs-nav li:first-of-type a {
170
+ -webkit-border-radius: 3px 0 0 3px;
171
+ -moz-border-radius: 3px 0 0 3px;
172
  border-radius: 3px 0 0 3px;
173
  }
174
  .tabs-nav li.active:before {
255
  height: 150px;
256
  padding: 10px;
257
  margin-right: 20px;
258
+ -webkit-border-radius: 15px;
259
+ -moz-border-radius: 15px;
260
  border-radius: 15px;
261
  }
262
  .hello-message .modal-body .emoji {
341
  .button-save-main {
342
  width: 100%;
343
  margin-bottom: 20px;
344
+ -webkit-border-radius: 0;
345
+ -moz-border-radius: 0;
346
  border-radius: 0;
347
  }
348
 
353
  z-index: 999;
354
  top: 32px;
355
  width: 55px;
356
+ -webkit-border-radius: 0;
357
+ -moz-border-radius: 0;
358
  border-radius: 0;
359
  text-align: left;
360
  transition: all 300ms;
395
  font-weight: 600;
396
  text-shadow: 1px 1px 0 #fff;
397
  border-bottom-color: rgba(0, 0, 0, 0.4);
398
+ -webkit-border-radius: 3px !important;
399
+ -moz-border-radius: 3px !important;
400
  border-radius: 3px !important;
401
  background-image: -moz-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
402
  background-image: -ms-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
456
  font-weight: bold;
457
  background-color: #00c8c8;
458
  color: white;
459
+ -webkit-border-radius: 50%;
460
+ -moz-border-radius: 50%;
461
  border-radius: 50%;
462
  }
463
 
my-custom-functions.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin area, without the need to have an external editor.
6
  * Author: Arthur Gareginyan
7
  * Author URI: https://www.arthurgareginyan.com
8
- * Version: 4.11
9
  * License: GPL3
10
  * Text Domain: my-custom-functions
11
  * Domain Path: /languages/
5
  * Description: Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin area, without the need to have an external editor.
6
  * Author: Arthur Gareginyan
7
  * Author URI: https://www.arthurgareginyan.com
8
+ * Version: 4.12
9
  * License: GPL3
10
  * Text Domain: my-custom-functions
11
  * Domain Path: /languages/
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Arthur Gareginyan
3
  Tags: code, php, function, snippet, custom, execute, edit, editing, editor, functionality plugin, codemirror, syntax highlighting, syntaxhighlighting, syntax highlighter, syntaxhighlighter, syntax,
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
- Tested up to: 4.8
7
- Stable tag: 4.11
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -62,6 +62,16 @@ This plugin is ready for translation and has already been translated into severa
62
 
63
  If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/my-custom-functions).
64
 
 
 
 
 
 
 
 
 
 
 
65
  **Contribution**
66
 
67
  Developing plugins is long and tedious work. If you benefit or enjoy this plugin please take the time to:
@@ -197,6 +207,10 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
197
 
198
  == Changelog ==
199
 
 
 
 
 
200
  = 4.11 =
201
  * German translation added. (Thanks to Michael)
202
  * Spanish translation updated. (Thanks to Patricio Toledo)
3
  Tags: code, php, function, snippet, custom, execute, edit, editing, editor, functionality plugin, codemirror, syntax highlighting, syntaxhighlighting, syntax highlighter, syntaxhighlighter, syntax,
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
+ Tested up to: 4.9
7
+ Stable tag: 4.12
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
62
 
63
  If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/my-custom-functions).
64
 
65
+ **System requirements**
66
+
67
+ * [PHP](https://php.net) version **5.2** or higher.
68
+ * [MySQL](https://www.mysql.com) version **5.0** or higher.
69
+
70
+ **Recommendations:**
71
+
72
+ * [PHP](https://php.net) version **7.0** or higher.
73
+ * [MySQL](https://www.mysql.com) version **5.6** or higher.
74
+
75
  **Contribution**
76
 
77
  Developing plugins is long and tedious work. If you benefit or enjoy this plugin please take the time to:
207
 
208
  == Changelog ==
209
 
210
+ = 4.12 =
211
+ * The plugin is fully tested for compatibility with WordPress version 4.9.
212
+ * CSS code improved.
213
+
214
  = 4.11 =
215
  * German translation added. (Thanks to Michael)
216
  * Spanish translation updated. (Thanks to Patricio Toledo)