OSDN Git Service

更新間隔の初期設定を変更
authorKimura Youichi <kim.upsilon@bucyou.net>
Sat, 27 Jan 2024 05:32:06 +0000 (14:32 +0900)
committerKimura Youichi <kim.upsilon@bucyou.net>
Sat, 27 Jan 2024 05:32:06 +0000 (14:32 +0900)
Search, List, User の各タブが 2 枚ずつ開いている状態で 2,000 回 /24h を超えない位の値に調整

CHANGELOG.txt
OpenTween/Setting/SettingCommon.cs

index c6965e6..f15a5e2 100644 (file)
@@ -5,6 +5,7 @@
  * NEW: Cookie使用時のFavoritesタブの更新に対応
  * NEW: Cookie使用時のFav追加・削除に対応
  * NEW: 設定画面の更新間隔ページに24時間分の取得回数目安の表示を追加
+ * CHG: 更新間隔の初期設定を変更
  * FIX: Cookie使用時にツイート検索の言語指定が効かない不具合を修正
  * FIX: ツイート検索のキーワードを後から変更すると検索結果が表示されない不具合を修正
  * FIX: Cookie使用時にステータスバーにRecentタブのレートリミットが表示されない不具合を修正
index c57f1ee..dbc4a94 100644 (file)
@@ -114,11 +114,11 @@ namespace OpenTween
 
         public long UserId = 0;
         public List<string> 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;
 
         /// <summary>
         /// 起動時読み込み分を既読にするか。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;