release 2.13.2
This commit is contained in:
parent
2473b3566e
commit
44b0819e95
1
env.sh
1
env.sh
|
@ -6,6 +6,7 @@ ROOT_DIR=$(dirname $(realpath "${BASH_SOURCE[0]}"))
|
||||||
tag=$(echo "$(cat ${ROOT_DIR}/CURRENT | grep "tag = ")" | cut -d "=" -f2 | python3 -c "s=input();print(s.strip())")
|
tag=$(echo "$(cat ${ROOT_DIR}/CURRENT | grep "tag = ")" | cut -d "=" -f2 | python3 -c "s=input();print(s.strip())")
|
||||||
config_pwd=$(cat ${ROOT_DIR}/setting/globalconfig.ini | grep -v "CLIENT_PASSWORD" | grep "PASSWORD = ")
|
config_pwd=$(cat ${ROOT_DIR}/setting/globalconfig.ini | grep -v "CLIENT_PASSWORD" | grep "PASSWORD = ")
|
||||||
PASSWORD=$(echo "${config_pwd}" | cut -d "=" -f2 | python3 -c "s=input();print(s.strip())")
|
PASSWORD=$(echo "${config_pwd}" | cut -d "=" -f2 | python3 -c "s=input();print(s.strip())")
|
||||||
|
IP=$(hostname -I)
|
||||||
DEV=false
|
DEV=false
|
||||||
while getopts ":p:D" opt
|
while getopts ":p:D" opt
|
||||||
do
|
do
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "2.13.1",
|
"version": "2.13.2",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"busuanzi.pure.js": "^1.0.3",
|
"busuanzi.pure.js": "^1.0.3",
|
||||||
"markdown-it-mathjax3": "^4.3.2",
|
"markdown-it-mathjax3": "^4.3.2",
|
||||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "youqu"
|
name = "youqu"
|
||||||
version = "2.13.1"
|
version = "2.13.2"
|
||||||
authors = [
|
authors = [
|
||||||
{ name = "mikigo", email = "huangmingqiang@uniontech.com" },
|
{ name = "mikigo", email = "huangmingqiang@uniontech.com" },
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
|
# SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
|
||||||
|
|
||||||
# SPDX-License-Identifier: GPL-2.0-only
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
source ${ROOT_DIR}/src/utils/_env_base.sh
|
source ${ROOT_DIR}/src/utils/_env_base.sh
|
||||||
|
|
||||||
|
@ -17,7 +15,7 @@ echo "
|
||||||
╚██╔╝ ██║▄▄ ██║ ██╔══╝ ██║╚██╗██║ ╚██╗ ██╔╝
|
╚██╔╝ ██║▄▄ ██║ ██╔══╝ ██║╚██╗██║ ╚██╗ ██╔╝
|
||||||
██║ ╚██████╔╝ ███████╗ ██║ ╚████║ ╚████╔╝
|
██║ ╚██████╔╝ ███████╗ ██║ ╚████║ ╚████╔╝
|
||||||
╚═╝ ╚══▀▀═╝ ╚══════╝ ╚═╝ ╚═══╝ ╚═══╝
|
╚═╝ ╚══▀▀═╝ ╚══════╝ ╚═╝ ╚═══╝ ╚═══╝
|
||||||
${tag}
|
${tag} ${IP}
|
||||||
"
|
"
|
||||||
|
|
||||||
env(){
|
env(){
|
||||||
|
|
Loading…
Reference in New Issue