Skip to content

Commit

Permalink
release: fix_A030
Browse files Browse the repository at this point in the history
  • Loading branch information
cnxysoft committed Oct 6, 2024
1 parent 598b131 commit 435c624
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions UPDATE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## DDBOT最近更新日志
- 2024-10-06 0.3.0(Wsa)
- 模板增加URI编解码相关函数
- 编码解码:
- URI编码:uriEncode(str string) string
- URI解码:uriDecode(str string) string, error

- 2024-09-26 0.2.9a(Wsa)
- 修复陌生人信息解析失败

Expand Down Expand Up @@ -136,8 +142,8 @@
- 数组操作:
- 删除str数组成员:delStrSlice (arr []string, sub string) []string
- 文件操作:
- 读取一行:readLine (path string, line int64) string, err0r
- 写入一行:writeLine (path string, line int64, content string) err0r
- 读取一行:readLine (path string, line int64) string, error
- 写入一行:writeLine (path string, line int64, content string) error

- 2024-06-13 v0.1.1(WSa)
- 继续优化ws消息处理函数
Expand Down
4 changes: 2 additions & 2 deletions lsp/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (

var (
CommitId = "UNKNOWN"
BuildTime = "2024-09-26 22:02:00"
Tags = "fix_A029a"
BuildTime = "2024-10-06 17:46:00"
Tags = "fix_A030"
)

func CheckUpdate() string {
Expand Down

0 comments on commit 435c624

Please sign in to comment.