updated plugin `Gitium` version 1.0.6

This commit is contained in:
KawaiiPunk 2023-12-08 23:23:16 +00:00 committed by Gitium
parent ed9b10d2ea
commit 7757a3febe
3 changed files with 9 additions and 4 deletions

View File

@ -1,7 +1,7 @@
<?php <?php
/** /**
* Plugin Name: Gitium * Plugin Name: Gitium
* Version: 1.0.5 * Version: 1.0.6
* Author: Presslabs * Author: Presslabs
* Author URI: https://www.presslabs.com * Author URI: https://www.presslabs.com
* License: GPL2 * License: GPL2

View File

@ -93,9 +93,11 @@ class Git_Wrapper {
private $last_error = ''; private $last_error = '';
private $gitignore = GITIGNORE; private $gitignore = GITIGNORE;
private $repo_dir = '';
private $private_key = '';
function __construct( $repo_dir ) { function __construct( $repo_dir ) {
$this->repo_dir = $repo_dir; $this->repo_dir = $repo_dir;
$this->private_key = '';
} }
function _rrmdir( $dir ) { function _rrmdir( $dir ) {

View File

@ -7,7 +7,7 @@ Requires at least: 4.7
Tested up to: 6.2.2 Tested up to: 6.2.2
Requires PHP: 5.6 Requires PHP: 5.6
License: GPLv2 License: GPLv2
Stable tag: 1.0.5 Stable tag: 1.0.6
License URI: http://www.gnu.org/licenses/gpl-2.0.html License URI: http://www.gnu.org/licenses/gpl-2.0.html
Automatic git version control and deployment for your plugins and themes integrated into wp-admin. Automatic git version control and deployment for your plugins and themes integrated into wp-admin.
@ -101,6 +101,9 @@ Fixed wrong redirection for multisite installations during initial setup
== Changelog == == Changelog ==
= 1.0.6 =
* Fixed deprecation warnings for dynamic property in git-wrapper
= 1.0.5 = = 1.0.5 =
* Various bug fixes * Various bug fixes