Skip to content

Commit 302cda6

Browse files
committed
fix: 配置文件目录应该隐藏比较好看
1 parent 0eac3fa commit 302cda6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Image2Display/Image2Display/Image2Display.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Authors>chenxuuu</Authors>
1111
<Company>https://github.com/chenxuuu/image2display</Company>
1212
<Description>Image data conversion tool</Description>
13-
<Version>1.1.6.1</Version>
13+
<Version>1.1.6.2</Version>
1414
</PropertyGroup>
1515

1616
<ItemGroup>

Image2Display/Image2Display/Utils.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ public static string Version
4242

4343
/// <summary>
4444
/// 用户配置文件路径
45-
/// win:C:\Users\{username}\Image2Display
46-
/// linux:/home/{username}/Image2Display
47-
/// mac:/Users/{username}/Image2Display
45+
/// win:C:\Users\{username}\.Image2Display
46+
/// linux:/home/{username}/.Image2Display
47+
/// mac:/Users/{username}/.Image2Display
4848
/// </summary>
4949
public readonly static string AppPath =
50-
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), "Image2Display");
50+
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".Image2Display");
5151
/// <summary>
5252
/// 配置文件路径
5353
/// </summary>

0 commit comments

Comments
 (0)