Skip to content

Commit

Permalink
build 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tzfun committed Jan 14, 2025
1 parent c6bd972 commit dca6f47
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 19 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@ A beautiful and lightweight ETCD V3 client. Provides App and Web packages. Suppo
6. Support SSL, SSH connection.
7. Support cluster information viewing, version compression, data backup and other functions.
8. Support Key-Value editing, multi-language format highlighting, batch import/export.
9. Support comparison of multiple versions of key.
10. Support quick access from key collection.
11. Support key change monitoring and notification.
12. Support lease management: creation, deletion, key bind relationship, countdown display.
13. Support user management: enable/disable authentication, creation, deletion, grant/revocation of roles, etc.
14. Support role management: creation, deletion, authorization/revocation of permissions, etc.
9. Support protobuf format content decoding for kubernetes.
10. Support comparison of multiple versions of key.
11. Support quick access from key collection.
12. Support key change monitoring and notification.
13. Support key search function.
14. Support lease management: creation, deletion, key bind relationship, countdown display.
15. Support user management: enable/disable authentication, creation, deletion, grant/revocation of roles, etc.
16. Support role management: creation, deletion, authorization/revocation of permissions, etc.

- **App**: It has all the functions, has a better experience than the web version, and is easy to migrate data. It will be continuously updated in the future. It is recommended to use.
- **Web**: It has most of the functions, but a few functions are not supported (such as data backup, etc.). Users can access it directly with a browser without downloading. It supports multi-user login.
Expand Down
14 changes: 8 additions & 6 deletions README_ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,14 @@
6. 支持 SSL、SSH 连接
7. 支持集群信息查看、版本压缩、数据备份等功能
8. 支持 Key-Value 编辑、多语言格式高亮、批量导入/导出
9. 支持 Key 多个版本内容比较
10. 支持Key收藏快捷访问
11. 支持Key变化监听与通知
12. 支持 Lease 管理:创建、删除、Key绑定关系、倒计时显示
13. 支持用户管理:开关身份认证功能、用户创建、用户删除、用户授予/回收角色等
14. 支持角色管理:角色创建、角色删除、角色授权/回收权限等
9. 支持 Kubernetes 的 Protobuf 格式内容解码
10. 支持 Key 多个版本内容比较
11. 支持Key收藏快捷访问
12. 支持Key变化监听与通知
13. 支持Key搜索功能
14. 支持 Lease 管理:创建、删除、Key绑定关系、倒计时显示
15. 支持用户管理:开关身份认证功能、用户创建、用户删除、用户授予/回收角色等
16. 支持角色管理:角色创建、角色删除、角色授权/回收权限等

- **App**: 拥有所有功能,相比Web版拥有更好的体验,数据方便迁移,后续将持续更新,推荐使用
- **Web**:拥有大部分功能,少部分功能不支持(例如数据备份等),用户无需下载可使用浏览器直接访问,支持多用户登录。
Expand Down
2 changes: 1 addition & 1 deletion app/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "etcd-workbench"
version = "1.1.0"
version = "1.1.1"
description = "Etcd Workbench"
authors = ["beifengtz"]
edition = "2021"
Expand Down
4 changes: 1 addition & 3 deletions app/src/common/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,7 @@ export function _emitWindow(windowLabel: string, eventName: EventName, eventPayl
return
}

window.emit(eventName, eventPayload).then(() => {
console.log("emit success", window.label, eventName, eventPayload)
}).catch(e => {
window.emit(eventName, eventPayload).catch(e => {
console.error(e)
})
}
Expand Down
4 changes: 2 additions & 2 deletions app/src/common/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ export const fileTypeIcon: Record<string, string> = {
kubernetes: 'mdi-kubernetes'
}

export const EditorMappedLanguage: Record<EditorHighlightLanguage, EditorHighlightLanguage> = {
"kubernetes": "json"
export const EditorMappedLanguage: Record<string, EditorHighlightLanguage> = {
kubernetes: "json"
}

export function _goBrowserPage(address: string) {
Expand Down

0 comments on commit dca6f47

Please sign in to comment.