svnno****@sourc*****
svnno****@sourc*****
2011年 6月 16日 (木) 02:32:30 JST
Revision: 1555 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1555 Author: kiri_feather Date: 2011-06-16 02:32:29 +0900 (Thu, 16 Jun 2011) Log Message: ----------- 未認証時は、設定画面のOKボタンを押せないように ChangeLog.txt更新 Modified Paths: -------------- trunk/Tween/AppendSettingDialog.vb trunk/Tween/My Project/AssemblyInfo.vb trunk/Tween/Resources/ChangeLog.txt -------------- next part -------------- Modified: trunk/Tween/AppendSettingDialog.vb =================================================================== --- trunk/Tween/AppendSettingDialog.vb 2011-06-15 03:35:36 UTC (rev 1554) +++ trunk/Tween/AppendSettingDialog.vb 2011-06-15 17:32:29 UTC (rev 1555) @@ -463,6 +463,7 @@ If tw.Username = "" Then Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 Me.AuthUserLabel.Text = "" + Me.Save.Enabled = False Else Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click3 If TwitterApiInfo.AccessLevel = ApiAccessLevel.ReadWrite Then @@ -2147,12 +2148,7 @@ End Function Private Function PinAuth() As Boolean - 'Dim user As String = Me.Username.Text.Trim Dim pin As String = Me.Password.Text.Trim 'PIN Code - If String.IsNullOrEmpty(pin) Then - MessageBox.Show(My.Resources.Save_ClickText4) - Return False - End If '現在の設定内容で通信 Dim ptype As HttpConnection.ProxyType @@ -2238,6 +2234,7 @@ End Function Private Sub StartAuthButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles StartAuthButton.Click + Me.Save.Enabled = False If StartAuth() Then AuthorizeButton.Enabled = True Else @@ -2246,7 +2243,14 @@ End Sub Private Sub AuthorizeButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AuthorizeButton.Click - If PinAuth() Then CalcApiUsing() + If String.IsNullOrEmpty(Me.Password.Text.Trim) Then + MessageBox.Show(My.Resources.Save_ClickText4) + Exit Sub + End If + If PinAuth() Then + CalcApiUsing() + Me.Save.Enabled = True + End If AuthorizeButton.Enabled = False Me.Password.Text = "" End Sub @@ -2255,6 +2259,7 @@ tw.ClearAuthInfo() Me.AuthStateLabel.Text = My.Resources.AuthorizeButton_Click4 Me.AuthUserLabel.Text = "" + Me.Save.Enabled = False CalcApiUsing() End Sub @@ -2701,4 +2706,5 @@ ' MessageBox.Show("ブラウザの起動に失敗、またはタイムアウトしました。" + ex.ToString()) End Try End Sub + End Class \ No newline at end of file Modified: trunk/Tween/My Project/AssemblyInfo.vb =================================================================== --- trunk/Tween/My Project/AssemblyInfo.vb 2011-06-15 03:35:36 UTC (rev 1554) +++ trunk/Tween/My Project/AssemblyInfo.vb 2011-06-15 17:32:29 UTC (rev 1555) @@ -55,5 +55,5 @@ ' <Assembly: AssemblyVersion("1.0.*")> <Assembly: AssemblyVersion("0.1.0.0")> -<Assembly: AssemblyFileVersion("1.0.1.0")> +<Assembly: AssemblyFileVersion("1.0.2.0")> Modified: trunk/Tween/Resources/ChangeLog.txt =================================================================== --- trunk/Tween/Resources/ChangeLog.txt 2011-06-15 03:35:36 UTC (rev 1554) +++ trunk/Tween/Resources/ChangeLog.txt 2011-06-15 17:32:29 UTC (rev 1555) @@ -1,5 +1,23 @@ 更新履歴 +==== Ver 1.0.2.0(2011/06/16) + * NEW: Foursquare連携でチェックイン時のツイート内URLから地図サムネイル画像を表示。設定でサムネイル表示有効切り替え。吹き出しでVenue情報表示 + * NEW: 設定のユーザー指定URLで{status}を使用出来るように。StatusIDに変換されます + * NEW: ツイートに位置情報が付加されている際、GoogleMapsのサムネイル画像を表示。画像ダブルクリック時のリンクは固定画像を指している問題あり + * CHG: ツイート情報(返信先あり、Protected、位置情報、マーク)をアイコン表示に変更 + * CHG: 画像サムネイル表示のPlixi→Lockerz変更対応 + * CHG: UserStreamの反映間隔設定を廃止 + * CHG: UserStream有効時に、投稿時取得しないよう変更 + * CHG: xAuth認証を廃止し、OAuth認証へ変更 + * CHG: 翻訳機能の削除(Google Translate API停止に伴う。代替サービス検討中のため、設定画面の項目は残してあります) + * BUG: イベント一覧のダブルクリックで例外発生するバグ修正 + * BUG: IDNリンクを開くと例外発生する問題に暫定対処 + * BUG: DM削除時に(DELETED)のまま残るバグ修正 + * BUG: オンライン判定で例外発生する問題に対処 + * BUG: ハイフン、アンダーバーの含まれたURLがリンクされないバグ修正 + * BUG: UserStreamの自動再接続に失敗する場合があったので対処 + * BUG: Listsのツイート取得で、Twitterが不正な応答を返す場合があったので対処 + * BUG: @補完履歴からアイテム削除した結果が保存されないバグ修正 ==== Ver 1.0.1.0(2011/04/28) * ニコニコニュースURLをnico.msで圧縮できるように対応 * 振分ルール編集画面で、ルール編集中は削除ボタンを押せないように修正