(Grav GitSync) Automatic Commit from RealStickman

This commit is contained in:
RealStickman 2023-04-02 15:56:01 +02:00 committed by GitSync
parent ebc4ee6aa0
commit d66142836e
8 changed files with 30 additions and 11 deletions

6
plugins/admin/.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

View File

@ -1,3 +1,14 @@
# v1.10.40
## 03/22/2023
1. [](#new)
* Added Github actions for dependabot [#2258](https://github.com/getgrav/grav-plugin-admin/pull/2258)
1. [](#improved)
* Syslog tag fields label added [#2296](https://github.com/getgrav/grav-plugin-admin/pull/2296)
* Updated vendor libraries to the latest versions
1. [](#bugfix)
* Fix more than one file upload [#2317](https://github.com/getgrav/grav-plugin-admin/pull/2317)
# v1.10.39 # v1.10.39
## 02/19/2023 ## 02/19/2023

View File

@ -1,7 +1,7 @@
name: Admin Panel name: Admin Panel
slug: admin slug: admin
type: plugin type: plugin
version: 1.10.39 version: 1.10.40
description: Adds an advanced administration panel to manage your site description: Adds an advanced administration panel to manage your site
icon: empire icon: empire
author: author:

View File

@ -1010,16 +1010,16 @@
}, },
{ {
"name": "myclabs/deep-copy", "name": "myclabs/deep-copy",
"version": "1.11.0", "version": "1.11.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/myclabs/DeepCopy.git", "url": "https://github.com/myclabs/DeepCopy.git",
"reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614" "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614", "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
"reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614", "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -1057,7 +1057,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/myclabs/DeepCopy/issues", "issues": "https://github.com/myclabs/DeepCopy/issues",
"source": "https://github.com/myclabs/DeepCopy/tree/1.11.0" "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
}, },
"funding": [ "funding": [
{ {
@ -1065,7 +1065,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-03-03T13:19:32+00:00" "time": "2023-03-08T13:26:56+00:00"
}, },
{ {
"name": "phar-io/manifest", "name": "phar-io/manifest",

View File

@ -440,6 +440,8 @@ PLUGIN_ADMIN:
LOG_HANDLER_HELP: "Where to output the logs" LOG_HANDLER_HELP: "Where to output the logs"
SYSLOG_FACILITY: "Syslog facility" SYSLOG_FACILITY: "Syslog facility"
SYSLOG_FACILITY_HELP: "Syslog facility for output" SYSLOG_FACILITY_HELP: "Syslog facility for output"
SYSLOG_TAG: "Syslog tag"
SYSLOG_TAG_HELP: "Syslog tag for output"
DEBUGGER: "Debugger" DEBUGGER: "Debugger"
DEBUGGER_HELP: "Enable Grav debugger and following settings" DEBUGGER_HELP: "Enable Grav debugger and following settings"
DEBUG_TWIG: "Debug Twig" DEBUG_TWIG: "Debug Twig"

View File

@ -2214,7 +2214,7 @@ table.noflex {
height: 200px; height: 200px;
object-fit: cover; } object-fit: cover; }
.block-userinfo ~ .block-file { .block-userinfo + .block-file {
margin-top: -5rem !important; } margin-top: -5rem !important; }
#offline-status { #offline-status {

View File

@ -332,7 +332,7 @@ $content-padding: 1.5rem;
object-fit: cover; object-fit: cover;
} }
& ~ .block-file { & + .block-file {
margin-top: -5rem !important; margin-top: -5rem !important;
} }
} }

View File

@ -3,7 +3,7 @@
'name' => 'getgrav/grav-plugin-admin', 'name' => 'getgrav/grav-plugin-admin',
'pretty_version' => 'dev-develop', 'pretty_version' => 'dev-develop',
'version' => 'dev-develop', 'version' => 'dev-develop',
'reference' => '0d16602880413bb6cbc2c94b75f02dce3174d215', 'reference' => '5f1b3e1e4a413bf5e45e99b8d5aa174b6806c12c',
'type' => 'grav-plugin', 'type' => 'grav-plugin',
'install_path' => __DIR__ . '/../../', 'install_path' => __DIR__ . '/../../',
'aliases' => array(), 'aliases' => array(),
@ -13,7 +13,7 @@
'getgrav/grav-plugin-admin' => array( 'getgrav/grav-plugin-admin' => array(
'pretty_version' => 'dev-develop', 'pretty_version' => 'dev-develop',
'version' => 'dev-develop', 'version' => 'dev-develop',
'reference' => '0d16602880413bb6cbc2c94b75f02dce3174d215', 'reference' => '5f1b3e1e4a413bf5e45e99b8d5aa174b6806c12c',
'type' => 'grav-plugin', 'type' => 'grav-plugin',
'install_path' => __DIR__ . '/../../', 'install_path' => __DIR__ . '/../../',
'aliases' => array(), 'aliases' => array(),