Skip to content

Commit

Permalink
修改了一处因为相对路径问题导致的开机启动失败
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeric-X committed Apr 10, 2021
1 parent 3c69467 commit 92ca553
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
v1.2.2 (wroking)
v1.2.2
- Add local clipboard type "bitmap".
- Fix auto start with boot.

v1.2.1
- Add icon animation.
Expand Down
2 changes: 1 addition & 1 deletion SyncClipboard/UpdateChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace SyncClipboard
{
class UpdateChecker
{
public const string Version = "1.2.1";
public const string Version = "1.2.2";
public const int VersionPartNumber = 3;
public const string UpdateUrl = "https://api.github.com/repos/Jeric-X/SyncClipboard/releases/latest";
public const string ReleaseUrl = "https://github.com/Jeric-X/SyncClipboard/releases/latest";
Expand Down
2 changes: 1 addition & 1 deletion SyncClipboard/Utility/Log.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace SyncClipboard.Utility
{
static class Log
{
private static String logFolder = "Log";
private static String logFolder = System.Windows.Forms.Application.StartupPath + $"/Log";

public static void Write(string str)
{
Expand Down

0 comments on commit 92ca553

Please sign in to comment.