Skip to content

Commit

Permalink
Merge pull request #3 from westboy/v1.0.4
Browse files Browse the repository at this point in the history
V1.0.4
  • Loading branch information
westboy authored Oct 29, 2022
2 parents dce7762 + 8c465df commit 22074b0
Show file tree
Hide file tree
Showing 7 changed files with 142 additions and 135 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

![Screenshot](screenshot/redisfront-win11.png)

RedisFront 是基于 Swing 和 Lettuce 开发的跨平台 Redis 桌面客户端工具, 支持 Redis 单机模式, 集群模式, 哨兵模式以及 SSH 隧道连接, 可轻松管理百万级数据.
RedisFront 是基于 Swing 和 Lettuce 开发的跨平台 Redis 桌面客户端工具, 支持 Redis 单机模式, 集群模式, 哨兵模式以及 SSH 隧道连接, 可轻松管理Redis数据.

### 下载

Expand All @@ -22,4 +22,5 @@ RedisFront 是基于 Swing 和 Lettuce 开发的跨平台 Redis 桌面客户端

![JDK](https://img.shields.io/badge/JDK-17-blue.svg)
![Apache 2.0](https://img.shields.io/badge/Apache-2.0-4EB1BA.svg)
![Release](https://img.shields.io/badge/Release-1.0.3-green.svg)
![Release](https://img.shields.io/badge/Release-1.0.4-green.svg)

5 changes: 3 additions & 2 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

![Screenshot](screenshot/redisfront-win11.png)

RedisFront is a cross-platform redis desktop client tool developed based on swing and lattice supports redis stand-alone mode, cluster mode, sentinel mode and SSH tunnel connection, and can easily manage millions of data
RedisFront is a cross-platform redis desktop client tool developed based on swing and lattice supports redis stand-alone mode, cluster mode, sentinel mode and SSH tunnel connection, and can easily manage redis data
### Download

[https://github.com/westboy/RedisFront/releases](https://github.com/westboy/RedisFront/releases)
Expand All @@ -18,4 +18,5 @@ RedisFront is a cross-platform redis desktop client tool developed based on swin

![JDK](https://img.shields.io/badge/JDK-17-blue.svg)
![Apache 2.0](https://img.shields.io/badge/Apache-2.0-4EB1BA.svg)
![Release](https://img.shields.io/badge/Release-1.0.3-green.svg)
![Release](https://img.shields.io/badge/Release-1.0.4-green.svg)

2 changes: 1 addition & 1 deletion assets/version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version": "1.0.3"}
{"version": "1.0.4"}
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ buildscript {

plugins.apply("io.github.fvarrui.javapackager.plugin")

version = "1.0.3"
version = "1.0.4"

val flatlafVersion = "2.4"
val hutoolVersion = "5.8.7"
Expand Down
Binary file modified screenshot/redisfront-win11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 2 additions & 6 deletions src/main/java/com/redisfront/service/ConnectService.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,8 @@ default String buildUpdateSql(ConnectInfo connectInfo) {
"port =" +
connectInfo.port() +
"," +
"username ='" +
(Fn.isNull(connectInfo.user()) ? "" : connectInfo.user()) +
"'," +
"password ='" +
connectInfo.password() +
"'," +
(Fn.isNull(connectInfo.user()) ? "" : "username ='" + connectInfo.user() + "',") +
(Fn.isNull(connectInfo.password()) ? "" : "password ='" + connectInfo.password() + "',") +
"ssl ='" +
connectInfo.ssl() +
"'," +
Expand Down
255 changes: 132 additions & 123 deletions src/main/java/com/redisfront/ui/form/fragment/DataViewForm.java

Large diffs are not rendered by default.

0 comments on commit 22074b0

Please sign in to comment.