diff --git a/README.md b/README.md index ea753a15f..f12ba3ada 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,7 @@ ## Feature Log +- 2024-06-06: Search connections support(>=4) - 2024-04-10: DB custom name support - 2024-02-21: Java/Pickle viewers support - 2024-02-15: Groups/Consumers in STREAM view diff --git a/README.zh-CN.md b/README.zh-CN.md index 5b7c6f229..35d966896 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -59,6 +59,7 @@ ## 里程碑 +- 2024-06-06: 搜索链接支持(>=4) - 2024-04-10: DB自定义名称支持 - 2024-02-21: Java/Pickle解码视图支持 - 2024-02-15: STEAM支持查看群组和消费者 diff --git a/pack/electron/package.json b/pack/electron/package.json index fa6ee72cd..2fe93cefc 100644 --- a/pack/electron/package.json +++ b/pack/electron/package.json @@ -1,6 +1,6 @@ { "name": "another-redis-desktop-manager", - "version": "1.6.4", + "version": "1.6.5", "description": "A faster, better and more stable redis desktop manager.", "author": "Another", "private": true, diff --git a/src/components/JsonEditor.vue b/src/components/JsonEditor.vue index 5301c5370..c1cc10a28 100644 --- a/src/components/JsonEditor.vue +++ b/src/components/JsonEditor.vue @@ -122,6 +122,8 @@ export default { scrollBeyondLastLine: false, // hide scroll sign of current line hideCursorInOverviewRuler: true, + // fix #1097 additional vertical cursor + accessibilitySupport: 'off', minimap: { enabled: false, },