From 5834c834e329999c1f0f581656ce69758b8af9a2 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sat, 30 May 2026 09:29:06 -0700 Subject: [PATCH] Refine enterprise edition feature blurb in version output and docs --- README.md | 2 +- k8s/charts/seaweedfs/README.md | 2 +- weed/command/version.go | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1b7b9cfff..ef8e2088e 100644 --- a/README.md +++ b/README.md @@ -655,7 +655,7 @@ Cluster Total: 3302.88 MiB/s, 550.51 obj/s over 43s. ## Enterprise ## For enterprise users, please visit [seaweedfs.com](https://seaweedfs.com) for the SeaweedFS Enterprise Edition, -which has advanced features, including data recovery, a self-healing storage format with better data protection, +which has advanced features, including data recovery, self-healing storage, customizable erasure coding, EC vacuum and repair, etc. [Back to TOC](#table-of-contents) diff --git a/k8s/charts/seaweedfs/README.md b/k8s/charts/seaweedfs/README.md index b0e380ff5..a7d666d55 100644 --- a/k8s/charts/seaweedfs/README.md +++ b/k8s/charts/seaweedfs/README.md @@ -384,4 +384,4 @@ helm install seaweedfs seaweedfs/seaweedfs \ ## Enterprise For enterprise users, please visit [seaweedfs.com](https://seaweedfs.com) for the SeaweedFS Enterprise Edition, -which has a self-healing storage format with better data protection. +which has advanced features, including data recovery, self-healing storage, customizable erasure coding, EC vacuum and repair, etc. diff --git a/weed/command/version.go b/weed/command/version.go index d62607f0c..eda457619 100644 --- a/weed/command/version.go +++ b/weed/command/version.go @@ -21,7 +21,7 @@ func runVersion(cmd *Command, args []string) bool { fmt.Printf("version %s %s %s\n", version.Version(), runtime.GOOS, runtime.GOARCH) println() - println("For enterprise users, please visit https://seaweedfs.com for SeaweedFS Enterprise Edition,") - println("which has a self-healing storage format with better data protection.") + println("For enterprise users, please visit https://seaweedfs.com for the SeaweedFS Enterprise Edition,") + println("which has advanced features, including data recovery, self-healing storage, customizable erasure coding, EC vacuum and repair, etc.") return true }