OpenTweenのfork
修订版 | 36863a6d54ea4e1ab95f22f8a214238d3d4eda11 (tree) |
---|---|
时间 | 2012-02-18 23:10:25 |
作者 | kiri_feather <kiri_feather@user...> |
Commiter | Kimura Youichi |
0770リリース
個別ステータスのURLをstatusesからstatusへ
git-svn-id: http://svn.sourceforge.jp/svnroot/tween/trunk@11 e39ad16e-3079-482e-bb30-4b4d378143b6
@@ -265,7 +265,7 @@ | ||
265 | 265 | <value>True</value> |
266 | 266 | </data> |
267 | 267 | <data name="TextDetail.ScrollBars" type="System.Windows.Forms.ScrollBars, System.Windows.Forms"> |
268 | - <value>Vertical</value> | |
268 | + <value>Both</value> | |
269 | 269 | </data> |
270 | 270 | <data name="TextDetail.Size" type="System.Drawing.Size, System.Drawing"> |
271 | 271 | <value>388, 101</value> |
@@ -55,5 +55,5 @@ Imports System.Runtime.InteropServices | ||
55 | 55 | ' <Assembly: AssemblyVersion("1.0.*")> |
56 | 56 | |
57 | 57 | <Assembly: AssemblyVersion("0.7.*")> |
58 | -<Assembly: AssemblyFileVersion("0.7.6.0")> | |
58 | +<Assembly: AssemblyFileVersion("0.7.7.0")> | |
59 | 59 |
@@ -1,12 +1,13 @@ | ||
1 | 1 | 更新履歴 |
2 | 2 | |
3 | -==== Ver 0.7.7.0(Unreleased) | |
3 | +==== Ver 0.7.7.0(2009/11/15) | |
4 | 4 | * バージョンアップの確認ダイアログをキャンセルして、再度確認して表示する際に例外が発生するバグ修正 |
5 | 5 | * バージョンアップの確認ダイアログに更新内容を表示するように変更 |
6 | - * Web仕様変更対応(Sourceのみ) | |
6 | + * Web仕様変更対応(Source取得) | |
7 | 7 | * 投稿リトライで、遅延判定時はリトライしないように変更 |
8 | 8 | * @user/lists形式の検出正規表現を修正 |
9 | 9 | * ハッシュタグの検出正規表現を修正 |
10 | + * 個別ステータスへのリンク先をstatusesからstatusへ変更 | |
10 | 11 | ==== Ver 0.7.6.0(2009/11/11) |
11 | 12 | * タブの作成、タブ名の変更で例外が発生するバグ修正 |
12 | 13 | * 取得間隔に0を指定しても定期取得してしまうバグ修正 |
@@ -3612,7 +3612,7 @@ RETRY: | ||
3612 | 3612 | Private Sub StatusOpenMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles StatusOpenMenuItem.Click |
3613 | 3613 | If _curList.SelectedIndices.Count > 0 AndAlso _statuses.Tabs(_curTab.Text).TabType <> TabUsageType.DirectMessage Then |
3614 | 3614 | Dim post As PostClass = _statuses.Item(_curTab.Text, _curList.SelectedIndices(0)) |
3615 | - OpenUriAsync("http://twitter.com/" + post.Name + "/statuses/" + post.Id.ToString) | |
3615 | + OpenUriAsync("http://twitter.com/" + post.Name + "/status/" + post.Id.ToString) | |
3616 | 3616 | End If |
3617 | 3617 | End Sub |
3618 | 3618 |
@@ -4003,7 +4003,7 @@ RETRY: | ||
4003 | 4003 | For Each idx As Integer In _curList.SelectedIndices |
4004 | 4004 | Dim post As PostClass = _statuses.Item(_curTab.Text, idx) |
4005 | 4005 | If post.IsProtect AndAlso SettingDialog.ProtectNotInclude Then Continue For |
4006 | - sb.AppendFormat("{0}:{1} [http://twitter.com/{0}/statuses/{2}]{3}", post.Name, post.Data, post.Id, Environment.NewLine) | |
4006 | + sb.AppendFormat("{0}:{1} [http://twitter.com/{0}/status/{2}]{3}", post.Name, post.Data, post.Id, Environment.NewLine) | |
4007 | 4007 | Next |
4008 | 4008 | If sb.Length > 0 Then |
4009 | 4009 | clstr = sb.ToString() |
@@ -4016,7 +4016,7 @@ RETRY: | ||
4016 | 4016 | Dim sb As New StringBuilder() |
4017 | 4017 | For Each idx As Integer In _curList.SelectedIndices |
4018 | 4018 | Dim post As PostClass = _statuses.Item(_curTab.Text, idx) |
4019 | - sb.AppendFormat("http://twitter.com/{0}/statuses/{1}{2}", post.Name, post.Id, Environment.NewLine) | |
4019 | + sb.AppendFormat("http://twitter.com/{0}/status/{1}{2}", post.Name, post.Id, Environment.NewLine) | |
4020 | 4020 | Next |
4021 | 4021 | If sb.Length > 0 Then |
4022 | 4022 | clstr = sb.ToString() |
@@ -5678,11 +5678,11 @@ RETRY: | ||
5678 | 5678 | |
5679 | 5679 | Private Sub RepliedStatusOpenMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RepliedStatusOpenMenuItem.Click |
5680 | 5680 | If _curPost IsNot Nothing AndAlso _curPost.InReplyToUser IsNot Nothing AndAlso _curPost.InReplyToId > 0 Then |
5681 | - If _statuses.ContainsKey(_curPost.InReplyToId) Then | |
5681 | + If _statuses.ContainsKey(_curPost.InReplyToId) AndAlso Not My.Computer.Keyboard.ShiftKeyDown Then | |
5682 | 5682 | Dim repPost As PostClass = _statuses.Item(_curPost.InReplyToId) |
5683 | 5683 | MessageBox.Show(repPost.Name + " / " + repPost.Nickname + " (" + repPost.PDate.ToString() + ")" + Environment.NewLine + repPost.Data) |
5684 | 5684 | Else |
5685 | - OpenUriAsync("http://twitter.com/" + _curPost.InReplyToUser + "/statuses/" + _curPost.InReplyToId.ToString()) | |
5685 | + OpenUriAsync("http://twitter.com/" + _curPost.InReplyToUser + "/status/" + _curPost.InReplyToId.ToString()) | |
5686 | 5686 | End If |
5687 | 5687 | End If |
5688 | 5688 | End Sub |