Skip to content

Commit 967aad9

Browse files
committed
+
1 parent 03af9a0 commit 967aad9

4 files changed

Lines changed: 33 additions & 32 deletions

File tree

ChatLogger/Main.Designer.cs

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ChatLogger/Main.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ private void RafadexAutoUpdate600IQ()
4444
{
4545
this.Hide();
4646
this.Enabled = false;
47+
4748
Console.WriteLine("New update: " + updateCheck);
4849
Form Update = new Update(updateCheck);
4950
Update.Show();
@@ -103,7 +104,7 @@ private void Main_Shown(object sender, EventArgs e)
103104

104105
if (Settingslist.LastTimeCheckedUpdate == null || Settingslist.LastTimeCheckedUpdate.Length == 0)
105106
{
106-
Settingslist.LastTimeCheckedUpdate = now.ToString();
107+
Settingslist.LastTimeCheckedUpdate = now.ToString();
107108
}
108109

109110
DateTime old = DateTime.Parse(Settingslist.LastTimeCheckedUpdate);

ChatLogger/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ static class Program
99
public static readonly string BOTNAME = "ChatLogger";
1010

1111
public static readonly string spkDomain = "http://sp0ok3r.tk/ChatLogger/";
12-
public static readonly string Version = "1.0.3";
12+
public static readonly string Version = "1.0.3a";
1313

1414

1515
public static readonly string ExecutablePath = Path.GetDirectoryName(Application.ExecutablePath);

ChatLogger/Update.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void RetrieveChangelog()
5959
private void btn_installupdate_Click(object sender, EventArgs e)
6060
{
6161
Process.Start(Program.ExecutablePath);
62-
Process.Start("https://github.com/sp0ok3r/ChatLogger/");
62+
Process.Start("https://github.com/sp0ok3r/ChatLogger/releases");
6363
Process.Start("https://github.com/sp0ok3r/ChatLogger/releases/latest/ChatLogger" + newVersion + ".zip");
6464

6565
var SettingsList = JsonConvert.DeserializeObject<ChatLoggerSettings>(File.ReadAllText(Program.SettingsJsonFile));

0 commit comments

Comments
 (0)