[OpenTween-git] [SCM] open-tween (opentween) branch, async-twitterapi, updated. OpenTween_v1.3.2-34-gab77eb9

アーカイブの一覧に戻る

upsil****@users***** upsil****@users*****
2016年 5月 1日 (日) 03:12:50 JST


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to "open-tween" repository
containing the "opentween" project.

The branch, async-twitterapi has been updated
       via  ab77eb9d594caa199fbe07a50bf7031ca21382af (commit)
       via  bc97a52b22423240c92f98cadc8403033137d044 (commit)
       via  925c2b5190a31a64464fb0bf73516f90568d5367 (commit)
       via  220bd8befffb6a994a4fac3fadd58d5b8c2edb3e (commit)
       via  4fd21c34b9bcad462f3ac05448fdab4d1cb623a1 (commit)
       via  edbf4f93556951a1e62904a6b844b9b0f8f43fec (commit)
       via  1a53b10d6401c75c7d1852f52fe89a50173c05bf (commit)
       via  1705c31bd85e22be7e831c7bc4ea6e9e9e6eff7f (commit)
       via  a5e6984f59a73baef8c530ead75883ec2852034c (commit)
       via  70afead46b10cca1a9daab02016de374ed2b55c5 (commit)
       via  7e919a3a07fa2905c8057b2a6a4ea88b9cbb4023 (commit)
       via  36eb0e0f5f4326e555963bf97342afcce9d15ca3 (commit)
       via  57d2e584d7e4907cd8aa4535b8d4fa114750f270 (commit)
      from  0efc271f41bafa9dbceeb208f1c3b1f80944d082 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit ab77eb9d594caa199fbe07a50bf7031ca21382af
Author: Kimura Youichi <kim.u****@bucyo*****>
Date:   Sun May 1 02:26:46 2016 +0900

    Twitter.CreatePostsFromJsonメソッドからJSONのデシリアライズ処理を削除

commit bc97a52b22423240c92f98cadc8403033137d044
Author: Kimura Youichi <kim.u****@bucyo*****>
Date:   Sun May 1 02:20:56 2016 +0900

    HttpTwitter.GetListsStatusesメソッドをTwitterApiクラスに置き換え

commit 925c2b5190a31a64464fb0bf73516f90568d5367
Author: Kimura Youichi <kim.u****@bucyo*****>
Date:   Sat Apr 30 22:50:07 2016 +0900

    HttpTwitter.UserTimelineメソッドをTwitterApiクラスに置き換え

commit 220bd8befffb6a994a4fac3fadd58d5b8c2edb3e
Author: Kimura Youichi <kim.u****@bucyo*****>
Date:   Sat Apr 30 22:02:49 2016 +0900

    HttpTwitter.HomeTimeline, MentionsメソッドをTwitterApiクラスに置き換え

commit 4fd21c34b9bcad462f3ac05448fdab4d1cb623a1
Author: Kimura Youichi <kim.u****@bucyo*****>
Date:   Sat Apr 30 20:37:24 2016 +0900

    HttpTwitter.RetweetStatusメソッドをTwitterApiクラスに置き換え

commit edbf4f93556951a1e62904a6b844b9b0f8f43fec
Author: Kimura Youichi <kim.u****@bucyo*****>
Date:   Sat Apr 30 20:11:42 2016 +0900

    エラーメッセージに Err: を追加

commit 1a53b10d6401c75c7d1852f52fe89a50173c05bf
Author: Kimura Youichi <kim.u****@bucyo*****>
Date:   Sat Apr 30 19:21:06 2016 +0900

    HttpTwitter.GetConfigurationメソッドをTwitterApiクラスに置き換え

commit 1705c31bd85e22be7e831c7bc4ea6e9e9e6eff7f
Author: Kimura Youichi <kim.u****@bucyo*****>
Date:   Sat Apr 30 18:54:46 2016 +0900

    HttpTwitter.GetMuteUserIdsメソッドをTwitterApiクラスに置き換え

commit a5e6984f59a73baef8c530ead75883ec2852034c
Author: Kimura Youichi <kim.u****@bucyo*****>
Date:   Sat Apr 30 18:42:19 2016 +0900

    HttpTwitter.GetBlockUserIdsメソッドをTwitterApiクラスに置き換え

commit 70afead46b10cca1a9daab02016de374ed2b55c5
Author: Kimura Youichi <kim.u****@bucyo*****>
Date:   Sat Apr 30 18:24:02 2016 +0900

    HttpTwitter.NoRetweetIdsメソッドをTwitterApiクラスに置き換え

commit 7e919a3a07fa2905c8057b2a6a4ea88b9cbb4023
Author: Kimura Youichi <kim.u****@bucyo*****>
Date:   Sat Apr 30 18:14:54 2016 +0900

    HttpTwitter.FollowerIdsメソッドをTwitterApiクラスに置き換え

commit 36eb0e0f5f4326e555963bf97342afcce9d15ca3
Author: Kimura Youichi <kim.u****@bucyo*****>
Date:   Sat Apr 30 15:23:32 2016 +0900

    FormUrlEncodedContentを使用したリクエストでoauth_signatureの検証に失敗する問題を回避
    
    エスケープ方法を統一するため FormUrlEncodedContent が使われている場合も MyCommon.BuildQueryString メソッドを通す

commit 57d2e584d7e4907cd8aa4535b8d4fa114750f270
Author: Kimura Youichi <kim.u****@bucyo*****>
Date:   Sat Apr 30 11:57:16 2016 +0900

    HttpTwitter.ShowStatusesメソッドをTwitterApiクラスに置き換え

-----------------------------------------------------------------------

Summary of changes:
 OpenTween.Tests/Api/TwitterApiTest.cs |  262 +++++++++++++++++++
 OpenTween/Api/TwitterApi.cs           |  141 ++++++++++
 OpenTween/Connection/HttpTwitter.cs   |  186 -------------
 OpenTween/Connection/OAuthHandler.cs  |    7 +
 OpenTween/MyCommon.cs                 |    4 +-
 OpenTween/SendErrorReportForm.cs      |    2 +-
 OpenTween/Tween.cs                    |   96 +++----
 OpenTween/Twitter.cs                  |  460 +++++++--------------------------
 OpenTween/UserInfoDialog.cs           |   12 +-
 9 files changed, 566 insertions(+), 604 deletions(-)


hooks/post-receive
-- 
open-tween (opentween)




OpenTween-git メーリングリストの案内
アーカイブの一覧に戻る