• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

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

OpenTweenのfork


Commit MetaInfo

Revision83eb663bda890edebfc6193940ca53a3c9a15aa5 (tree)
Zeit2012-02-18 23:10:32
Autorkiri_feather <kiri_feather@user...>
CommiterKimura Youichi

Log Message

0810リリース。コンパイル後のsgenを環境変数指定に変更

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

Ändern Zusammenfassung

Diff

--- 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.8.*")>
58-<Assembly: AssemblyFileVersion("0.8.0.0")>
58+<Assembly: AssemblyFileVersion("0.8.1.0")>
5959
--- a/Tween/Resources/ChangeLog.txt
+++ b/Tween/Resources/ChangeLog.txt
@@ -1,13 +1,14 @@
11 更新履歴
22
3-==== Ver 0.8.1.0(Unreleased)
3+==== Ver 0.8.1.0(2009/12/14)
44 * 細かい不具合対応
55 * 公式RT発言を振り分けする際、RTした人を対象にするよう変更
66 * 関連移動、同発言者移動する際、RTした人も考慮するよう変更
77 * ポスト時のリトライをしないよう変更
88 * ポスト時にエラーが帰ってきた際、入力欄がクリアされてしまうバグ修正
9- * 不正なアニメgifを表示すると落ちてしまう問題に対処
9+ * 不正なアニメgifを表示すると落ちてしまう問題に対処(XPのみ?)
1010 * タブの設定ファイル構成を変更。SettingTabs.xmlに集約されました。
11+ * APIで、公式RTがfav済みで流れてくる場合があるため、Tweenで取得したfav発言に元発言が含まれていればfav済みと判定するように対処
1112 ==== Ver 0.8.0.0(2009/11/27)
1213 * Webモードで公式RT発言をコピー、開くした時にユーザーと発言IDが不整合になっていた問題に対応
1314 * 公式RTに正式対応
--- a/Tween/Tween.vbproj
+++ b/Tween/Tween.vbproj
@@ -340,6 +340,6 @@
340340 </Target>
341341 -->
342342 <PropertyGroup>
343- <PostBuildEvent>"c:\Program Files\Microsoft.NET\SDK\v2.0\Bin\sgen.exe" /f /a:"$(TargetPath)"</PostBuildEvent>
343+ <PostBuildEvent>"$(DevEnvDir)..\..\SDK\v2.0\bin\sgen.exe" /f /a:"$(TargetPath)"</PostBuildEvent>
344344 </PropertyGroup>
345345 </Project>
\ No newline at end of file
--- a/Tween/Twitter.vb
+++ b/Tween/Twitter.vb
@@ -3071,9 +3071,7 @@ Public Module Twitter
30713071 'Reply先
30723072 Long.TryParse(xRentry.Item("in_reply_to_status_id").InnerText, post.InReplyToId)
30733073 post.InReplyToUser = xRentry.Item("in_reply_to_screen_name").InnerText
3074- 'in_reply_to_user_idを使うか?
3075- 'post.IsFav = Boolean.Parse(xRentry.Item("favorited").InnerText)
3076- post.IsFav = False
3074+ post.IsFav = TabInformations.GetInstance.GetTabByType(TabUsageType.Favorites).Contains(post.RetweetedId)
30773075
30783076 '以下、ユーザー情報
30793077 Dim xRUentry As XmlElement = CType(xRentry.SelectSingleNode("./user"), XmlElement)