Skip to content

Commit 794f7ad

Browse files
committed
1.4.0 versioning
1 parent 8580be9 commit 794f7ad

File tree

8 files changed

+42
-42
lines changed

8 files changed

+42
-42
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ sftp-config.json
2626
!/includes/tmp/index.php
2727
/node_modules
2828
/vendor
29+
/includes/tmp
30+
tmp
31+
.tmp
2932
composer.lock
3033

3134
### Builds ###

ChangeLog.md

Lines changed: 31 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,61 @@
11
# Changelog
22

3-
### 1.4.0 (01 Dec 2015)
4-
* Internal changes, improved usage of Composer in plugin development
5-
* Support for WordPress language packs
6-
* Updated PHP Console Library to 3.1.5
7-
* Tested up to WordPress 4.4
3+
### 1.4.0 (11 Jan 2016)
4+
* Improved error and exception handling
5+
* Internal changes, improved usage of Composer in plugin development
6+
* Support for WordPress language packs
7+
* Updated PHP Console Library to 3.1.5
8+
* Tested up to WordPress 4.4.1
89

910
### 1.3.9 (09 sep 2015)
10-
* Use WP Requirements as Composer dependency
11+
* Use WP Requirements as Composer dependency
1112

1213
### 1.3.8 (14 jul 2015)
13-
* Internal changes (alternate PHP version check, automated SVN deploys)
14+
* Internal changes (alternate PHP version check, automated SVN deploys)
1415

1516
### 1.3.7 (09 jul 2015)
16-
* Fixes a bug `Cannot send session cache limiter - headers already sent`
17-
* Updated PHP Console Library to 3.1.4
17+
* Fixes a bug `Cannot send session cache limiter - headers already sent`
18+
* Updated PHP Console Library to 3.1.4
1819

1920
### 1.3.5 (10 jun 2015)
20-
* PHP 5.4.0 is the minimum required version to activate the plugin
21-
* Updated PHP Console library to 3.1.3
21+
* PHP 5.4.0 is the minimum required version to activate the plugin
22+
* Updated PHP Console library to 3.1.3
2223

2324
### 1.3.3 (30 apr 2015)
24-
* Supports WordPress 4.2
25+
* Supports WordPress 4.2
2526

2627
### 1.3.2 (03 mar 2015)
27-
* Fixes "Fatal error: Using $this when not in object context" upon activation in some installations.
28+
* Fixes "Fatal error: Using $this when not in object context" upon activation in some installations.
2829

2930
### 1.3.1 (09 feb 2015)
30-
* Enhancement: earlier PC initialisation - props @Polfo
31-
* Updated readme files.
31+
* Enhancement: earlier PC initialisation - props @Polfo
32+
* Updated readme files.
3233

3334
### 1.3.0 (05 feb 2015)
34-
* Fix: IP mask
35-
* Enhancement: added configuration options - props @Polfo
36-
- Register PC class
37-
- Show Call Stack
38-
- Short Path Names
35+
* Fix: IP mask
36+
* Enhancement: added configuration options - props @Polfo
37+
- Register PC class
38+
- Show Call Stack
39+
- Short Path Names
3940

4041
### 1.2.3 (21 jan 2015)
41-
* Fixes "Wrong PHP Console eval request signature" error when executing WordPress code from terminal, props @Polfo @barbushin
42+
* Fixes "Wrong PHP Console eval request signature" error when executing WordPress code from terminal, props @Polfo @barbushin
4243

4344
### 1.2.2 (15 jan 2015)
44-
* Bugfixes
45-
* Submission to WordPress.org plugins repository.
45+
* Bugfixes
46+
* Submission to WordPress.org plugins repository.
4647

4748
### 1.2.1 (12 dec 2014)
48-
* Fixed allowed IPs bug.
49+
* Fixed allowed IPs bug.
4950

5051
### 1.2.0 (11 dec 2014)
51-
* Updated dependencies and got rid of git submodules.
52+
* Updated dependencies and got rid of git submodules.
5253

5354
### 1.1.0 (07 nov 2014)
54-
* Added donation link/button.
55-
* PHP Console server is now instantiated later, allowing to catch all your theme functions too.
56-
* Included PHP Console server library as git submodule rather than a composer dependency.
55+
* Added donation link/button.
56+
* PHP Console server is now instantiated later, allowing to catch all your theme functions too.
57+
* Included PHP Console server library as git submodule rather than a composer dependency.
5758

5859
### 1.0.0 (06 nov 2014)
59-
* Added three options to set a custom password, enable on SSL only, authorized IP ranges.
60-
* First public release.
60+
* Added three options to set a custom password, enable on SSL only, authorized IP ranges.
61+
* First public release.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "unfulvio/wp-php-console",
33
"description": "A WordPress implementation of PHP Console.",
44
"type": "wordpress-plugin",
5-
"version": "1.4.1",
5+
"version": "1.4.0",
66
"keywords": ["wordpress", "debug", "debugging", "development", "php-console", "console", "terminal", "command-line", "cli" ],
77
"homepage": "https://github.com/unfulvio/wp-php-console",
88
"license": "GPLv2.0+",

includes/class-wp-php-console.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function __construct() {
6969

7070
$this->plugin_name = 'WP PHP Console';
7171
$this->plugin_slug = 'wp-php-console';
72-
$this->version = '1.4.1';
72+
$this->version = '1.4.0';
7373
$this->options = $this->get_options();
7474

7575
// Bail out if PHP Console can't be found
@@ -136,7 +136,7 @@ public function __construct() {
136136
/**
137137
* Get WP PHP Console settings options.
138138
*
139-
* @since 1.4.1
139+
* @since 1.4.0
140140
* @return array
141141
*/
142142
protected function get_options() {
@@ -147,7 +147,7 @@ protected function get_options() {
147147
/**
148148
* Prints an exception message as WordPress admin notice
149149
*
150-
* @since 1.4.1
150+
* @since 1.4.0
151151
* @param \Exception $e Exception object
152152
* @return void
153153
*/

includes/tmp/index.php

Lines changed: 0 additions & 2 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "wp-php-console",
33
"title": "WP PHP Console",
44
"description": "An implementation of PHP Console as a WordPress plugin. Use Chrome Dev Tools to debug your WordPress installation!",
5-
"version": "1.4.1",
5+
"version": "1.4.0",
66
"homepage": "https://wordpress.org/plugins/wp-php-console/",
77
"repository": {
88
"type": "git",

readme.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,14 +123,12 @@ None.
123123

124124
== Changelog ==
125125

126-
= 1.4.1 =
127-
* Improved error and exception handling
128-
129126
= 1.4.0 =
127+
* Improved error and exception handling
130128
* Internal changes, improved usage of Composer in plugin development
131129
* Support for WordPress language packs
132130
* Updated PHP Console Library to 3.1.5
133-
* Tested up to WordPress 4.4
131+
* Tested up to WordPress 4.4.1
134132

135133
= 1.3.9 =
136134
* Use WP Requirements as Composer dependency.

wp-php-console.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin URI: https://github.com/unfulvio/wp-php-console/
55
* Description: An implementation of PHP Console for WordPress. Easily debug and trace PHP errors and warnings from your Chrome dev tools console using a Google Chrome extension.
66
*
7-
* Version: 1.4.1
7+
* Version: 1.4.0
88
*
99
* Author: Fulvio Notarstefano
1010
* Author URI: https://github.com/unfulvio/

0 commit comments

Comments
 (0)