diff --git a/Core/Other/FormAbout.cs b/Core/Other/FormAbout.cs index 285145af..38b03044 100644 --- a/Core/Other/FormAbout.cs +++ b/Core/Other/FormAbout.cs @@ -12,7 +12,7 @@ public FormAbout(){ StringBuilder build = new StringBuilder(); build.Append(@"\fs22").Append(Program.BrandName).Append(@" was created by chylex as a replacement to the discontinued TweetDeck client for Windows, and is released under the MIT license.\par "); build.Append(@"Official Website: ").Append(RichTextLabel.AddLink(Program.Website)).Append(@"\line "); - build.Append(@"Source Code: ").Append(RichTextLabel.AddLink("https://github.com/chylex/TweetDick")); + build.Append(@"Source Code: ").Append(RichTextLabel.AddLink("https://github.com/chylex/TweetDuck")); labelAbout.Rtf = RichTextLabel.Wrap(build.ToString()); } diff --git a/Program.cs b/Program.cs index a81089c8..284bbd2e 100644 --- a/Program.cs +++ b/Program.cs @@ -104,7 +104,7 @@ public static void Log(string data){ StringBuilder build = new StringBuilder(); if (!File.Exists(LogFile)){ - build.Append("Please, report all issues to: https://github.com/chylex/TweetDick/issues\r\n\r\n"); + build.Append("Please, report all issues to: https://github.com/chylex/TweetDuck/issues\r\n\r\n"); } build.Append("[").Append(DateTime.Now.ToString("G")).Append("]\r\n"); diff --git a/Resources/code.js b/Resources/code.js index 45107a6b..48232ebb 100644 --- a/Resources/code.js +++ b/Resources/code.js @@ -5,7 +5,7 @@ var fontSizeClasses = [ "txt-base-smallest", "txt-base-small", "txt-base-medium", "txt-base-large", "txt-base-largest" ]; // - // Variable: Says whether TweetDick events was initialized. + // Variable: Says whether TweetD*ck events was initialized. // var isInitialized = false; @@ -15,9 +15,9 @@ var prevFontSizeClass; // - // Function: Initializes TweetDick events. Called after the website app is loaded. + // Function: Initializes TweetD*ck events. Called after the website app is loaded. // - var initializeTweetDick = function(){ + var initializeTweetDck = function(){ // Settings button hook $("[data-action='settings-menu']").click(function(){ setTimeout(function(){ @@ -26,13 +26,13 @@ menu.children(".drp-h-divider").last().after('<li class="is-selectable" data-std><a href="#" data-action>'+$TD.brandName+'</a></li><li class="drp-h-divider"></li>'); - var tweetDickBtn = menu.children("[data-std]").first(); + var tweetDckBtn = menu.children("[data-std]").first(); - tweetDickBtn.on("click","a",function(){ + tweetDckBtn.on("click","a",function(){ $TD.openSettingsMenu(); }); - tweetDickBtn.hover(function(){ + tweetDckBtn.hover(function(){ $(this).addClass("is-selected"); },function(){ $(this).removeClass("is-selected"); @@ -57,7 +57,7 @@ refreshColumnObservers(); })(); - // Popup notifications + // Force popup notification settings window.TD.controller.notifications.hasNotifications = function(){ return true; }; @@ -158,7 +158,7 @@ }; // - // Block: Observe the app <div> element and initialize TweetDick whenever possible. + // Block: Observe the app <div> element and initialize TweetD*ck whenever possible. // var app = $("body").children(".js-app"); @@ -167,7 +167,7 @@ isInitialized = false; } else if (!isInitialized && !app.hasClass("is-hidden")){ - initializeTweetDick(); + initializeTweetDck(); } }).observe(app[0],{ attributes: true,