Changeset 22281 for lang

Show
Ignore:
Timestamp:
10/28/08 17:03:11 (5 years ago)
Author:
kiri_feather
Message:

更新間隔0でエラーになる問題修正
終了時設定保存エラーを無視
設定保存でTwitterクラスを使用しないよう変更

Location:
lang/vb2005/Tween/Tween
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/vb2005/Tween/Tween/Resources/ChangeLog.txt

    r22272 r22281  
    11更新履歴 
    22 
     3***Ver0.1.0.0(Unreleased) 
     4-更新間隔0を設定した場合にエラーが起こるバグ修正 
     5-終了処理中の設定保存でエラーが発生した場合は無視するよう変更(自動バージョンアップ対応) 
     6-起動時のバージョンチェックでバージョンアップする際、設定保存でエラーが発生するバグ修正 
    37***Ver0.0.9.9(2008/10/28) 
    48-ここ最近の設定追加項目を保存していなかった問題に対処 
  • lang/vb2005/Tween/Tween/Tween.vb

    r22272 r22281  
    17251725                        keys.Clear() 
    17261726                        If rslt.page + 1 <= rslt.endPage Then 
    1727                             If statusCount = 20 And rslt.page = 1 And SettingDialog.PeriodAdjust Then 
     1727                            If statusCount = 20 And rslt.page = 1 And SettingDialog.PeriodAdjust And SettingDialog.TimelinePeriodInt > 0 Then 
    17281728                                Dim itv As Integer = TimerTimeline.Interval 
    17291729                                itv -= 5000 
     
    17451745                            GetTimelineWorker.RunWorkerAsync(args) 
    17461746                        Else 
    1747                             If rslt.page = 1 And statusCount < 17 And SettingDialog.PeriodAdjust Then 
     1747                            If rslt.page = 1 And statusCount < 17 And SettingDialog.PeriodAdjust And SettingDialog.TimelinePeriodInt > 0 Then 
    17481748                                TimerTimeline.Interval += 1000 
    17491749                                If TimerTimeline.Interval > SettingDialog.TimelinePeriodInt * 1000 Then TimerTimeline.Interval = SettingDialog.TimelinePeriodInt * 1000 
     
    51435143            _section.UserName = _username 
    51445144            _section.Password = _password 
    5145             _section.NextPageThreshold = clsTw.NextThreshold 
    5146             _section.NextPages = clsTw.NextPages 
     5145            '_section.NextPageThreshold = clsTw.NextThreshold 
     5146            '_section.NextPages = clsTw.NextPages 
     5147            _section.NextPageThreshold = SettingDialog.NextPageThreshold 
     5148            _section.NextPages = SettingDialog.NextPagesInt 
    51475149            _section.TimelinePeriod = SettingDialog.TimelinePeriodInt 
    51485150            _section.DMPeriod = SettingDialog.DMPeriodInt 
     
    53765378            'Next 
    53775379 
    5378             _config.Save() 
     5380            '終了処理中の保存でエラーが発生した場合は無視 
     5381            If _endingFlag = False Then 
     5382                _config.Save() 
     5383            Else 
     5384                Try 
     5385                    _config.Save() 
     5386                Catch ex As Exception 
     5387 
     5388                End Try 
     5389            End If 
    53795390        End If 
    53805391    End Sub