From 705ce5d3f3d59a6f4eba98b8d292ad4dd4d375f4 Mon Sep 17 00:00:00 2001 From: Jeena Paradies Date: Thu, 22 Apr 2010 23:08:41 +0200 Subject: [PATCH] added open timeline menu item --- Appcast.xml | 4 ++-- English.lproj/MainMenu.xib | 49 ++++++++++++++++++++++++++++---------- ReleaseNotes.html | 3 +++ Twittia_2-Info.plist | 2 +- index.html | 10 ++++---- 5 files changed, 48 insertions(+), 20 deletions(-) diff --git a/Appcast.xml b/Appcast.xml index 0cf1559..56b3958 100755 --- a/Appcast.xml +++ b/Appcast.xml @@ -9,10 +9,10 @@ Version 2.0.2 (Added twittia: url scheme) 10.5.0 - http://github.com/downloads/jeena/Twittia/ReleaseNotes.html + http://jeenaparadies.net/twittia/ReleaseNotes.html Wed, 19 Apr 2010 0:30:00 +0000 - 1050 - 10C540 + 10D573 740 - 1038.25 - 458.00 + 1038.29 + 460.00 YES @@ -22,7 +22,7 @@ YES - + YES @@ -193,7 +193,7 @@ YES - New + New Tweet n 1048576 2147483647 @@ -220,6 +220,15 @@ + + + Timeline + t + 1048576 + 2147483647 + + + Close @@ -1192,6 +1201,14 @@ 543 + + + makeKeyAndOrderFront: + + + + 547 + @@ -1279,6 +1296,7 @@ + @@ -1797,6 +1815,11 @@ + + 544 + + + @@ -1945,8 +1968,8 @@ 535.NSWindowTemplate.visibleAtLaunch 536.IBPluginDependency 537.IBPluginDependency - 541.IBPluginDependency 542.IBPluginDependency + 544.IBPluginDependency 56.IBPluginDependency 56.ImportedFromIB2 57.IBEditorWindowLastContentRect @@ -2016,7 +2039,7 @@ com.apple.InterfaceBuilder.CocoaPlugin - {{316, 248}, {254, 283}} + {{813, 671}, {254, 283}} com.apple.InterfaceBuilder.CocoaPlugin {{197, 734}, {243, 243}} @@ -2062,11 +2085,11 @@ com.apple.InterfaceBuilder.CocoaPlugin - {{410, 458}, {194, 73}} + {{907, 881}, {194, 73}} com.apple.InterfaceBuilder.CocoaPlugin {{525, 802}, {197, 73}} - {{1077, 485}, {349, 20}} + {{690, 954}, {349, 20}} com.apple.InterfaceBuilder.CocoaPlugin {74, 862} @@ -2110,9 +2133,9 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - {{1032, -341}, {397, 581}} + {{907, 115}, {397, 581}} com.apple.InterfaceBuilder.CocoaPlugin - {{1032, -341}, {397, 581}} + {{907, 115}, {397, 581}} com.apple.InterfaceBuilder.CocoaPlugin com.apple.WebKitIBPlugin @@ -2132,7 +2155,7 @@ com.apple.InterfaceBuilder.CocoaPlugin - {{1158, 812}, {181, 73}} + {{771, 861}, {181, 93}} com.apple.InterfaceBuilder.CocoaPlugin {{155, 774}, {199, 203}} @@ -2160,7 +2183,7 @@ - 543 + 547 diff --git a/ReleaseNotes.html b/ReleaseNotes.html index 80bbfb1..d4fceb9 100644 --- a/ReleaseNotes.html +++ b/ReleaseNotes.html @@ -13,6 +13,9 @@

Twittia Release Notes

+

Twittia 2.0.3

+

Fixed some wrong links.

+

Twittia 2.0.2

Added the twittia: URL scheme.

Added a JavaScript-plugin API.

diff --git a/Twittia_2-Info.plist b/Twittia_2-Info.plist index 6f0ca2f..897a95e 100644 --- a/Twittia_2-Info.plist +++ b/Twittia_2-Info.plist @@ -54,7 +54,7 @@ CFBundleHelpBookName net.jeena.apps.twittia.help SUFeedURL - http://github.com/downloads/jeena/Twittia/Appcast.xml + http://jeenaparadies.net/twittia/Appcast.xml SUPublicDSAKeyFile dsa_pub.pem CFBundleURLTypes diff --git a/index.html b/index.html index b7e1e34..0369d35 100644 --- a/index.html +++ b/index.html @@ -59,7 +59,7 @@ Twittia.prototype.getItem = function(status) { retweeted.appendChild(retweeted_icon); var retweeted_by = document.createElement("a"); retweeted_by.innerText = original_status.user.screen_name + " "; - retweeted_by.href = "http://twitter.com/" + original_status.in_reply_to_screen_name; + retweeted_by.href = "http://twitter.com/" + original_status.user.screen_name; retweeted.appendChild(document.createTextNode("@")); retweeted.appendChild(retweeted_by); template.in_reply.parentNode.parentNode.insertBefore(retweeted, template.in_reply.parent); @@ -67,7 +67,7 @@ Twittia.prototype.getItem = function(status) { if(status.in_reply_to_screen_name != null) template.in_reply.innerText = status.in_reply_to_screen_name; else template.in_reply.parentNode.className = "hidden"; - template.in_reply.href = "http://twitter.com/" + status.in_reply_to_screen_name; + template.in_reply.href = "http://twitter.com/" + status.in_reply_to_screen_name + "/status/" + status.in_reply_to_status_id; template.message.innerHTML = replaceTwitterLinks(replaceURLWithHTMLLinks(status.text)); @@ -744,8 +744,10 @@ $(document).ready(function() {
    \ No newline at end of file