• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

OpenTweenのfork


Commit MetaInfo

修订版36863a6d54ea4e1ab95f22f8a214238d3d4eda11 (tree)
时间2012-02-18 23:10:25
作者kiri_feather <kiri_feather@user...>
CommiterKimura Youichi

Log Message

0770リリース
個別ステータスのURLをstatusesからstatusへ

git-svn-id: http://svn.sourceforge.jp/svnroot/tween/trunk@11 e39ad16e-3079-482e-bb30-4b4d378143b6

更改概述

差异

--- a/Tween/DialogAsShieldIcon.resx
+++ b/Tween/DialogAsShieldIcon.resx
@@ -265,7 +265,7 @@
265265 <value>True</value>
266266 </data>
267267 <data name="TextDetail.ScrollBars" type="System.Windows.Forms.ScrollBars, System.Windows.Forms">
268- <value>Vertical</value>
268+ <value>Both</value>
269269 </data>
270270 <data name="TextDetail.Size" type="System.Drawing.Size, System.Drawing">
271271 <value>388, 101</value>
--- a/Tween/My Project/AssemblyInfo.vb
+++ b/Tween/My Project/AssemblyInfo.vb
@@ -55,5 +55,5 @@ Imports System.Runtime.InteropServices
5555 ' <Assembly: AssemblyVersion("1.0.*")>
5656
5757 <Assembly: AssemblyVersion("0.7.*")>
58-<Assembly: AssemblyFileVersion("0.7.6.0")>
58+<Assembly: AssemblyFileVersion("0.7.7.0")>
5959
--- a/Tween/Resources/ChangeLog.txt
+++ b/Tween/Resources/ChangeLog.txt
@@ -1,12 +1,13 @@
11 更新履歴
22
3-==== Ver 0.7.7.0(Unreleased)
3+==== Ver 0.7.7.0(2009/11/15)
44 * バージョンアップの確認ダイアログをキャンセルして、再度確認して表示する際に例外が発生するバグ修正
55 * バージョンアップの確認ダイアログに更新内容を表示するように変更
6- * Web仕様変更対応(Sourceのみ)
6+ * Web仕様変更対応(Source取得)
77 * 投稿リトライで、遅延判定時はリトライしないように変更
88 * @user/lists形式の検出正規表現を修正
99 * ハッシュタグの検出正規表現を修正
10+ * 個別ステータスへのリンク先をstatusesからstatusへ変更
1011 ==== Ver 0.7.6.0(2009/11/11)
1112 * タブの作成、タブ名の変更で例外が発生するバグ修正
1213 * 取得間隔に0を指定しても定期取得してしまうバグ修正
--- a/Tween/Tween.vb
+++ b/Tween/Tween.vb
@@ -3612,7 +3612,7 @@ RETRY:
36123612 Private Sub StatusOpenMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles StatusOpenMenuItem.Click
36133613 If _curList.SelectedIndices.Count > 0 AndAlso _statuses.Tabs(_curTab.Text).TabType <> TabUsageType.DirectMessage Then
36143614 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)
36163616 End If
36173617 End Sub
36183618
@@ -4003,7 +4003,7 @@ RETRY:
40034003 For Each idx As Integer In _curList.SelectedIndices
40044004 Dim post As PostClass = _statuses.Item(_curTab.Text, idx)
40054005 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)
40074007 Next
40084008 If sb.Length > 0 Then
40094009 clstr = sb.ToString()
@@ -4016,7 +4016,7 @@ RETRY:
40164016 Dim sb As New StringBuilder()
40174017 For Each idx As Integer In _curList.SelectedIndices
40184018 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)
40204020 Next
40214021 If sb.Length > 0 Then
40224022 clstr = sb.ToString()
@@ -5678,11 +5678,11 @@ RETRY:
56785678
56795679 Private Sub RepliedStatusOpenMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RepliedStatusOpenMenuItem.Click
56805680 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
56825682 Dim repPost As PostClass = _statuses.Item(_curPost.InReplyToId)
56835683 MessageBox.Show(repPost.Name + " / " + repPost.Nickname + " (" + repPost.PDate.ToString() + ")" + Environment.NewLine + repPost.Data)
56845684 Else
5685- OpenUriAsync("http://twitter.com/" + _curPost.InReplyToUser + "/statuses/" + _curPost.InReplyToId.ToString())
5685+ OpenUriAsync("http://twitter.com/" + _curPost.InReplyToUser + "/status/" + _curPost.InReplyToId.ToString())
56865686 End If
56875687 End If
56885688 End Sub