Skip to content

Commit 0ef5b56

Browse files
committed
build: v3.2.0-beta8
1 parent 1d6f99d commit 0ef5b56

File tree

6 files changed

+287
-158
lines changed

6 files changed

+287
-158
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img src="docs/nodepassdash-logo.svg" alt="NodePassDash" height="80">
33
</div>
44

5-
![Version](https://img.shields.io/badge/version-3.2.0--beta7-blue.svg)
5+
![Version](https://img.shields.io/badge/version-3.2.0--beta8-blue.svg)
66
![GitHub license](https://img.shields.io/github/license/NodePassProject/NodePassDash)
77

88
NodePassDash是一个现代化的 NodePass 管理界面,基于 Go 后端 + React + Vite、HeroUI 和 TypeScript 构建。提供实时隧道监控、流量统计和端点管理功能。

internal/endpoint/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ type SimpleEndpoint struct {
433433
// GetSimpleEndpoints 获取简化端点列表,可排除 FAIL
434434
func (s *Service) GetSimpleEndpoints(excludeFail bool) ([]SimpleEndpoint, error) {
435435
query := s.db.Table("endpoints e").
436-
Select("e.id, e.name, e.ip as url, e.api_path, e.status, e.tunnel_count, e.ver, e.tls, e.log, e.crt, e.key_path, e.uptime")
436+
Select("e.id, e.name, e.hostname as url, e.api_path, e.status, e.tunnel_count, e.ver, e.tls, e.log, e.crt, e.key_path, e.uptime")
437437

438438
if excludeFail {
439439
query = query.Where("e.status NOT IN ('FAIL', 'DISCONNECT')")

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "NodePassDash",
33
"private": true,
4-
"version": "3.2.0-beta7",
4+
"version": "3.2.0-beta8",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

0 commit comments

Comments
 (0)