This commit is contained in:
commit
1cbb0a5aea
@ -1,5 +1,10 @@
|
||||
# Notice Manager Changelog
|
||||
|
||||
## 0.18
|
||||
|
||||
### Minor
|
||||
- Version bump everywhere.
|
||||
|
||||
## 0.17
|
||||
|
||||
### Removed
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
"name": "abuyoyo/notice-manager",
|
||||
"description": "Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link.",
|
||||
"type": "wordpress-plugin",
|
||||
"version": "0.17",
|
||||
"version": "0.18",
|
||||
"repositories": [
|
||||
{
|
||||
"type": "vcs",
|
||||
@ -11,7 +11,7 @@
|
||||
],
|
||||
"require":{
|
||||
"abuyoyo/screen-meta-links": "~0.11",
|
||||
"abuyoyo/plugincore": "~0.22",
|
||||
"abuyoyo/plugincore": "~0.23",
|
||||
"abuyoyo/adminmenupage": "~0.21"
|
||||
}
|
||||
}
|
||||
18
composer.lock
generated
18
composer.lock
generated
@ -4,7 +4,7 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "5d77ff6e04d24911491a5e639a4d1dd1",
|
||||
"content-hash": "c7eb351b97392f663e147702dbc845b9",
|
||||
"packages": [
|
||||
{
|
||||
"name": "abuyoyo/adminmenupage",
|
||||
@ -46,18 +46,22 @@
|
||||
},
|
||||
{
|
||||
"name": "abuyoyo/plugincore",
|
||||
"version": "0.22",
|
||||
"version": "0.23",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/abuyoyo/PluginCore.git",
|
||||
"reference": "736b38d82fc41c7102ec28f386f4df807a10ab05"
|
||||
"reference": "0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/abuyoyo/PluginCore/zipball/736b38d82fc41c7102ec28f386f4df807a10ab05",
|
||||
"reference": "736b38d82fc41c7102ec28f386f4df807a10ab05",
|
||||
"url": "https://api.github.com/repos/abuyoyo/PluginCore/zipball/0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4",
|
||||
"reference": "0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4",
|
||||
"shasum": ""
|
||||
},
|
||||
"suggest": {
|
||||
"abuyoyo/adminmenupage": "~0.20",
|
||||
"yahnis-elsts/plugin-update-checker": "~4.12"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
@ -71,9 +75,9 @@
|
||||
"description": "WordPress plugin core helper class",
|
||||
"support": {
|
||||
"issues": "https://github.com/abuyoyo/PluginCore/issues",
|
||||
"source": "https://github.com/abuyoyo/PluginCore/tree/0.22"
|
||||
"source": "https://github.com/abuyoyo/PluginCore/tree/0.23"
|
||||
},
|
||||
"time": "2022-08-05T00:00:00+00:00"
|
||||
"time": "2022-08-06T00:00:00+00:00"
|
||||
},
|
||||
{
|
||||
"name": "abuyoyo/screen-meta-links",
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
/**
|
||||
* Plugin Name: Notice Manager
|
||||
* Description: Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link.
|
||||
* Version: 0.17
|
||||
* Version: 0.18
|
||||
* Author: abuyoyo
|
||||
* Author URI: https://github.com/abuyoyo/
|
||||
* Plugin URI: https://github.com/abuyoyo/notice-manager
|
||||
|
||||
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "notice-manager",
|
||||
"version": "0.16.0",
|
||||
"version": "0.18.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "notice-manager",
|
||||
"version": "0.16.0",
|
||||
"version": "0.18.0",
|
||||
"description": "Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link.",
|
||||
"author": "abuyoyo",
|
||||
"repository": {
|
||||
|
||||
6
vendor/abuyoyo/plugincore/CHANGELOG.md
vendored
6
vendor/abuyoyo/plugincore/CHANGELOG.md
vendored
@ -1,5 +1,11 @@
|
||||
# WPHelper\PluginCore Changelog
|
||||
|
||||
## 0.23
|
||||
Release Date: Aug 8, 2022
|
||||
|
||||
### Fixed
|
||||
- Minor fixes.
|
||||
|
||||
## 0.22
|
||||
Release Date: Aug 8, 2022
|
||||
|
||||
|
||||
2
vendor/abuyoyo/plugincore/PluginCore.php
vendored
2
vendor/abuyoyo/plugincore/PluginCore.php
vendored
@ -18,7 +18,7 @@ if ( ! class_exists( 'WPHelper/PluginCore' ) ):
|
||||
* Defines PLUGIN_PATH, PLUGIN_URL (etc.) constants
|
||||
* (@see README.md)
|
||||
*
|
||||
* @version 0.22
|
||||
* @version 0.23
|
||||
*/
|
||||
class PluginCore {
|
||||
|
||||
|
||||
6
vendor/abuyoyo/plugincore/composer.json
vendored
6
vendor/abuyoyo/plugincore/composer.json
vendored
@ -2,10 +2,10 @@
|
||||
"name": "abuyoyo/plugincore",
|
||||
"description": "WordPress plugin core helper class",
|
||||
"type": "library",
|
||||
"version": "0.22",
|
||||
"time": "2022-08-05",
|
||||
"version": "0.23",
|
||||
"time": "2022-08-06",
|
||||
"license": "BSD-3-Clause",
|
||||
"recommend": {
|
||||
"suggest": {
|
||||
"yahnis-elsts/plugin-update-checker": "~4.12",
|
||||
"abuyoyo/adminmenupage": "~0.20"
|
||||
},
|
||||
|
||||
18
vendor/composer/installed.json
vendored
18
vendor/composer/installed.json
vendored
@ -43,20 +43,24 @@
|
||||
},
|
||||
{
|
||||
"name": "abuyoyo/plugincore",
|
||||
"version": "0.22",
|
||||
"version_normalized": "0.22.0.0",
|
||||
"version": "0.23",
|
||||
"version_normalized": "0.23.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/abuyoyo/PluginCore.git",
|
||||
"reference": "736b38d82fc41c7102ec28f386f4df807a10ab05"
|
||||
"reference": "0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/abuyoyo/PluginCore/zipball/736b38d82fc41c7102ec28f386f4df807a10ab05",
|
||||
"reference": "736b38d82fc41c7102ec28f386f4df807a10ab05",
|
||||
"url": "https://api.github.com/repos/abuyoyo/PluginCore/zipball/0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4",
|
||||
"reference": "0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4",
|
||||
"shasum": ""
|
||||
},
|
||||
"time": "2022-08-05T00:00:00+00:00",
|
||||
"suggest": {
|
||||
"abuyoyo/adminmenupage": "~0.20",
|
||||
"yahnis-elsts/plugin-update-checker": "~4.12"
|
||||
},
|
||||
"time": "2022-08-06T00:00:00+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
@ -71,7 +75,7 @@
|
||||
"description": "WordPress plugin core helper class",
|
||||
"support": {
|
||||
"issues": "https://github.com/abuyoyo/PluginCore/issues",
|
||||
"source": "https://github.com/abuyoyo/PluginCore/tree/0.22"
|
||||
"source": "https://github.com/abuyoyo/PluginCore/tree/0.23"
|
||||
},
|
||||
"install-path": "../abuyoyo/plugincore"
|
||||
},
|
||||
|
||||
14
vendor/composer/installed.php
vendored
14
vendor/composer/installed.php
vendored
@ -1,7 +1,7 @@
|
||||
<?php return array(
|
||||
'root' => array(
|
||||
'pretty_version' => '0.17',
|
||||
'version' => '0.17.0.0',
|
||||
'pretty_version' => '0.18',
|
||||
'version' => '0.18.0.0',
|
||||
'type' => 'wordpress-plugin',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
@ -20,8 +20,8 @@
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'abuyoyo/notice-manager' => array(
|
||||
'pretty_version' => '0.17',
|
||||
'version' => '0.17.0.0',
|
||||
'pretty_version' => '0.18',
|
||||
'version' => '0.18.0.0',
|
||||
'type' => 'wordpress-plugin',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
@ -29,12 +29,12 @@
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'abuyoyo/plugincore' => array(
|
||||
'pretty_version' => '0.22',
|
||||
'version' => '0.22.0.0',
|
||||
'pretty_version' => '0.23',
|
||||
'version' => '0.23.0.0',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../abuyoyo/plugincore',
|
||||
'aliases' => array(),
|
||||
'reference' => '736b38d82fc41c7102ec28f386f4df807a10ab05',
|
||||
'reference' => '0a5809d6722a2abf0bdaf23f73bd3875b00fd2a4',
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'abuyoyo/screen-meta-links' => array(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user