diff --git a/README.md b/README.md index 3dbeea96d65d5bf66ea7d8d68d3c822d828bf664..6d4d6dc0ce2b000cb16966cf34e136560f04b14c 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ SmartSQL 是一款方便、快捷的数据库文档查询、导出工具!该 > 🚀 本项目力求做最简单、最好用的数据库文档(字典)查询生成工具! -### 🍀 二、数据库支持 +### 🥝 二、数据库支持 - ✅ SqlServer - ✅ MySQL - ✅ PostgreSQL @@ -32,7 +32,7 @@ SmartSQL 是一款方便、快捷的数据库文档查询、导出工具!该 - - [x] DB2 - - [x] SQLite -### 🥝 三、主要功能 +### 📖 三、主要功能 #### 1.文档的内容都包含什么? - `表` 序号 | 列名 | 主键 | 自增 | 数据类型 | 长度 | 允许NULL值 | 默认值 | 备注说明 @@ -123,7 +123,7 @@ SmartSQL 是一款方便、快捷的数据库文档查询、导出工具!该 ⏳ 计划中:表、视图、存储过程同步功能 ⏳ ... -### 📖 附三、常见问题 +### ❓ 附三、常见问题 - **连接不上,怎么办?** > 1. `连接数据库`界面填写的`连接信息`真的正确无误? diff --git a/SmartSQL/SmartSQL/Resources/svg/forkme.svg b/SmartSQL/SmartSQL/Resources/svg/forkme.svg new file mode 100644 index 0000000000000000000000000000000000000000..626ab00666748e2bb4cc989df63f9e136ca03d60 --- /dev/null +++ b/SmartSQL/SmartSQL/Resources/svg/forkme.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/SmartSQL/SmartSQL/SmartSQL.csproj b/SmartSQL/SmartSQL/SmartSQL.csproj index f165c39b7991e6aee67374e1c2d535e5fce73874..89d353af3db9b6b8c06ac2c89456d83106fe2d5a 100644 --- a/SmartSQL/SmartSQL/SmartSQL.csproj +++ b/SmartSQL/SmartSQL/SmartSQL.csproj @@ -71,6 +71,9 @@ 6.0.3 + + 1.8.0 + @@ -372,6 +375,8 @@ + + diff --git a/SmartSQL/SmartSQL/Views/AboutWindow.xaml b/SmartSQL/SmartSQL/Views/AboutWindow.xaml index 0b7d607a77ae47d82c1ee0751facfbf93e9d1631..94d4c595e06ffdf53d285a94badbde093f844679 100644 --- a/SmartSQL/SmartSQL/Views/AboutWindow.xaml +++ b/SmartSQL/SmartSQL/Views/AboutWindow.xaml @@ -1,13 +1,14 @@ - + - + + + - - - 联系作者|Bug反馈 - - diff --git a/SmartSQL/SmartSQL/Views/AboutWindow.xaml.cs b/SmartSQL/SmartSQL/Views/AboutWindow.xaml.cs index fde6b1ff229007f514721fba7159afcbd8188e34..69b40058dfaa7585768c1ad9feedb63e484990f7 100644 --- a/SmartSQL/SmartSQL/Views/AboutWindow.xaml.cs +++ b/SmartSQL/SmartSQL/Views/AboutWindow.xaml.cs @@ -1,8 +1,9 @@ -using System; +using System; using System.Diagnostics; using System.Reflection; using System.Windows; using System.Windows.Documents; +using System.Windows.Input; namespace SmartSQL.Views { @@ -18,7 +19,7 @@ namespace SmartSQL.Views DataContext = this; Description = assemblyDescription.Description; CopyRight = DateTime.Now.Year == 2021 ? $"Copyright ©{DateTime.Now.Year} zfluok" : $"Copyright ©2021-{DateTime.Now.Year} zfluok"; - Version = $"v {version.ToString()}"; + Version = $"v{version.ToString()}"; } #region Description @@ -59,11 +60,11 @@ namespace SmartSQL.Views set => SetValue(VersionProperty, value); } #endregion - - private void LinkContact_OnClick(object sender, RoutedEventArgs e) + + private void SvgViewboxForkMe_OnMouseLeftButtonUp(object sender, MouseButtonEventArgs e) { Hyperlink link = sender as Hyperlink; - Process.Start(link?.NavigateUri.AbsoluteUri); + Process.Start(new ProcessStartInfo("https://gitee.com/izhaofu/SmartSQL")); } } }