Version Description
- Development is now done in git.
Download this release
Release Info
Developer | janw.oostendorp |
Plugin | Default featured image |
Version | 1.7.2.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.2 to 1.7.2.1
- .wordpress-org/screenshot-1.png +0 -0
- .wordpress-org/screenshot-2.png +0 -0
- readme.txt +8 -2
- set-default-featured-image.php +2 -2
.wordpress-org/screenshot-1.png
CHANGED
Binary file
|
.wordpress-org/screenshot-2.png
CHANGED
Binary file
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: janwoostendorp
|
3 |
Tags: media, image
|
4 |
Requires at least: 3.5
|
5 |
-
Tested up to:
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 1.7.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -108,6 +108,12 @@ The following code will exclude the post/page with ID 23.
|
|
108 |
2. The media manager will start with the current selected image
|
109 |
|
110 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
= 1.7.1 =
|
112 |
* Fixed weird SVN deployment bug.
|
113 |
|
2 |
Contributors: janwoostendorp
|
3 |
Tags: media, image
|
4 |
Requires at least: 3.5
|
5 |
+
Tested up to: 6.0.1
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 1.7.2.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
108 |
2. The media manager will start with the current selected image
|
109 |
|
110 |
== Changelog ==
|
111 |
+
= 1.7.2.1 =
|
112 |
+
* Development is now done in git.
|
113 |
+
|
114 |
+
= 1.7.2 =
|
115 |
+
* Added extra context to a translation as suggested by [Alex Lion](https://wordpress.org/support/topic/i18n-issue-14/)
|
116 |
+
|
117 |
= 1.7.1 =
|
118 |
* Fixed weird SVN deployment bug.
|
119 |
|
set-default-featured-image.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Default featured image
|
4 |
* Plugin URI: http://wordpress.org/extend/plugins/default-featured-image/
|
5 |
* Description: Allows users to select a default featured image in the media settings
|
6 |
-
* Version: 1.7.2
|
7 |
* Requires at least: 4.0
|
8 |
* Requires PHP: 5.6
|
9 |
* Author: Jan Willem Oostendorp
|
@@ -14,7 +14,7 @@
|
|
14 |
* @package DFI
|
15 |
*/
|
16 |
|
17 |
-
define( 'DFI_VERSION', '1.7.2' );
|
18 |
define( 'DFI_DIR', plugin_dir_path( __FILE__ ) );
|
19 |
define( 'DFI_APP_DIR', DFI_DIR . 'app' . DIRECTORY_SEPARATOR );
|
20 |
define( 'DFI_URL', plugin_dir_url( __FILE__ ) );
|
3 |
* Plugin Name: Default featured image
|
4 |
* Plugin URI: http://wordpress.org/extend/plugins/default-featured-image/
|
5 |
* Description: Allows users to select a default featured image in the media settings
|
6 |
+
* Version: 1.7.2.1
|
7 |
* Requires at least: 4.0
|
8 |
* Requires PHP: 5.6
|
9 |
* Author: Jan Willem Oostendorp
|
14 |
* @package DFI
|
15 |
*/
|
16 |
|
17 |
+
define( 'DFI_VERSION', '1.7.2.1' );
|
18 |
define( 'DFI_DIR', plugin_dir_path( __FILE__ ) );
|
19 |
define( 'DFI_APP_DIR', DFI_DIR . 'app' . DIRECTORY_SEPARATOR );
|
20 |
define( 'DFI_URL', plugin_dir_url( __FILE__ ) );
|