feat: 更新 Monero 版本至 v0.18.4.5,并调整相关文档和配置
All checks were successful
Build and Release Mond / build-and-test (amd64) (push) Successful in 11m52s
Build and Release Mond / build-and-test (arm64) (push) Successful in 18m1s
Build and Release Mond / release (push) Has been skipped

This commit is contained in:
2026-01-21 11:56:40 +08:00
parent b491d8af32
commit 319cadb352
5 changed files with 6 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ on:
env: env:
DOCKER_BUILDKIT: "1" DOCKER_BUILDKIT: "1"
PRODUCT_NAME: "mond" PRODUCT_NAME: "mond"
MONERO_VERSION: "v0.18.4.4" MONERO_VERSION: "v0.18.4.5"
BUILDX_NO_DEFAULT_ATTESTATIONS: "1" BUILDX_NO_DEFAULT_ATTESTATIONS: "1"
jobs: jobs:

1
.gitignore vendored
View File

@@ -2,5 +2,6 @@
.mcp.json .mcp.json
.claude/ .claude/
llmdoc/
example/ example/
.source/ .source/

View File

@@ -34,10 +34,10 @@ sudo apt-get install mond
```bash ```bash
# 1. 下载对应架构的包 # 1. 下载对应架构的包
wget https://gitea.bcde.io/releases/download/v0.18.4.4/mond-amd64-ubuntu-v0.18.4.4.tar.gz wget https://gitea.bcde.io/releases/download/v0.18.4.5/mond-amd64-ubuntu-v0.18.4.5.tar.gz
# 2. 解压 # 2. 解压
tar -xzf mond-amd64-ubuntu-v0.18.4.4.tar.gz tar -xzf mond-amd64-ubuntu-v0.18.4.5.tar.gz
# 3. 运行 # 3. 运行
./mond --help ./mond --help

2
debian/build-deb.sh vendored
View File

@@ -4,7 +4,7 @@ set -e
# 参数检查 # 参数检查
if [ $# -ne 3 ]; then if [ $# -ne 3 ]; then
echo "Usage: $0 <ARCH> <VERSION> <BINARY_DIR>" echo "Usage: $0 <ARCH> <VERSION> <BINARY_DIR>"
echo "Example: $0 amd64 0.18.4.4 build/Linux/release/bin" echo "Example: $0 amd64 0.18.4.5 build/Linux/release/bin"
exit 1 exit 1
fi fi

View File

@@ -41,7 +41,7 @@ RUN apt-get update && apt-get install -y \
FROM base AS build FROM base AS build
ARG MONERO_VERSION=v0.18.3.4 ARG MONERO_VERSION=v0.18.4.5
ARG TARGETARCH ARG TARGETARCH
ARG BUILDPLATFORM ARG BUILDPLATFORM
ARG TARGETPLATFORM ARG TARGETPLATFORM