dev
Revisión | fd4bd40cf03d3d2c24ab2f64cf18a5c6d43e4803 (tree) |
---|---|
Tiempo | 2012-02-18 23:11:03 |
Autor | kiri_feather <kiri_feather@user...> |
Commiter | Kimura Youichi |
0870/0880リリース。WebのHTML変更対応。非公式RT/QT時に半角スペースの変換文字コード問題対応。ふぁぼったーのURL変更対応
git-svn-id: http://svn.sourceforge.jp/svnroot/tween/trunk@105 e39ad16e-3079-482e-bb30-4b4d378143b6
@@ -55,5 +55,5 @@ Imports System.Runtime.InteropServices | ||
55 | 55 | ' <Assembly: AssemblyVersion("1.0.*")> |
56 | 56 | |
57 | 57 | <Assembly: AssemblyVersion("0.1.0.0")> |
58 | -<Assembly: AssemblyFileVersion("0.8.6.0")> | |
58 | +<Assembly: AssemblyFileVersion("0.8.8.0")> | |
59 | 59 |
@@ -1,5 +1,10 @@ | ||
1 | 1 | 更新履歴 |
2 | 2 | |
3 | +==== Ver 0.8.8.0(2010/02/23) | |
4 | + * ふぁぼったーのURLを変更(favotter.matope.com→favotter.netに変更) | |
5 | +==== Ver 0.8.7.0(2010/02/23) | |
6 | + * 非公式RT/QT時に、半角スペース変換時の文字コードが以前と異なっており、一部のクライアントで文字化けしていた問題を修正 | |
7 | + * WebのHTML仕様変更対応 | |
3 | 8 | ==== Ver 0.8.6.0(2010/02/16) |
4 | 9 | * 検索タブでhtmlのエスケープが不十分だった問題を修正 |
5 | 10 | * ハッシュタグ管理画面で、リストが空の時に「新規」→「キャンセル」で例外が発生するバグ修正 |
@@ -4009,7 +4009,7 @@ RETRY: | ||
4009 | 4009 | Private Sub FavorareMenuItem_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles FavorareMenuItem.Click, OpenFavotterOpMenuItem.Click |
4010 | 4010 | If _curList.SelectedIndices.Count > 0 Then |
4011 | 4011 | Dim post As PostClass = _statuses.Item(_curTab.Text, _curList.SelectedIndices(0)) |
4012 | - OpenUriAsync("http://favotter.matope.com/user.php?user=" + post.Name) | |
4012 | + OpenUriAsync("http://favotter.net/user.php?user=" + post.Name) | |
4013 | 4013 | End If |
4014 | 4014 | End Sub |
4015 | 4015 |
@@ -7136,6 +7136,7 @@ RETRY: | ||
7136 | 7136 | |
7137 | 7137 | _reply_to_id = 0 |
7138 | 7138 | _reply_to_name = "" |
7139 | + status = status.Replace(" ", " ") | |
7139 | 7140 | |
7140 | 7141 | Return status |
7141 | 7142 | End Function |
@@ -329,7 +329,7 @@ Public Module Twitter | ||
329 | 329 | End If |
330 | 330 | |
331 | 331 | ' tr 要素の class 属性を消去 |
332 | - retMsg = Regex.Replace(retMsg, "(?<tagStart><li)(?<cls>\s+class=""[^""]+"")", "${tagStart}") | |
332 | + retMsg = Regex.Replace(retMsg, "(?<tagStart><li)(?<cls>\s+class=""[^""]+""\s+)", "${tagStart} ") | |
333 | 333 | 'Do |
334 | 334 | ' Try |
335 | 335 | ' Dim idx As Integer = retMsg.IndexOf(_removeClass, StringComparison.Ordinal) |
@@ -832,7 +832,7 @@ Public Module Twitter | ||
832 | 832 | End If |
833 | 833 | |
834 | 834 | ' tr 要素の class 属性を消去 |
835 | - retMsg = Regex.Replace(retMsg, "(?<tagStart><li)(?<cls>\s+class=""[^""]+"")", "${tagStart}") | |
835 | + retMsg = Regex.Replace(retMsg, "(?<tagStart><li)(?<cls>\s+class=""[^""]+""\s+)", "${tagStart} ") | |
836 | 836 | 'Do |
837 | 837 | ' Try |
838 | 838 | ' Dim idx As Integer = retMsg.IndexOf(_removeClass, StringComparison.Ordinal) |
@@ -1092,7 +1092,7 @@ Public Module Twitter | ||
1092 | 1092 | End If |
1093 | 1093 | |
1094 | 1094 | ' tr 要素の class 属性を消去 |
1095 | - retMsg = Regex.Replace(retMsg, "(?<tagStart><li)(?<cls>\s+class=""[^""]+"")", "${tagStart}") | |
1095 | + retMsg = Regex.Replace(retMsg, "(?<tagStart><li)(?<cls>\s+class=""[^""]+""\s+)", "${tagStart} ") | |
1096 | 1096 | 'Do |
1097 | 1097 | ' Try |
1098 | 1098 | ' Dim idx As Integer = retMsg.IndexOf(_removeClass, StringComparison.Ordinal) |