Skip to content

Commit 003c7d2

Browse files
committed
Bump 1.2.4
1 parent 1778000 commit 003c7d2

17 files changed

+20
-11
lines changed

LICENSE

100644100755
File mode changed.

colorbox/colorbox.css

100644100755
File mode changed.

colorbox/images/controls.png

100644100755
File mode changed.

colorbox/images/loading.gif

100644100755
File mode changed.

colorbox/jquery.colorbox-min.js

100644100755
File mode changed.

developer.css

100644100755
File mode changed.

developer.js

100644100755
File mode changed.

developer.php

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Plugin Name: Developer
66
Plugin URI: http://wordpress.org/extend/plugins/developer/
77
Description: The first stop for every WordPress developer
8-
Version: 1.2.2
8+
Version: 1.2.4
99
Author: Automattic
1010
Author URI: http://automattic.com
1111
License: GPLv2 or later
@@ -25,7 +25,7 @@ class Automattic_Developer {
2525
public $settings = array();
2626
public $default_settings = array();
2727

28-
const VERSION = '1.2.2';
28+
const VERSION = '1.2.4';
2929
const OPTION = 'a8c_developer';
3030
const PAGE_SLUG = 'a8c_developer';
3131

@@ -485,7 +485,7 @@ public function settings_page() {
485485

486486
// Constants
487487
add_settings_section( 'a8c_developer_constants', esc_html__( 'Constants', 'a8c-developer' ), array( $this, 'settings_section_constants' ), self::PAGE_SLUG . '_status' );
488-
488+
489489
$recommended_constants = $this->get_recommended_constants();
490490

491491
foreach ( $recommended_constants as $constant => $constant_details ) {
@@ -712,7 +712,7 @@ public function get_plugin_details( $slug ){
712712

713713
if ( false === ( $details = get_transient( $cache_key ) ) ) {
714714
$request = wp_remote_get( 'http://api.wordpress.org/plugins/info/1.0/' . esc_url( $slug ), array( 'timeout' => 15 ) );
715-
715+
716716
if ( is_wp_error( $request ) ) {
717717
$details = new WP_Error('a8c_developer_plugins_api_failed', __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="http://wordpress.org/support/">support forums</a>.' ), $request->get_error_message() );
718718
} else {
@@ -733,7 +733,7 @@ public function get_plugin_details( $slug ){
733733
*
734734
* Only returns plugins that have been recommended for the project type defined
735735
* in $this->settings['project_type']
736-
*
736+
*
737737
* @return array An array of plugins recommended for the current project type
738738
*/
739739
public function get_recommended_plugins() {
@@ -742,7 +742,7 @@ public function get_recommended_plugins() {
742742

743743
/**
744744
* Return an array of all plugins recommended for the given project type
745-
*
745+
*
746746
* @param string $type The project type to return plugins for
747747
* @return array An associative array of plugins for the project type
748748
*/
@@ -764,7 +764,7 @@ public function get_recommended_plugins_by_type( $type ) {
764764
*
765765
* Determines whether or not a given $plugin_slug is recommended for a given $project_type
766766
* by checking the project types defined for it
767-
*
767+
*
768768
* @param string $plugin_slug The plugin slug to check
769769
* @param string $project_type The project type to check the plugin against
770770
* @return bool Boolean indicating if the plugin is recommended for the project type
@@ -788,7 +788,7 @@ public function plugin_is_recommended_for_project_type( $plugin_slug, $project_t
788788
*
789789
* Only returns constants that have been recommended for the project type defined
790790
* in $this->settings['project_type']
791-
*
791+
*
792792
* @return array An array of constants recommended for the current project type
793793
*/
794794
public function get_recommended_constants() {
@@ -797,7 +797,7 @@ public function get_recommended_constants() {
797797

798798
/**
799799
* Return an array of all constants recommended for the given project type
800-
*
800+
*
801801
* @param string $type The project type to return constants for
802802
* @return array An associative array of constants for the project type
803803
*/
@@ -819,7 +819,7 @@ public function get_recommended_constants_by_type( $type ) {
819819
*
820820
* Determines whether or not a given $constant is recommended for a given $project_type
821821
* by checking the project types defined for it
822-
*
822+
*
823823
* @param string $constant The constant to check
824824
* @param string $project_type The project type to check the constant against
825825
* @return bool Boolean indicating if the constant is recommended for the project type

includes/class-empty-upgrader-skin.php

100644100755
File mode changed.

languages/a8c-developer-fr_FR.mo

100644100755
File mode changed.

languages/a8c-developer-fr_FR.po

100644100755
File mode changed.

languages/developer.pot

100644100755
File mode changed.

readme.txt

+10-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: automattic, batmoo, Viper007Bond, nbachiyski, tott, danielbachhube
33
Tags: developer, development, local
44
Requires at least: 3.4
55
Tested up to: 3.6
6-
Stable tag: 1.2.2
6+
Stable tag: 1.2.4
77
License: GPLv2 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99

@@ -40,6 +40,15 @@ Because you haven't asked one yet.
4040

4141
== Changelog ==
4242

43+
= 1.2.4 (2013-10-08) =
44+
* Don't recommend Beta Tester if we have a dev version of WordPress
45+
* Fix cache key length
46+
47+
= 1.2.3 (2013-09-17) =
48+
* Add WP-CLI 0.11.2 compatibility
49+
* WP-CLI: Mark selected type as active
50+
* Fix strict errors in upgrader
51+
4352
= 1.2.2 (2013-08-09) =
4453
* Added WP-CLI command
4554
* Removed Grunion Contact Form because it's part of Jetpack

screenshot-1.png

100644100755
File mode changed.

screenshot-2.png

100644100755
File mode changed.

screenshot-3.png

100644100755
File mode changed.

screenshot-4.png

100644100755
File mode changed.

0 commit comments

Comments
 (0)