Merge branch 'zh-v2.11.1' into develop-zh

This commit is contained in:
chishin 2024-01-21 20:01:27 +08:00
commit 234194f320
7 changed files with 6 additions and 26 deletions

View File

@ -1,21 +0,0 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-label: 'stale'
stale-pr-label: 'stale'
stale-issue-message: 'Issue is now considered stale. If you want to keep it open, please comment :+1:'
stale-pr-message: 'PR is now considered stale. If you want to keep it open, please comment :+1:'
close-issue-message: 'Issue was closed due to inactivity.'
close-pr-message: 'PR was closed due to inactivity.'
days-before-stale: 182
days-before-close: 365
operations-per-run: 50

View File

@ -1 +1 @@
2.11.0
2.11.1

View File

@ -1,7 +1,7 @@
<p align="center">
<img src="https://nginxproxymanager.com/github.png">
<br><br>
<img src="https://img.shields.io/badge/version-2.11.0-green.svg?style=for-the-badge">
<img src="https://img.shields.io/badge/version-2.11.1-green.svg?style=for-the-badge">
<a href="https://hub.docker.com/repository/docker/jc21/nginx-proxy-manager">
<img src="https://img.shields.io/docker/stars/jc21/nginx-proxy-manager.svg?style=for-the-badge">
</a>

View File

@ -16,6 +16,7 @@ const certbot = {
return new Promise((resolve, reject) => {
if (pluginKeys.length === 0) {
resolve();
return;
}

View File

@ -1,4 +1,4 @@
FROM jc21/nginx-proxy-manager:2.11.0
FROM jc21/nginx-proxy-manager:2.11.1
ENV NPM_LANGUAGE="zh"

View File

@ -1,6 +1,6 @@
{
"name": "nginx-proxy-manager",
"version": "2.11.0",
"version": "2.11.1",
"description": "A beautiful interface for creating Nginx endpoints",
"main": "js/index.js",
"devDependencies": {

View File

@ -5,4 +5,4 @@ DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${DIR}/../.."
docker build -t chishin/nginx-proxy-manager-zh:2.11.0 -f docker/Dockerfile-zh .
docker build -t chishin/nginx-proxy-manager-zh:2.11.1 -f docker/Dockerfile-zh .