diff --git a/README.md b/README.md
index c800f08..9bfe89d 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,16 @@
-# GeekDesk
-小巧、美观的桌面快速启动管理工具
-
+# GeekDesk 极客桌面
+小巧、**美观**的桌面快速启动管理工具
+
+谈一谈做GeekDesk的原因:
+
+目前的市场上也有一部分桌面图标管理工具, 但是**界面好点的收费**, **免费的界面差**
+**windows11**都来了, 难道还要用界面停留在**win7时代**的软件吗
+
+所以就萌生了做这款软件的想法, **免费 / 美观 / 高度定制化** 是从GeekDesk诞生开始就有的需求和方向, 未来也会向着这些方向发展
+目前GeekDesk只有一个人在开发, 大家如果有好的建议也可以提Issue
+
+另外如果你喜欢 GeekDesk的话, 或许可以为作者购买防脱洗发水
+
## 开发框架
- wpf
- .net 4.7.2
@@ -34,9 +44,3 @@
## LICENSE
- 这是个人开发的程序,任何人可任意修改和免费使用(未做较大功能性改动不允许修改赞赏码,重新修改发布需注明出处)
- 商用需联系作者
-
-
- ### 佛系赞赏
- 我知道没人赞赏但我还是要放上来
-
-
diff --git a/Update.json b/Update.json
index 9e527a5..848889a 100644
--- a/Update.json
+++ b/Update.json
@@ -1,8 +1,8 @@
{
- "title": "版本更新",
- "subTitle": "V2.3.20 正式版",
- "msgTitle": "本次更新内容如下",
- "msg": "['一个小更新, 修复了一部分bug并增加了部分功能','修复无法修改菜单图标的bug','修复图标锯齿状bug','修复热键不支持Alt的bug','增加鼠标中键呼出功能','增加隐藏托盘图标功能','界面美化等','最后去给我点个star呗']",
+ "title": "汾",
+ "subTitle": "V2.3.20 ʽ",
+ "msgTitle": "θ",
+ "msg": "['һС, һbug˲ֹ','IJ˵ͼbug','ͼ״bug','ȼ֧Altbug','м','ͼ깦','','ȥҵstar']",
"githubUrl": "https://github.com/Demo-Liu/GeekDesk/releases",
"giteeUrl": "https://gitee.com/demo_liu/GeekDesk/releases",
"version": "2.3.20"
diff --git a/Update.json.bak b/Update.json.bak
index e918fb7..9e527a5 100644
--- a/Update.json.bak
+++ b/Update.json.bak
@@ -1,9 +1,9 @@
{
- "title" : "版本更新",
- "subTitle" : "V2.3 正式版",
- "msgTitle" : "本次更新内容如下",
- "msg" : "['边缘吸附功能','窗口淡入淡出动画','待办任务快捷键(默认Ctrl+Shift+Q)','右键任务栏图标打开程序目录菜单']",
- "githubUrl" : "https://github.com/Demo-Liu/GeekDesk/releases/tag",
- "giteeUrl" : "https://gitee.com/demo_liu/GeekDesk/releases",
- "version": "2.3"
+ "title": "版本更新",
+ "subTitle": "V2.3.20 正式版",
+ "msgTitle": "本次更新内容如下",
+ "msg": "['一个小更新, 修复了一部分bug并增加了部分功能','修复无法修改菜单图标的bug','修复图标锯齿状bug','修复热键不支持Alt的bug','增加鼠标中键呼出功能','增加隐藏托盘图标功能','界面美化等','最后去给我点个star呗']",
+ "githubUrl": "https://github.com/Demo-Liu/GeekDesk/releases",
+ "giteeUrl": "https://gitee.com/demo_liu/GeekDesk/releases",
+ "version": "2.3.20"
}
\ No newline at end of file
diff --git a/Util/HttpUtil.cs b/Util/HttpUtil.cs
index c6cd2d8..165b51f 100644
--- a/Util/HttpUtil.cs
+++ b/Util/HttpUtil.cs
@@ -17,12 +17,12 @@ namespace GeekDesk.Util
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
//创建Web访问对 象
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(url);
- myRequest.ContentType = "text/plain; charset=gbk";
+ myRequest.ContentType = "text/plain; charset=utf-8";
//通过Web访问对象获取响应内容
HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
//通过响应内容流创建StreamReader对象,因为StreamReader更高级更快
- StreamReader reader = new StreamReader(myResponse.GetResponseStream(), Encoding.GetEncoding("gbk"));
+ StreamReader reader = new StreamReader(myResponse.GetResponseStream(), Encoding.GetEncoding("utf-8"));
string returnStr = reader.ReadToEnd();//利用StreamReader就可以从响应内容从头读到尾
reader.Close();
myResponse.Close();