1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-09-14 01:32:10 +02:00

Compare commits

..

3 Commits
1.1 ... 1.1.1

Author SHA1 Message Date
d53eff6043 Update version to 1.1.1 2016-04-17 17:42:14 +02:00
f064912ac9 Prevent notifications from stealing focus from the client app 2016-04-17 17:42:00 +02:00
f9f0677da3 Fix broken pop-up notifications 2016-04-17 17:41:46 +02:00
4 changed files with 10 additions and 7 deletions

View File

@@ -153,7 +153,10 @@ namespace TweetDck.Core{
break;
}
bool ownerHadFocus = owner.ContainsFocus && owner.WindowState != FormWindowState.Minimized;
TopMost = true;
if (ownerHadFocus)owner.Focus();
}
private void timerHideProgress_Tick(object sender, EventArgs e){

View File

@@ -22,7 +22,7 @@ namespace TweetDck{
public const string Website = "http://tweetdick.chylex.com";
#endif
public const string VersionTag = "1.1";
public const string VersionTag = "1.1.1";
public static readonly string StoragePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),BrandName);
private static readonly LockManager LockManager = new LockManager(Path.Combine(StoragePath,".lock"));

View File

@@ -33,7 +33,7 @@ using TweetDck;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyVersion("1.1.1.0")]
[assembly: AssemblyFileVersion("1.1.1.0")]
[assembly: NeutralResourcesLanguageAttribute("en")]

View File

@@ -127,16 +127,16 @@
var html = $(tweet.outerHTML);
var body = html.find(".tweet-body").first();
if (html.find(".icon-reply").length > 0){
return; // ignore sent messages
}
body.children("div.js-quote-detail").each(function(){
$(this).html("(quoted tweet)");
});
body.children().not("p,span,div.js-quote-detail").remove();
if (html.find(".icon-reply").length > 0){
return; // ignore sent messages
}
var characters = html.find(".js-tweet-text:first").text().length;
if (characters == 0)return;