From: Kimura Youichi Date: Sat, 27 Jan 2024 05:32:06 +0000 (+0900) Subject: 更新間隔の初期設定を変更 X-Git-Tag: OpenTween_v3.13.0^2~3^2~1 X-Git-Url: http://git.osdn.net/view?p=opentween%2Fopen-tween.git;a=commitdiff_plain;h=cf63a0f54640a15506207d918712f0fc3e8ba4bb 更新間隔の初期設定を変更 Search, List, User の各タブが 2 枚ずつ開いている状態で 2,000 回 /24h を超えない位の値に調整 --- diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c6965e6d..f15a5e27 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -5,6 +5,7 @@ * NEW: Cookie使用時のFavoritesタブの更新に対応 * NEW: Cookie使用時のFav追加・削除に対応 * NEW: 設定画面の更新間隔ページに24時間分の取得回数目安の表示を追加 + * CHG: 更新間隔の初期設定を変更 * FIX: Cookie使用時にツイート検索の言語指定が効かない不具合を修正 * FIX: ツイート検索のキーワードを後から変更すると検索結果が表示されない不具合を修正 * FIX: Cookie使用時にステータスバーにRecentタブのレートリミットが表示されない不具合を修正 diff --git a/OpenTween/Setting/SettingCommon.cs b/OpenTween/Setting/SettingCommon.cs index c57f1ee2..dbc4a942 100644 --- a/OpenTween/Setting/SettingCommon.cs +++ b/OpenTween/Setting/SettingCommon.cs @@ -114,11 +114,11 @@ namespace OpenTween public long UserId = 0; public List TabList = new(); - public int TimelinePeriod = 90; + public int TimelinePeriod = 180; public int ReplyPeriod = 180; public int DMPeriod = 600; - public int PubSearchPeriod = 180; - public int ListsPeriod = 180; + public int PubSearchPeriod = 360; + public int ListsPeriod = 360; /// /// 起動時読み込み分を既読にするか。trueなら既読として処理 @@ -230,7 +230,7 @@ namespace OpenTween public int SearchCountApi = 100; public int FavoritesCountApi = 40; public int UserTimelineCountApi = 20; - public int UserTimelinePeriod = 600; + public int UserTimelinePeriod = 360; public bool OpenUserTimeline = true; public int ListCountApi = 100; public int UseImageService = 0;